view examples/hello.c @ 2182:8d70f3959bf9

Fix default stack sizes - too small and didn't account for stack checking
author gthomas
date Tue, 18 Apr 2006 22:29:39 +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;
}