Mercurial > ecos
view examples/hello.c @ 2352:bafbb0c01fb4
* src/arm-stub.c: Added string.h header (`memcpy' declaration).
| author | jlarmour |
|---|---|
| date | Mon, 15 Jan 2007 15:15: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; }
