view examples/hello.c @ 1528:970d06598f83

* src/httpd.c (cyg_httpd_server): Fix http header by adding newline after server name.
author asl
date Tue, 02 Mar 2004 10:27:26 +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;
}