view examples/hello.c @ 874:62d1a985601c

* include/wallclock/wallclock.inl: Added parens to TO_BCD() and TO_DEC() macros so macro argument is interpreted correctly.
author jlarmour
date Thu, 27 Mar 2003 08:38:07 +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;
}