1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-29 14:30:34 +02:00

* __scm.h (SCM_P): Corrected to run under traditional C.

This commit is contained in:
Jim Blandy 1996-09-11 20:22:58 +00:00
parent 21dc7b4726
commit 72713b2fd7

View file

@ -130,7 +130,7 @@ typedef unsigned long ulong_long;
#ifdef __STDC__
# define SCM_P(x) x
#else
# define SCM_P(x) (x)
# define SCM_P(x) ()
#endif