view examples/hello.c @ 2435:c67949d5702b

* src/siginit.cxx (cyg_libc_signals_default_handler): Handle case where CYGINT_ISO_EXIT not available.
author jlarmour
date Thu, 27 Sep 2007 15:30:24 +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;
}