#!/bin/csh -f

foreach f ($argv)
	fgrep -n "#line" $f | \
	fgrep $f |\
	sed -e 's/:/ /gp' | \
	awk '{ if (($1 +1) != $3) print $0; next}'
end
