Mercurial > ecos
view examples/hello.c @ 3283:355bcd2cec54
* common/Subprocess.cpp: Silence signed/unsigned compiler warning
with recent GCC. [ Bugzilla 1001955 ]
| author | jld |
|---|---|
| date | Thu, 13 Mar 2014 15:31:34 +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; }
