view examples/hello.c @ 2961:4d0db334c7fc

* include/*, tests/*, HISTORY, LICENSE: Update to uSTL 1.4 sources.
author jld
date Tue, 29 Jun 2010 07:30:28 +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;
}