view examples/hello.c @ 1245:844ff6aec80b

Improve DHCP again
author gthomas
date Thu, 25 Sep 2003 23:49:56 +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;
}