view examples/hello.c @ 3197:376086cd0778

* include/var_io.h: Fix CYGHWR_HAL_STM32_UART6 definition.
author jld
date Wed, 23 Jan 2013 07:53:28 +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;
}