view examples/hello.c @ 2212:990ca86dc9d4

Don't try 'ip_address' command if no networking - avoids crash
author gthomas
date Wed, 24 May 2006 12:24:46 +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;
}