view examples/hello.c @ 561:f30f2d57da64

Added interface CYGINT_IO_FILEIO_FS which any FS which FILEIO can use should implement.
author asl
date Mon, 03 Feb 2003 16:26:04 +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;
}