view examples/hello.c @ 1059:4464de5a8dce

* src/ecos/support.c: Increase the stack size for the background thread when IPv6 is enabled otherwise the stack overflows.
author asl
date Mon, 23 Jun 2003 09:45:10 +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;
}