view examples/hello.c @ 1651:91a37e2314f4

Upgrade to zlib-1.2.1
author gthomas
date Mon, 24 May 2004 19:33:34 +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;
}