00001 /************************************************************************ 00002 ** low level IO routines 00003 ** 00004 ************************************************************************/ 00005 00006 #include "cio.h" //central IO manager 00007 #include "io.h" 00008 00009 int _write(int fd, const void *data,unsigned int count) 00010 { 00011 IOCB *pI = (IOCB *)fd; 00012 return CioWrite(pI,(char *)data,(int)(count)); 00013 } 00014