1# Converts a list of symbols into C expressions which define the symbols
2# in Guile.
3{
4print "#ifdef " $0;
5print "scm_c_define (\""$0"\", scm_from_int ("$0"));";
6print "#endif"
7}
8