Mercurial > ecos
view examples/hello.c @ 1581:bad894bd648f
* src/bootp_support.c:
* src/dhcp_prot.c: Close sockets before exiting so we don't leak
them.
* src/dhcp_prot.c (new_lease): Use a smaller infinite so we don't get
a compiler warning.
| author | asl |
|---|---|
| date | Sun, 11 Apr 2004 11:23:51 +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; }
