view examples/hello.c @ 1670:6627c3a1df79

* src/ifaddrs.c (getifaddrs): Return destination address for P2P devices. Also don't bother trying to get the broadcast address for interfaces that don't have a valid broadcast address. Inspired by Kelvin Lawson
author asl
date Thu, 17 Jun 2004 14:19:29 +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;
}