Mercurial > ecos
view examples/hello.c @ 2967:a98ace8abb52
* bsd_tcpip/current/doc/freebsd.sgml, tcpip/current/doc/openbsd.sgml:
No longer "recent".
* httpd/current/doc/httpd.sgml: Fix GoAhead URL.
| author | jld |
|---|---|
| date | Sat, 18 Sep 2010 16:10:32 +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; }
