view examples/hello.c @ 1368:7a48ba3056e6

* cdl/linux.cdl: * include/asm/page.h: Make page size configurable via cdl.
author asl
date Thu, 20 Nov 2003 08:24:58 +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;
}