view examples/hello.c @ 2989:839b599cc216

* cdl/hal_powerpc.cdl: Eliminate some warnings. [ Bugzilla 1001083 ]
author sergeig
date Sun, 02 Jan 2011 13:45:00 +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;
}