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