view examples/hello.c @ 463:05075ca5a377

Add explicit #include for <cyg/infra/cyg_type.h>
author bartv
date Sun, 15 Dec 2002 21:17:17 +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;
}