diff options
author | 1997-07-25 20:29:57 +0000 | |
---|---|---|
committer | 1997-07-25 20:29:57 +0000 | |
commit | b71133560cf1ffb85aedfde08af920b5a3146273 (patch) | |
tree | 9bc09abca4a79e54e78902deb91633a9273e6fe9 /lib/libc/stdio/funopen.c | |
parent | #if __STDC__ --> #ifdef __STDC__ (diff) | |
download | wireguard-openbsd-b71133560cf1ffb85aedfde08af920b5a3146273.tar.xz wireguard-openbsd-b71133560cf1ffb85aedfde08af920b5a3146273.zip |
#if __STDC__ --> #ifdef __STDC__
Diffstat (limited to 'lib/libc/stdio/funopen.c')
-rw-r--r-- | lib/libc/stdio/funopen.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/stdio/funopen.c b/lib/libc/stdio/funopen.c index 354409b6c61..6b9eb87d895 100644 --- a/lib/libc/stdio/funopen.c +++ b/lib/libc/stdio/funopen.c @@ -35,7 +35,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: funopen.c,v 1.2 1996/08/19 08:32:48 tholo Exp $"; +static char rcsid[] = "$OpenBSD: funopen.c,v 1.3 1997/07/25 20:30:09 mickey Exp $"; #endif /* LIBC_SCCS and not lint */ #include <stdio.h> @@ -46,7 +46,7 @@ FILE * funopen(cookie, readfn, writefn, seekfn, closefn) const void *cookie; int (*readfn)(), (*writefn)(); -#if __STDC__ +#ifdef __STDC__ fpos_t (*seekfn)(void *cookie, fpos_t off, int whence); #else fpos_t (*seekfn)(); |