view examples/hello.c @ 3251:a27026771dae

Fix compiler warnings for discrediting const pointer. [ Bugzilla 1001865 ]
author vae
date Sat, 15 Jun 2013 20:28:37 +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;
}