view examples/hello.c @ 3136:1fbef1fc40eb

* New wallclock driver.
author sergeig
date Sun, 30 Oct 2011 20:24:28 +0000
parents ead06911cbae
children
line wrap: on
line source

/* this is a simple hello world program */
#include <stdio.h>

int main(void)
{
  printf("Hello, eCos world!\n");
  return 0;
}