diff options
author | Rob Browning <rlb@defaultvalue.org> | 2003-03-27 20:09:35 +0000 |
---|---|---|
committer | Rob Browning <rlb@defaultvalue.org> | 2003-03-27 20:09:35 +0000 |
commit | c7ad1f89f7b8bc5b8052b1c456fe0399504db0ed (patch) | |
tree | 99f97508eb4bd1c20d737a0dc21459f382e17c18 /libguile/random.c | |
parent | 5f4df9730d09d62b65ca25b91b5ff735f8488766 (diff) | |
download | guile-c7ad1f89f7b8bc5b8052b1c456fe0399504db0ed.tar.gz |
* 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.
Diffstat (limited to 'libguile/random.c')
-rw-r--r-- | libguile/random.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) |