From c7ad1f89f7b8bc5b8052b1c456fe0399504db0ed Mon Sep 17 00:00:00 2001 From: Rob Browning Date: Thu, 27 Mar 2003 20:09:35 +0000 Subject: [PATCH] * random.c: fix various preprocessor usages of new public symbols to expect 0 or 1 values rather than 1 or undefined. i.e. change #ifdef to #if, etc. --- libguile/random.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libguile/random.c b/libguile/random.c index 660efe91e..39a2c3f94 100644 --- a/libguile/random.c +++ b/libguile/random.c @@ -458,7 +458,7 @@ SCM_DEFINE (scm_random_normal, "random:normal", 0, 1, 0, } #undef FUNC_NAME -#ifdef SCM_HAVE_ARRAYS +#if SCM_HAVE_ARRAYS static void vector_scale (SCM v, double c)