view examples/hello.c @ 430:7a421b1fb2e4

Improve documentation. Replace gmon_out.h with non-GPL version.
author gthomas
date Fri, 15 Nov 2002 18:36:26 +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;
}