view examples/hello.c @ 2659:a8a5496dc26a

* tests/flash2.c: Fixed a few warnings.
author asl
date Sun, 23 Nov 2008 12:04:06 +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;
}