view examples/hello.c @ 1074:cd0eb188ea7d

* include/linux/stat.h: Removed #defines which has been added to the main eCos sys/stat.h.
author asl
date Tue, 24 Jun 2003 11:46:30 +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;
}