mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-11-16 13:18:12 +01:00
8 lines
187 B
Text
8 lines
187 B
Text
|
#!/bin/sh
|
||
|
test -z "$1" && exit 1
|
||
|
echo "/* GENERATED */"
|
||
|
echo "#ifndef cursor_i_h"
|
||
|
echo "#define cursor_i_h"
|
||
|
sed -ne 's/^->"\(\S*\)" \(\d*\)/#define \1 \2/p' < $1 || exit $?
|
||
|
echo "#endif"
|