view examples/hello.c @ 2946:418d34334c77

* include/objelf.h: Add missed entry to CYG_LDR_TABLE_KAPI_MUTEX definition (cyg_mutex_lock_entry).
author jld
date Thu, 01 Apr 2010 13:17:10 +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;
}