view examples/hello.c @ 3233:0e33931a6b39

Remove unwanted diag_printf().
author vae
date Mon, 29 Apr 2013 17:39:53 +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;
}