view examples/hello.c @ 1650:0e6a7d89dd0e

New stream oriented functions - ftp_get_var()/ftp_put_var()
author gthomas
date Mon, 24 May 2004 19:31:01 +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;
}