view examples/hello.c @ 1022:dafb81b65bb3

* ecos.db: Changed human-readable name and description of CYGPKG_IO_SERIAL_ARM_AT91 to something sensible.
author nickg
date Wed, 14 May 2003 17:21:05 +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;
}