]> git.donarmstrong.com Git - lilypond.git/blob - guile18/libguile/cpp_cnvt.awk
New upstream version 2.19.65
[lilypond.git] / guile18 / libguile / cpp_cnvt.awk
1 # Converts a list of symbols into C expressions which define the symbols
2 # in Guile.
3 {
4 print "#ifdef " $0;
5 print "scm_c_define (\""$0"\", scm_from_int ("$0"));";
6 print "#endif"
7 }