view examples/hello.c @ 1000:6204f4b6686d

* pkgconf/rules.doc: Build PNG images (not GIFs) for HTML docs.
author jld
date Tue, 06 May 2003 15:52:14 +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;
}