summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xbin/grepc14
1 files changed, 0 insertions, 14 deletions
diff --git a/bin/grepc b/bin/grepc
index 0781f5e..0517313 100755
--- a/bin/grepc
+++ b/bin/grepc
@@ -287,19 +287,6 @@ grepc_type_typedef_struct_union_enum()
}
-grepc_type_typedef_underlying_struct_union_enum()
-{
- xargs grep -${iflag}hP '^[ \t]*typedef\s+(struct|union|enum)\s+.*\b'"$1;" <"$files" \
- | sed -E -e 's/^[ \t]*typedef\s+//' -e "s/\s*\**\b$1;.*//${iflag}" \
- | sed -E -e 's/^struct\s+//' -e 's/^union\s+//' -e 's/^enum\s+//' \
- | while read -r t; do
- test "$1" != "$t" \
- && grepc_find_files "$t" \
- | grepc_type_struct_union_enum "$t";
- done;
-}
-
-
grepc_type_typedef_func()
{
grepc_helper \
@@ -314,7 +301,6 @@ grepc_type_typedef()
{
grepc_type_typedef_simple "$1";
grepc_type_typedef_struct_union_enum "$1";
- grepc_type_typedef_underlying_struct_union_enum "$1";
grepc_type_typedef_func "$1";
}