mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-30 20:00:19 +02:00
7 lines
178 B
Awk
7 lines
178 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_MAKINUM ("$0"));";
|
|
print "#endif"
|
|
}
|