view examples/hello.c @ 3290:a1df75458e13

* src/common/sprintf.cxx (__sprintf_chk): Implement alias for use with libsupc++ in fortified linux distributions. [ Bugzilla 1001139 ]
author jld
date Thu, 03 Jul 2014 08:21:45 +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;
}