From f0e7b6a43fe131b06ff905884b78819716fa51a0 Mon Sep 17 00:00:00 2001 From: mainzelm Date: Mon, 16 Sep 2002 13:32:09 +0000 Subject: [PATCH] Define NULL ifndef. --- c/srfi/srfi-27.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/c/srfi/srfi-27.c b/c/srfi/srfi-27.c index f864672..2e5eab5 100644 --- a/c/srfi/srfi-27.c +++ b/c/srfi/srfi-27.c @@ -36,6 +36,9 @@ #include "scheme48.h" /* $SCHEME48/c/scheme48.h */ #include +#ifndef NULL + #define NULL 0 +#endif /* maximum value for random_integer: min(S48_MAX_FIXNUM_VALUE, m1) */ #define m_max (((long)1 << 29) - 1)