guile/libguile/cpp_cnvt.awk
2001-05-15 14:57:22 +00:00

7 lines
178 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_MAKINUM ("$0"));";
print "#endif"
}