view examples/hello.c @ 2718:8891f4f46137

Added tag before-copyright-change-20090121 for changeset c301264acb03
author jlarmour
date Sun, 18 Jan 2009 03:44:22 +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;
}