From 8361bc28f9215a07e2275f55561408d1bfca112f Mon Sep 17 00:00:00 2001 From: Pixel Date: Sat, 5 Feb 2011 13:34:53 -0800 Subject: Added a few more stdio features. --- libc/include/unistd.h | 1 + 1 file changed, 1 insertion(+) (limited to 'libc/include/unistd.h') 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 -- cgit v1.2.3