Mercurial > ecos
view examples/hello.c @ 2898:bfb377ab267a
* src/common/vsnprintf.cxx (class Cyg_VsnprintfStream):
Remove destructor.
(vsnprintf): Apply null terminator correctly when truncated.
| author | jlarmour |
|---|---|
| date | Fri, 07 Aug 2009 19:20:30 +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; }
