view examples/hello.c @ 1677:6e03b0d71309

* src/syscall-i386-linux-1.0.S: Add readdir, lstat and fstat system calls
author asl
date Mon, 21 Jun 2004 09:55:02 +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;
}