view examples/hello.c @ 508:df4428db3e29

* Makefile: Simplify by reference to ecos.mak
author jld
date Mon, 20 Jan 2003 09:21:06 +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;
}