summaryrefslogtreecommitdiffstats
path: root/sys/kern/exec_elf.c
diff options
context:
space:
mode:
authormillert <millert@openbsd.org>2002-03-14 01:26:25 +0000
committermillert <millert@openbsd.org>2002-03-14 01:26:25 +0000
commitc4071fd13883b3f74b90a411bbb39755a785aeaa (patch)
tree241e7c760222fac909b512d36156c6db1b610256 /sys/kern/exec_elf.c
parentcompare pointers with NULL not 0 (diff)
downloadwireguard-openbsd-c4071fd13883b3f74b90a411bbb39755a785aeaa.tar.xz
wireguard-openbsd-c4071fd13883b3f74b90a411bbb39755a785aeaa.zip
First round of __P removal in sys
Diffstat (limited to 'sys/kern/exec_elf.c')
-rw-r--r--sys/kern/exec_elf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/kern/exec_elf.c b/sys/kern/exec_elf.c
index 2ef35faab22..beb231e60aa 100644
--- a/sys/kern/exec_elf.c
+++ b/sys/kern/exec_elf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: exec_elf.c,v 1.37 2001/11/15 06:22:30 art Exp $ */
+/* $OpenBSD: exec_elf.c,v 1.38 2002/03/14 01:27:03 millert Exp $ */
/*
* Copyright (c) 1996 Per Fogelstrom
@@ -71,8 +71,8 @@
#endif
struct ELFNAME(probe_entry) {
- int (*func) __P((struct proc *, struct exec_package *, char *,
- u_long *, u_int8_t *));
+ int (*func)(struct proc *, struct exec_package *, char *,
+ u_long *, u_int8_t *);
int os_mask;
} ELFNAME(probes)[] = {
/* XXX - bogus, shouldn't be size independent.. */