mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-09 04:21:49 +08:00
9 lines
237 B
Plaintext
9 lines
237 B
Plaintext
|
# Awk filter, 1st filter for BFD prototype file extraction
|
||
|
#
|
||
|
# keep /*proto blocks
|
||
|
/^\/\*proto\*/,/^\*\/|^\*-\*\//
|
||
|
#
|
||
|
# Apparent bug in sed can discard last line in some situations; therefore
|
||
|
# make last line harmless.
|
||
|
END { print "\n" }
|