view examples/hello.c @ 594:7df7eb129a74

* src/sys/kern/sockio.c: bsd_getinfo/bsd_setinfo should have void * args. Silences warnings. * src/sys/kern/uipc_socket.c (sopoll): Use __FUNCTION__ correctly for GCC 3.x. * src/sys/net/if_ethersubr.c: Put comments for stuff after endifs to silence warnings. * src/sys/net/if_loop.c: Ditto.
author jlarmour
date Wed, 12 Feb 2003 15:29:52 +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;
}