You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
311 B
11 lines
311 B
#!/bin/sh -e
|
|
|
|
srcdir="${0%/*}"
|
|
dstdir="$1"; shift
|
|
|
|
for n in n32 n64 o32; do
|
|
in="$srcdir/syscallent-$n.h"
|
|
out="$dstdir/syscallent-$n-stub.h"
|
|
sed -r -n '/^#if/,/^#else/ {s/^([^{]*\{[^,]*,[^,]*,[[:space:]]*)[^,[:space:]]+,[[:space:]]*"([^"]+".*)/\1SEN(printargs), "'$n':\2/; s/^\[.*/&/p}' < "$in" > "$out"
|
|
done
|