Subversion Repositories HelenOS-historic

Rev

Rev 1363 | Rev 1451 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1363 vana 1
#include <libarch/types.h>
2
#include <unistd.h>
3
 
4
#define EMFILE -17
5
 
6
typedef int fd_t;
7
 
8
 
1366 decky 9
typedef ssize_t (*pwritefn_t)(void *, const void *, size_t);
1363 vana 10
typedef ssize_t (*preadfn_t)(void);
11
 
1366 decky 12
fd_t open(const char *fname, int flags);