view examples/hello.c @ 2193:72aa9ecbdad9

* src/hal_if.c (cyg_hal_diag_mangler_gdb_flush): Fix compiler warning about signed/unsigned.
author asl
date Tue, 09 May 2006 15:28:56 +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;
}