diff options
author | ru <ru@FreeBSD.org> | 2004-09-19 14:54:35 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2004-09-19 14:54:35 +0000 |
commit | 15deca3fae97535705845b6981ed8944f75bc72b (patch) | |
tree | c0845cd65b00f95bba6ffc897ac6d9243d742c5b /usr.bin/kdump | |
parent | 35fa627d6182a7d7d0bd4974da60abcf6d49954f (diff) | |
download | FreeBSD-src-15deca3fae97535705845b6981ed8944f75bc72b.zip FreeBSD-src-15deca3fae97535705845b6981ed8944f75bc72b.tar.gz |
Place a function prototype correctly.
Submitted by: Divacky Roman
Diffstat (limited to 'usr.bin/kdump')
-rw-r--r-- | usr.bin/kdump/kdump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/kdump/kdump.c b/usr.bin/kdump/kdump.c index 010f862..8b122ab 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); |