You can now do say $ . util/include.sh $ checkhdr view.h | removelst to remove all doubtful includes of view.h.
EITBK6G25BUMY4R7DE5YI5NFXNBUH7YJJVH74GBU3JEI5R6NTVGQC
# remove #include of $1 from $2
remove ()
{
b=$(basename $1 .h)
sed -e '/^#include "'$b'\.h"$/d' < $2 > $2.rmincl
mv $2.rmincl $2
}
# remove doubtful includes for a list as output by checkall.
removelst ()
{
while read hdr src; do
remove $hdr $src
done
}