diff options
author | 2003-06-26 21:44:26 +0000 | |
---|---|---|
committer | 2003-06-26 21:44:26 +0000 | |
commit | df7cf6b17397541c9c953a6075a02acbb544f8d4 (patch) | |
tree | 1280c848d2cda329942738b503684bef7e991bce | |
parent | minimal protos (diff) | |
download | wireguard-openbsd-df7cf6b17397541c9c953a6075a02acbb544f8d4.tar.xz wireguard-openbsd-df7cf6b17397541c9c953a6075a02acbb544f8d4.zip |
change awk script to generate ansi code
-rw-r--r-- | usr.bin/kdump/mkioctls | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.bin/kdump/mkioctls b/usr.bin/kdump/mkioctls index a205aee08b8..065f068c829 100644 --- a/usr.bin/kdump/mkioctls +++ b/usr.bin/kdump/mkioctls @@ -1,5 +1,5 @@ #!/bin/sh - -# $OpenBSD: mkioctls,v 1.12 2003/06/23 16:53:06 mickey Exp $ +# $OpenBSD: mkioctls,v 1.13 2003/06/26 21:44:26 deraadt Exp $ # # Copyright (c) 1994 @@ -84,8 +84,7 @@ BEGIN { print "#include <sys/ioctl.h>" print "" print "const char *" - print "ioctlname(val)" - print "\tunsigned long val;" + print "ioctlname(unsigned long val)" print "{" print "\tswitch (val) {" print "" |