view examples/hello.c @ 638:997aeddf5087

* Move files from templates/net/ to templates/old_net/ * current.ect: Update inferred values.
author jlarmour
date Fri, 14 Feb 2003 18:27:53 +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;
}