view examples/hello.c @ 3199:1151035b20da

Add CYGBLD_FORCE_INLINE macro to be used to enforce function inlining when compiling with no optimization.
author vae
date Tue, 12 Feb 2013 20:58:56 +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;
}