view examples/hello.c @ 2869:b05be09f157f

Fix 16as8 macros
author bartv
date Tue, 21 Apr 2009 15:40:08 +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;
}