Subversion Repositories HelenOS-historic

Rev

Rev 1366 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1. #include <libarch/types.h>
  2. #include <unistd.h>
  3.  
  4. #define EMFILE -17
  5.  
  6. typedef int fd_t;
  7.  
  8.  
  9. typedef ssize_t (*pwritefn_t)(void *,const void *,size_t);
  10. typedef ssize_t (*preadfn_t)(void);
  11.  
  12. fd_t open(const char *fname,int flags);
  13.  
  14.  
  15.  
  16.  
  17.