view examples/hello.c @ 3286:42c5ca5ac4e2

* src/mcount.S: Add mcount functions for call-graph profiling. * cdl/hal_powerpc.cdl: Add option to build mcount functions.
author jld
date Sat, 22 Mar 2014 17:08:11 +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;
}