Mercurial > ecos
view examples/hello.c @ 3041:0cc3efcba81d
* src/objelf.c:cyg_ldr_relocate_section(): Conditional block did
shadow the return of error code. Fixed.
| author | sergeig |
|---|---|
| date | Sat, 02 Jul 2011 10:13:31 +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; }
