summaryrefslogtreecommitdiff
path: root/libc/include/unistd.h
diff options
context:
space:
mode:
authorPixel <pixel@nobis-crew.org>2011-02-05 13:34:53 -0800
committerPixel <pixel@nobis-crew.org>2011-02-05 13:38:03 -0800
commit8361bc28f9215a07e2275f55561408d1bfca112f (patch)
tree32831be23ef746bdeee12f513b7e1ea8d1128804 /libc/include/unistd.h
parente909259d715fe20e5a02b21bdbea0475960d80ec (diff)
Added a few more stdio features.
Diffstat (limited to 'libc/include/unistd.h')
-rw-r--r--libc/include/unistd.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/libc/include/unistd.h b/libc/include/unistd.h
index 8efd838..0b009f8 100644
--- a/libc/include/unistd.h
+++ b/libc/include/unistd.h
@@ -27,5 +27,6 @@ int open(const char *pathname, int flags);
int close(int fd);
ssize_t read(int fd, void *buf, size_t count);
ssize_t write(int fd, const void *buf, size_t count);
+off_t lseek(int fd, off_t seek, int wheel);
#endif