view examples/hello.c @ 2564:2ccc43202018

Another attempt at fixing the occasional problem with X errors when the synthetic target I/O auxiliary exits.
author bartv
date Tue, 07 Oct 2008 09:47: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;
}