view examples/hello.c @ 619:90be031e00db

* src/brutus_misc.c: Replaced explicit prototype of memset with #include <string.h>.
author jlarmour
date Thu, 13 Feb 2003 19:11:14 +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;
}