diff options
Diffstat (limited to 'tools/sed-functions')
-rw-r--r-- | tools/sed-functions | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tools/sed-functions b/tools/sed-functions index ac784a5..71ecc8e 100644 --- a/tools/sed-functions +++ b/tools/sed-functions @@ -1,3 +1,10 @@ +# eat all comments +/^\s*\/\*/ { + :comment + /\*\/\s*$/ { n; b nocomment } + n; b comment +} +:nocomment # drop if don't start with EAPI /^\s*EAPI/ ! b # drop extern definitions |