Deleted Added
full compact
mkioctls (52099) mkioctls (52130)
1set -e
2
1set -e
2
3# $FreeBSD: head/usr.bin/kdump/mkioctls 52099 1999-10-10 17:49:25Z peter $
3# $FreeBSD: head/usr.bin/kdump/mkioctls 52130 1999-10-11 16:14:22Z peter $
4
5# Build a list of headers that have ioctls in them.
6# XXX should we use an ANSI cpp?
7# XXX netipx conflicts with netns (leave out netns).
8ioctl_includes=`
9 cd $DESTDIR/usr/include
10 find * -name '*.h' -follow |
11 egrep -v '^(netns)/' |

--- 18 unchanged lines hidden (view full) ---

30 print "#include <net/if.h>"
31 print "#include <net/if_var.h>"
32 print "#include <net/route.h>"
33 print "#include <netatm/atm.h>"
34 print "#include <netatm/atm_if.h>"
35 print "#include <netatm/atm_sap.h>"
36 print "#include <netatm/atm_sys.h>"
37 print "#include <netinet/in.h>"
4
5# Build a list of headers that have ioctls in them.
6# XXX should we use an ANSI cpp?
7# XXX netipx conflicts with netns (leave out netns).
8ioctl_includes=`
9 cd $DESTDIR/usr/include
10 find * -name '*.h' -follow |
11 egrep -v '^(netns)/' |

--- 18 unchanged lines hidden (view full) ---

30 print "#include <net/if.h>"
31 print "#include <net/if_var.h>"
32 print "#include <net/route.h>"
33 print "#include <netatm/atm.h>"
34 print "#include <netatm/atm_if.h>"
35 print "#include <netatm/atm_sap.h>"
36 print "#include <netatm/atm_sys.h>"
37 print "#include <netinet/in.h>"
38 print "#include <netinet/ip_mroute.h>"
38 print "#include <cam/cam.h>"
39 print "#include <stdio.h>"
40 print ""
41 print ioctl_includes
42 print ""
43 print "char *"
44 print "ioctlname(val)"
45 print "{"

--- 27 unchanged lines hidden ---
39 print "#include <cam/cam.h>"
40 print "#include <stdio.h>"
41 print ""
42 print ioctl_includes
43 print ""
44 print "char *"
45 print "ioctlname(val)"
46 print "{"

--- 27 unchanged lines hidden ---