view examples/hello.c @ 784:e942a29011aa

* Makefile: ECOS_INSTALL -> INSTALL_DIR
author jld
date Mon, 03 Mar 2003 08:50:18 +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;
}