guile/libguile/cpp_cnvt.awk
2004-07-10 13:42:18 +00:00

7 lines
179 B
Awk

# Converts a list of symbols into C expressions which define the symbols
# in Guile.
{
print "#ifdef " $0;
print "scm_c_define (\""$0"\", scm_from_int ("$0"));";
print "#endif"
}