* Lots of files: New address for FSF.
[bpt/guile.git] / libguile / cpp_cnvt.awk
CommitLineData
67ec3667
GH
1# Converts a list of symbols into C expressions which define the symbols
2# in Guile.
3{
4print "#ifdef " $0;
5print "scm_sysintern (\""$0"\", SCM_MAKINUM ("$0"));";
6print "#endif"
7}