view examples/hello.c @ 1060:968041f10447

* src/mibgroup/mibII/helpers.c: Changed the definition of ifnet_addrs to an extern declaration because of multiple symbol definition errors when using a compiler that does not merge them.
author asl
date Mon, 23 Jun 2003 10:16:37 +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;
}