summaryrefslogtreecommitdiff
path: root/libguile/cpp_cnvt.awk
blob: a01ba52a89c3f6181d09a6392c62c7827885d5b9 (plain)
1
2
3
4
5
6
7
# Converts a list of symbols into C expressions which define the symbols
# in Guile.
{
print "#ifdef " $0;
print "scm_sysintern (\""$0"\", SCM_MAKINUM ("$0"));";
print "#endif"
}