1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 03:40:34 +02:00
guile/libguile/cpp_cnvt.awk
2004-07-10 13:42:18 +00:00

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