1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 11:40:18 +02:00

Use scm_from_int instead of SCM_MAKINUM.

This commit is contained in:
Marius Vollmer 2004-07-10 13:42:18 +00:00
parent 7f6c5a88cc
commit 0f94980db9

View file

@ -2,6 +2,6 @@
# in Guile.
{
print "#ifdef " $0;
print "scm_c_define (\""$0"\", SCM_MAKINUM ("$0"));";
print "scm_c_define (\""$0"\", scm_from_int ("$0"));";
print "#endif"
}