From a6e23d3578544b9f2bc13d5a8e84b3f791c675ac Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sun, 19 Dec 1999 05:56:47 +0000 Subject: [PATCH] Declare __libc_read and __libc_write. --- include/unistd.h | 2 ++ 1 file changed, 2 insertions(+) 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, -- 2.47.2