view examples/hello.c @ 1767:2ca70385b0f4

Bring driver docs up to date
author bartv
date Wed, 23 Feb 2005 23:11:03 +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;
}