view examples/hello.c @ 417:37b0db9e87ca

Cleanup a few loose ends from IOP310 reorganization
author msalter
date Wed, 13 Nov 2002 15:43:20 +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;
}