view examples/hello.c @ 1719:c506b95a6346

* src/flashiodev.c Ordering problem again. If an invalid name is configured the lookup would fail and it then was impossible to do a cyg_io_config_set. Lookup cannot fail because the name does not exist in FIS.
author asl
date Sat, 21 Aug 2004 11:53:41 +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;
}