view examples/hello.c @ 1525:1ea738d9701c

* ecos.db: Added the LANCEPCI packages and support for the vmWare target
author asl
date Tue, 02 Mar 2004 10:11:07 +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;
}