]> bbs.cooldavid.org Git - net-next-2.6.git/blame - scripts/hdrcheck.sh
[NET]: Round out in-kernel sockets API
[net-next-2.6.git] / scripts / hdrcheck.sh
CommitLineData
68475359
DW
1#!/bin/sh
2
120e2a97 3for FILE in `grep '^[ \t]*#[ \t]*include[ \t]*<' $2 | cut -f2 -d\< | cut -f1 -d\> | egrep ^linux\|^asm` ; do
68475359 4 if [ ! -r $1/$FILE ]; then
d5e064a6 5 echo $2 requires $FILE, which does not exist in exported headers
68475359
DW
6 exit 1
7 fi
8done