view examples/hello.c @ 2191:8d1deabc0273

* src/buffer.cxx: Fix the compiler warnings.
author asl
date Mon, 08 May 2006 17:41:55 +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;
}