view examples/hello.c @ 850:c3c6ed4ef316

fix __thread keyword conflict
author msalter
date Thu, 20 Mar 2003 16:06: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;
}