view examples/hello.c @ 1403:f1fd4d249787

* src/fs-ecos.c: ARM gcc 3.2.3 is also broken. Complain with any ARM gcc 3.2 compiler.
author asl
date Tue, 25 Nov 2003 16:41:08 +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;
}