Mercurial > ecos
view examples/hello.c @ 2255:3327c37c28d1
* src/socket.c: Corrected a typo that generated an assertion.
Modified slightly the source of cyg_httpd_write and cyg_httpd_writev
to make the code more consistent as to when assertions are thrown.
| author | jlarmour |
|---|---|
| date | Thu, 20 Jul 2006 18:55:04 +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; }
