type: Add missing space for printing complex types.
[cparser] / create_builtins_h.sh
index e9d86eb..f8b560e 100755 (executable)
@@ -1,12 +1,14 @@
 #!/bin/sh
 
+INPUT="$1"
+
 cat <<__EOF__
 /* WARNING: automatically generated file. Generated from builtins/builtins.c */
 
 static const char builtins[] =
 __EOF__
 
-cat builtins/builtins.c | sed -e 's/^/\t\"/g' -e 's/$/\\n\"/g'
+cat "$INPUT" | sed -e "s/^/\\\"/g" -e "s/$/\\\n\\\"/g"
 
 cat << __EOF__
 ;