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 | |
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')
-rw-r--r-- | lib/libc/stdio/local.h | 4 | ||||
-rw-r--r-- | lib/libc/stdio/vfprintf.c | 8 |
2 files changed, 5 insertions, 7 deletions
diff --git a/lib/libc/stdio/local.h b/lib/libc/stdio/local.h index 8efe61030ef..70d5c564471 100644 --- a/lib/libc/stdio/local.h +++ b/lib/libc/stdio/local.h @@ -1,4 +1,4 @@ -/* $OpenBSD: local.h,v 1.3 2002/02/16 21:27:24 millert Exp $ */ +/* $OpenBSD: local.h,v 1.4 2002/02/17 19:42:23 millert Exp $ */ /*- * Copyright (c) 1990, 1993 @@ -53,7 +53,7 @@ void _cleanup(void); void (*__cleanup)(void); void __smakebuf(FILE *); int __swhatbuf(FILE *, size_t *, int *); -int _fwalk __P((int (*)(FILE *))); +int _fwalk(int (*)(FILE *)); int __swsetup(FILE *); int __sflags(const char *, int *); 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, |