summaryrefslogtreecommitdiff
path: root/ecos/examples/hello.c
blob: 94709d94dbe364f3ab6b43f49ec46f37be6d2e6b (plain)
1
2
3
4
5
6
7
8
/* this is a simple hello world program */
#include <stdio.h>

int main(void)
{
  printf("Hello, eCos world!\n");
  return 0;
}