view examples/hello.c @ 206:eff1bb37158a last-rhepl

quick bootp fix
author jlarmour
date Tue, 14 May 2002 21:31:55 +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;
}