view examples/hello.c @ 945:3b9afa204d69

* src/load.c: Change #else if to #elif so it compiles when TFTP is disabled.
author jlarmour
date Mon, 14 Apr 2003 16:45:36 +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;
}