view examples/hello.c @ 948:83ca3aef4a92

Adjust configuration for MPC852T platforms
author gthomas
date Wed, 16 Apr 2003 16:04:21 +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;
}