summaryrefslogtreecommitdiff
path: root/usr.bin/pkill/pkill.c
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2013-11-12 13:54:52 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2013-11-12 13:54:52 +0000
commit769d27bfd8d598bed294304a0b6d36f6a200ed07 (patch)
tree25c784d8964580517aa4c0cc2c3a45dc67f1ca0e /usr.bin/pkill/pkill.c
parentbde1ca3cfc1caa4c3d1ce29de79212df84e68e72 (diff)
simpler prototype repairs
Diffstat (limited to 'usr.bin/pkill/pkill.c')
-rw-r--r--usr.bin/pkill/pkill.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/pkill/pkill.c b/usr.bin/pkill/pkill.c
index 931a7235c34..de908d79a84 100644
--- a/usr.bin/pkill/pkill.c
+++ b/usr.bin/pkill/pkill.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pkill.c,v 1.33 2013/09/22 17:28:34 guenther Exp $ */
+/* $OpenBSD: pkill.c,v 1.34 2013/11/12 13:54:51 deraadt Exp $ */
/* $NetBSD: pkill.c,v 1.5 2002/10/27 11:49:34 kleink Exp $ */
/*-
@@ -106,6 +106,8 @@ void usage(void);
int killact(struct kinfo_proc *, int);
int grepact(struct kinfo_proc *, int);
void makelist(struct listhead *, enum listtype, char *);
+char *getargv(struct kinfo_proc *);
+int askyn(struct kinfo_proc *);
extern char *__progname;