diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-08-03 10:37:25 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-08-03 10:37:25 -0400 |
commit | b4d0dc48d6dcf6a3ed5e8b1412268eaf1cedd1c9 (patch) | |
tree | 3c50f73678f0b76dce9be13a47d9d953d1fd88b1 | |
parent | d87e143fbad1e55ed9715c4d54c8285e0793ed4f (diff) |
make fixup_headers slightly more premissive
-rwxr-xr-x | fixup_includes | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fixup_includes b/fixup_includes index 7e3cf7c538..957733cdc0 100755 --- a/fixup_includes +++ b/fixup_includes @@ -79,7 +79,7 @@ phase0() { hook=: local line="$1" case "$line" in - '#include'*|'typedef struct '*';') + '#include'*|'typedef '*';') phase1 "$line" ;; *) @@ -177,7 +177,7 @@ phase1() { panic fi ;; - 'typedef struct '*';') + 'typedef '*';') phase1_tail='' typedef+=("$line") ;; |