Parent Directory
|
Revision Log
|
Revision Graph
stale
1 | BEGIN { commonDecl = 0} |
2 | /^ .*/ {commonDecl = 0 } |
3 | /^[^ ]/ && !/^#ifdef / && !/^#endif/ && !/^#if / && !/^#else/ {commonDecl = 0 } |
4 | /^ *COMMON/ || /^ *common/ { commonDecl = 1 } |
5 | / &/ { if (commonDecl != 1) {print} } |
6 | /^#ifdef / || /^#endif/ || /^#if / || /^#else/ { if (commonDecl == 1) {print} } |
7 | {if (commonDecl ==0 ) print } |
8 | END {} |
ViewVC Help | |
Powered by ViewVC 1.1.22 |