view examples/hello.c @ 492:c8a05a94076e

* doc/posix.sgml: Document them. * src/mqueue.cxx (mq_timedreceive): Make fully compliant by dealing with bogus timeouts. (mq_timedsend): Ditto. * src/mqueue.cxx (mq_timedsend): New function. Implementing POSIX 1003.1d draft definition. (mq_timedreceive): Ditto.
author jlarmour
date Mon, 13 Jan 2003 05:49:42 +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;
}