Fix check-header-guards on OS X
diff --git a/src/check-header-guards.sh b/src/check-header-guards.sh
index 4dd2a0b..af9fa7f 100755
--- a/src/check-header-guards.sh
+++ b/src/check-header-guards.sh
@@ -15,7 +15,7 @@
 	echo "$x" | grep '[^h]$' -q && continue;
 	xx=`echo "$x" | sed 's@.*/@@'`
 	tag=`echo "$xx" | tr 'a-z.-' 'A-Z_'`
-	lines=`grep "\<$tag\>" "$x" | wc -l | sed 's/ 	//g'`
+	lines=`grep "\<$tag\>" "$x" | wc -l | sed 's/[ 	]*//g'`
 	if test "x$lines" != x3; then
 		echo "Ouch, header file $x does not have correct preprocessor guards"
 		stat=1