8 lines
179 B
Awk
8 lines
179 B
Awk
|
|
# 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"
|
||
|
|
}
|