view examples/hello.c @ 596:d729dea5c4a8

* user-guide.sgml: * config-tool.sgml: * configuration.sgml: Files extensively modified to bring them up to date. Essentially the old Tutorial document has been merged in with the User Guide to give a single document from which to start with eCos. * introduction.sgml: * installation.sgml: * programming.sgml: * programming-concepts-techniques.sgml: * target-setup.sgml: * real-time-characterization.sgml: New files containing both fresh text and text merged in from the old tutorial, which is now obsolete. * pix/templates01.png: * pix/ARMStartup01.png: * pix/build-lib01.png: * pix/build-tests01.png: * pix/twothreads2.png: Graphics copied here from old tutorial.
author nickg
date Wed, 12 Feb 2003 18:36:12 +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;
}