view examples/hello.c @ 2556:dcf60bb1f255

* build.cxx (generate_config_headers): Create Tcl channels for standard streams in Cygwin builds. [ Bugzilla 1000070 ]
author jld
date Thu, 18 Sep 2008 10:17:13 +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;
}