summaryrefslogtreecommitdiff
path: root/libguile/cpp_cnvt.awk
blob: 128136fa247652ba8eb951e9375124e5595e27f2 (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_c_define (\""$0"\", SCM_MAKINUM ("$0"));";
print "#endif"
}