Mercurial > ecos
view examples/hello.c @ 3125:24461b5331ea
Fix compiler warning by removing 'netmask' variable which is set but
then never used. [ Bugzilla 1001516 ]
| author | grante |
|---|---|
| date | Tue, 13 Mar 2012 14:46:13 +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; }
