Subversion Repositories HelenOS-historic

Rev

Rev 1366 | Go to most recent revision | Details | 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
 
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