view examples/hello.c @ 810:bfefb4e76917

* sgml/jadetex.cfg: Add this to configure PDF output nicely with index and coloured links. * sgml/makemakefile: modified copyfiles to copy png-s instead of gif-s. * sgml/README-PDF: Comment on pdfjadetext failure and workaround.
author jlarmour
date Thu, 01 May 2003 19:04:27 +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;
}