view examples/hello.c @ 1751:ae5a02813cce

Fix typo in testcase definition
author bartv
date Mon, 22 Nov 2004 16:39:25 +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;
}