Mercurial > ecos
view examples/hello.c @ 3134:7a634ca81afe
* src/strata_aux.c (strata_hw_cfi): Fix compiler warnings that
variable is set but not used. [ Bugzilla 1001541 ]
| author | sergeig |
|---|---|
| date | Wed, 21 Mar 2012 17:09:05 +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; }
