view examples/hello.c @ 1043:d5349ad8acaa

Fix compile error
author gthomas
date Wed, 28 May 2003 18:18:52 +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;
}