view examples/hello.c @ 436:f44d40e6cdd3

Improve makefile build tools
author gthomas
date Mon, 25 Nov 2002 23:28:08 +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;
}