parser: Remove the unused attribute alignment from struct declaration_specifiers_t.
[cparser] / create_builtins_h.sh
1 #!/bin/sh
2
3 INPUT="$1"
4
5 cat <<__EOF__
6 /* WARNING: automatically generated file. Generated from builtins/builtins.c */
7
8 static const char builtins[] =
9 __EOF__
10
11 cat "$INPUT" | sed -e "s/^/\\\"/g" -e "s/$/\\\n\\\"/g"
12
13 cat << __EOF__
14 ;
15 __EOF__