From 72713b2fd7ae4d2a8e8bac9716f53ff6194c8898 Mon Sep 17 00:00:00 2001 From: Jim Blandy Date: Wed, 11 Sep 1996 20:22:58 +0000 Subject: [PATCH] * __scm.h (SCM_P): Corrected to run under traditional C. --- libguile/__scm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libguile/__scm.h b/libguile/__scm.h index 7322a69fb..584dad4bd 100644 --- a/libguile/__scm.h +++ b/libguile/__scm.h @@ -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