view examples/hello.c @ 175:e7780801e1a7

Merge from eCos master repository on 2001-07-31-19:15:01-BST
author jlarmour
date Tue, 31 Jul 2001 21:15:36 +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;
}