mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-26 05:20:30 +00:00
9 lines
237 B
Plaintext
Executable File
9 lines
237 B
Plaintext
Executable File
# 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" }
|