mirror of
https://github.com/oasislinux/oasis.git
synced 2026-02-05 11:33:57 +01:00
12 lines
169 B
Awk
12 lines
169 B
Awk
BEGIN {
|
|
FS = "\\(|\\)|, "
|
|
OFS = ", "
|
|
}
|
|
|
|
$1 == "MPERS_PRINTER_DECL" {
|
|
printf "extern %s %s(%s", $2, $3, $4
|
|
for (i = 5; i < NF; ++i)
|
|
printf ", %s", $i
|
|
print ");"
|
|
}
|