From 7143dfdc43a39dad85ca8cd621eea4c6921629ef Mon Sep 17 00:00:00 2001 From: Ruslan Ermilov Date: Sun, 19 Sep 2004 14:54:35 +0000 Subject: [PATCH] Place a function prototype correctly. Submitted by: Divacky Roman --- usr.bin/kdump/kdump.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.bin/kdump/kdump.c b/usr.bin/kdump/kdump.c index 010f862baf6..8b122ab3577 100644 --- a/usr.bin/kdump/kdump.c +++ b/usr.bin/kdump/kdump.c @@ -79,6 +79,7 @@ void ktrpsig(struct ktr_psig *); void ktrcsw(struct ktr_csw *); void ktruser(int, unsigned char *); void usage(void); +const char *ioctlname(u_long); int timestamp, decimal, fancy = 1, tail, maxdata; const char *tracefile = DEF_TRACEFILE; @@ -285,7 +286,6 @@ ktrsyscall(struct ktr_syscall *ktr) { int narg = ktr->ktr_narg; register_t *ip; - const char *ioctlname(u_long); if (ktr->ktr_code >= nsyscalls || ktr->ktr_code < 0) (void)printf("[%d]", ktr->ktr_code);