view examples/hello.c @ 1688:30d12b1c7bb0

Fix test for valid entry point (loaded data)
author gthomas
date Wed, 07 Jul 2004 15:44:47 +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;
}