summaryrefslogtreecommitdiffstats
path: root/lib/libc/stdlib/merge.c
diff options
context:
space:
mode:
authormillert <millert@openbsd.org>2002-02-17 19:42:18 +0000
committermillert <millert@openbsd.org>2002-02-17 19:42:18 +0000
commitf3c3a9c6dfeacc6897a86575161336d2a48e6df1 (patch)
treed14445e214d1b0db31b5a8d6f8b1f2938a91057e /lib/libc/stdlib/merge.c
parentDocument that both localhost and the local hostname needs to be able to (diff)
downloadwireguard-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/stdlib/merge.c')
-rw-r--r--lib/libc/stdlib/merge.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/stdlib/merge.c b/lib/libc/stdlib/merge.c
index 345eb2fd8ba..4ae6488af23 100644
--- a/lib/libc/stdlib/merge.c
+++ b/lib/libc/stdlib/merge.c
@@ -35,7 +35,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char *rcsid = "$OpenBSD: merge.c,v 1.4 2002/02/16 21:27:24 millert Exp $";
+static char *rcsid = "$OpenBSD: merge.c,v 1.5 2002/02/17 19:42:24 millert Exp $";
#endif /* LIBC_SCCS and not lint */
/*
@@ -58,8 +58,8 @@ static char *rcsid = "$OpenBSD: merge.c,v 1.4 2002/02/16 21:27:24 millert Exp $"
#include <stdlib.h>
#include <string.h>
-static void setup __P((u_char *, u_char *, size_t, size_t, int (*)()));
-static void insertionsort __P((u_char *, size_t, size_t, int (*)()));
+static void setup(u_char *, u_char *, size_t, size_t, int (*)());
+static void insertionsort(u_char *, size_t, size_t, int (*)());
#define ISIZE sizeof(int)
#define PSIZE sizeof(u_char *)