view examples/hello.c @ 2803:d21b0d3d2e3e

* include/stdio.h: Removed extra semicolon after scanf() prototype.
author jlarmour
date Mon, 16 Feb 2009 21:41:12 +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;
}