Mercurial > ecos
view examples/hello.c @ 878:7a1e8e86fb43
Implement __cxa_pure_virtual() in eCos rather than rely on the one in
libsupc++
| author | bartv |
|---|---|
| date | Thu, 27 Mar 2003 17:49:41 +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; }
