view examples/hello.c @ 1663:59fbd6362c2b

get rid of unused workspace_size
author jani
date Mon, 31 May 2004 07:55:28 +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;
}