From: Ulrich Drepper Date: Sun, 19 Dec 1999 05:56:47 +0000 (+0000) Subject: Declare __libc_read and __libc_write. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a6e23d3578544b9f2bc13d5a8e84b3f791c675ac;p=thirdparty%2Fglibc.git Declare __libc_read and __libc_write. --- diff --git a/include/unistd.h b/include/unistd.h index ae31b0b8593..9a6646a724b 100644 --- a/include/unistd.h +++ b/include/unistd.h @@ -20,6 +20,8 @@ extern ssize_t __libc_pwrite (int __fd, __const void *__buf, size_t __n, __off_t __offset); extern ssize_t __libc_pwrite64 (int __fd, __const void *__buf, size_t __n, __off64_t __offset); +extern ssize_t __libc_read (int __fd, void *__buf, size_t __n); +extern ssize_t __libc_write (int __fd, __const void *__buf, size_t __n); extern int __pipe __P ((int __pipedes[2])); extern unsigned int __sleep __P ((unsigned int __seconds)); extern int __chown __P ((__const char *__file,