summaryrefslogtreecommitdiff
path: root/sysdeps/generic
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1998-09-04 10:57:56 +0000
committerRoland McGrath <roland@gnu.org>1998-09-04 10:57:56 +0000
commit1097c6030a2f99075a259e3b5151122094ab68dc (patch)
tree8ace845f07a8d934aaf1c86acc792f80de8a2911 /sysdeps/generic
parentf50a53cb0efe72eefce3739d8f2232e7279433f8 (diff)
1998-09-03 Roland McGrath <roland@baalperazim.frob.com>
* mach/Makefile: Use -include for mach-syscalls.mk to silence warning. * sysdeps/mach/hurd/sysd-stdio.c: Declare fns __stdio_{read,write,seek,close,fileno} using __io_*_fn types. * sysdeps/generic/sysd-stdio.c: Likewise.
Diffstat (limited to 'sysdeps/generic')
-rw-r--r--sysdeps/generic/sysd-stdio.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/sysdeps/generic/sysd-stdio.c b/sysdeps/generic/sysd-stdio.c
index da8ed20bed..479f15208c 100644
--- a/sysdeps/generic/sysd-stdio.c
+++ b/sysdeps/generic/sysd-stdio.c
@@ -26,6 +26,12 @@
#include <fcntl.h>
#include <unistd.h>
+extern __io_read_fn __stdio_read;
+extern __io_write_fn __stdio_write;
+extern __io_seek_fn __stdio_seek;
+extern __io_close_fn __stdio_close;
+extern __io_fileno_fn __stdio_fileno;
+
/* Read N bytes into BUF from COOKIE. */
int
__stdio_read (void *cookie, char *buf, size_t n)