view examples/hello.c @ 2941:a2b177b28c45

* src/romfs.c: file name comparison was broken for two files with the same stem. A directory/file called "foo" would not be found if there was a file "foo*" before "foo".
author sergeig
date Wed, 10 Mar 2010 18:06:22 +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;
}