view examples/hello.c @ 854:5fd2f1ac9c80

* include/network.h: Added include of pkgconf/io_eth_drivers.h since the recent move of CYGHWR_NET_DRIVERS prevented some tests building. This fixes the problem. * tests/dhcp_test2.c: Sorted out ifdefs so that this test builds when DHCP is disabled. * cdl/net.cdl: Reinstated dhcp_test2 into list of tests: it was accidentally removed in the 2003-03-14 checkin.
author nickg
date Fri, 21 Mar 2003 18:14:35 +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;
}