source:
mainline/libc/include/io/stream.h@
79460ae
Last change on this file since 79460ae was 79460ae, checked in by , 19 years ago | |
---|---|
|
|
File size: 224 bytes |
Rev | Line | |
---|---|---|
[afa6e74] | 1 | #include <libarch/types.h> |
2 | #include <unistd.h> | |
3 | ||
4 | #define EMFILE -17 | |
5 | ||
6 | typedef int fd_t; | |
7 | ||
8 | ||
[04552a80] | 9 | typedef ssize_t (*pwritefn_t)(void *, const void *, size_t); |
[79460ae] | 10 | typedef char (*preadfn_t)(void); |
[afa6e74] | 11 | |
[04552a80] | 12 | fd_t open(const char *fname, int flags); |
Note:
See TracBrowser
for help on using the repository browser.