artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
77f9746
)
the ioctl table generation does not require sys/param.h
author
deraadt
<deraadt@openbsd.org>
Fri, 17 Sep 2021 15:13:04 +0000
(15:13 +0000)
committer
deraadt
<deraadt@openbsd.org>
Fri, 17 Sep 2021 15:13:04 +0000
(15:13 +0000)
usr.bin/kdump/mkioctls
patch
|
blob
|
history
diff --git
a/usr.bin/kdump/mkioctls
b/usr.bin/kdump/mkioctls
index
161061d
..
5492894
100644
(file)
--- a/
usr.bin/kdump/mkioctls
+++ b/
usr.bin/kdump/mkioctls
@@
-1,5
+1,5
@@
#!/bin/sh -
-# $OpenBSD: mkioctls,v 1.4
2 2020/06/22 01:02:30 dlg
Exp $
+# $OpenBSD: mkioctls,v 1.4
3 2021/09/17 15:13:04 deraadt
Exp $
#
# Copyright (c) 1994
@@
-33,7
+33,8
@@
#
${CC:-cc} -E -dM ${1+"$@"} | awk '
BEGIN {
- print "#include <sys/param.h>"
+ print "#include <sys/types.h>"
+ print "#include <sys/signal.h>"
print "#include <sys/socket.h>"
print "#include <sys/socketvar.h>"
print "#include <miscfs/fuse/fusefs.h>"