view examples/hello.c @ 755:d9ac6519aab3

* doc/usbseth.sgml: Declare as <part> not <reference> to get correct TOC numbering.
author jlarmour
date Tue, 25 Feb 2003 16:47:38 +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;
}