1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-29 16:30:19 +02:00

* 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.
This commit is contained in:
Rob Browning 2003-03-27 20:09:35 +00:00
parent 5f4df9730d
commit c7ad1f89f7

View file

@ -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)