Mercurial > ecos
view examples/hello.c @ 1283:6bb106b4ff93
* src/fio.h (CYG_FILEIO_SIGMASK_SET): Fixed a compiler warning
about an unused variable.
* src/devfs.cxx: prototype of dev_fo_select now matches
implementation
* include/fileio.h: changed definition of cyg_fileop_select to
return a cyg_bool instead of int to match current implementations
* src/misc.cxx: changed cyg_fileio_seltrue() to match prototype.
| author | asl |
|---|---|
| date | Mon, 06 Oct 2003 18:45:22 +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; }
