diff options
author | 2002-02-17 19:42:18 +0000 | |
---|---|---|
committer | 2002-02-17 19:42:18 +0000 | |
commit | f3c3a9c6dfeacc6897a86575161336d2a48e6df1 (patch) | |
tree | d14445e214d1b0db31b5a8d6f8b1f2938a91057e /lib/libc/stdio/vfprintf.c | |
parent | Document that both localhost and the local hostname needs to be able to (diff) | |
download | wireguard-openbsd-f3c3a9c6dfeacc6897a86575161336d2a48e6df1.tar.xz wireguard-openbsd-f3c3a9c6dfeacc6897a86575161336d2a48e6df1.zip |
Manual cleanup of remaining userland __P use (excluding packages maintained outside the tree)
Diffstat (limited to 'lib/libc/stdio/vfprintf.c')
-rw-r--r-- | lib/libc/stdio/vfprintf.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/lib/libc/stdio/vfprintf.c b/lib/libc/stdio/vfprintf.c index 086547819ea..326a6e92746 100644 --- a/lib/libc/stdio/vfprintf.c +++ b/lib/libc/stdio/vfprintf.c @@ -35,7 +35,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: vfprintf.c,v 1.15 2002/02/16 21:27:24 millert Exp $"; +static char *rcsid = "$OpenBSD: vfprintf.c,v 1.16 2002/02/17 19:42:24 millert Exp $"; #endif /* LIBC_SCCS and not lint */ /* @@ -60,10 +60,8 @@ static char *rcsid = "$OpenBSD: vfprintf.c,v 1.15 2002/02/16 21:27:24 millert Ex #include "local.h" #include "fvwrite.h" -static void __find_arguments __P((const char *fmt0, va_list ap, - va_list **argtable)); -static int __grow_type_table __P((unsigned char **typetable, - int *tablesize)); +static void __find_arguments(const char *fmt0, va_list ap, va_list **argtable); +static int __grow_type_table(unsigned char **typetable, int *tablesize); /* * Flush out all the vectors defined by the given uio, |