view examples/hello.c @ 1475:c9e09b1c18cb

Fix for building without GDB stubs
author gthomas
date Sun, 18 Jan 2004 17:42:47 +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;
}