Mercurial > ecos
view examples/hello.c @ 3016:9306ff8edcbf
* src/bootp_support.c (show_bootp): Fixed output for some fields.
* src/dhcp_prot.c (do_dhcp): Convert bp_secs field to network byte
order. Inspired by Kelvin Lawson. [ Bugzilla 1001170 ]
| author | sergeig |
|---|---|
| date | Fri, 11 Mar 2011 20:00:19 +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; }
