view examples/hello.c @ 1455:40b7a8e5d137

Clean up unused variables
author gthomas
date Sun, 21 Dec 2003 13:46: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;
}