From ce7f605ba7d119d7aae336117a306167ede44916 Mon Sep 17 00:00:00 2001 From: "Thomas Bushnell, BSG" Date: Tue, 8 Oct 1996 18:38:08 +0000 Subject: *** empty log message *** Tue Oct 8 13:58:31 1996 Thomas Bushnell, n/BSG * hurd/ports-get.c (_hurd_ports_get): If the requested port is null, don't attempt mach_port_mod_refs. --- stdio/fgets.c | 2 +- stdio/freopen.c | 2 +- stdio/getdelim.c | 3 ++- 3 files changed, 4 insertions(+), 3 deletions(-) (limited to 'stdio') diff --git a/stdio/fgets.c b/stdio/fgets.c index 01d4d9d095..4526c704c3 100644 --- a/stdio/fgets.c +++ b/stdio/fgets.c @@ -101,7 +101,7 @@ fgets (s, n, stream) if (i > n) i = n; - found = (char *) __memccpy ((PTR) p, stream->__bufp, '\n', i); + found = (char *) __memccpy ((void *) p, stream->__bufp, '\n', i); if (found != NULL) { diff --git a/stdio/freopen.c b/stdio/freopen.c index a21d725c17..cfb72bb745 100644 --- a/stdio/freopen.c +++ b/stdio/freopen.c @@ -25,7 +25,7 @@ extern int __getmode __P ((const char *, __io_mode *)); /* Defined in sysd-stdio.c. */ extern int __stdio_reopen __P ((const char *filename, __io_mode mode, - PTR *cookieptr, __io_close_fn closefn)); + void *cookieptr, __io_close_fn closefn)); /* Replace STREAM, opening it on FILENAME. */ FILE * diff --git a/stdio/getdelim.c b/stdio/getdelim.c index 761c7980c1..0a6e561ae6 100644 --- a/stdio/getdelim.c +++ b/stdio/getdelim.c @@ -135,7 +135,8 @@ __getdelim (lineptr, n, terminator, stream) if (i > copy) i = copy; - found = (char *) __memccpy ((PTR) p, stream->__bufp, terminator, i); + found = (char *) __memccpy ((void *) p, stream->__bufp, + terminator, i); if (found != NULL) { stream->__bufp += found - p; -- cgit v1.2.3