view examples/hello.c @ 2982:2155db306734

* include/lwipopts.h: Fix compilation error when compiling SNMP code. [ Bugzilla 1001098 ]
author jld
date Thu, 16 Dec 2010 21:33:26 +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;
}