Sign in
gnu
/
gcc.git
/
refs/heads/trunk
/
.
/
libgcobol
/
posix
/
bin
/
scrape.awk
blob: ba83146b883c395a4a7d2f13a7da5c8a0edf60a7 [
file
] [
log
] [
blame
]
#! /usr/bin/awk -f
/^
UNIMPLEMENTED
/
{
exit
}
/^
DESCRIPTION
/
{
exit
}
/
struct
sched_param
{
$
/
{
exit
}
# Print lines that end in dots, a comma, a brace, or a semicolon.
/
SYNOPSIS
/,
/DESCRIPTION/
{
if
(
/([.][.]|[{},;]) *$/
)
{
print
}
}