Merge "Make cgrep look for *.c, *.cc, *.cpp, *.h exclusively."
diff --git a/envsetup.sh b/envsetup.sh
index a76deb9..1c114d0 100644
--- a/envsetup.sh
+++ b/envsetup.sh
@@ -771,7 +771,7 @@
 
 function cgrep()
 {
-    find . -type f -name "*\.c*" -print0 | xargs -0 grep --color -n "$@"
+    find . -type f \( -name '*.c' -o -name '*.cc' -o -name '*.cpp' -o -name '*.h' \) -print0 | xargs -0 grep --color -n "$@"
 }
 
 function resgrep()