view examples/hello.c @ 2838:16018605bc97

* src/file.cxx: add a chmod() call, implemented by calling cyg_fs_setinfo with parameter FS_INFO_CHMOD
author asl
date Mon, 02 Mar 2009 20:55:53 +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;
}