diff options
author | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 2000-04-21 14:16:44 +0000 |
---|---|---|
committer | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 2000-04-21 14:16:44 +0000 |
commit | a0599745350ad81ec4133991049cb0dba3a9c2cd (patch) | |
tree | 082a61bee36c7952266ebec608affcbbd65f1d1d /libguile/random.c | |
parent | e415cb066601d757beb588675baa0b268926a54e (diff) | |
download | guile-a0599745350ad81ec4133991049cb0dba3a9c2cd.tar.gz |
* Makefile.am (DEFS): Added. automake adds -I options to DEFS,
and we don't want that.
(INCLUDES): Removed all -I options except for the root source
directory and the root build directory.
* *.*: Change includes so that they always use the "prefixes"
libguile/, qt/, guile-readline/, or libltdl/.
(Thanks to Tim Mooney.)
Diffstat (limited to 'libguile/random.c')
-rw-r--r-- | libguile/random.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/libguile/random.c b/libguile/random.c index 825452e99..d69b023cb 100644 --- a/libguile/random.c +++ b/libguile/random.c @@ -44,18 +44,18 @@ /* Author: Mikael Djurfeldt <djurfeldt@nada.kth.se> */ -#include "_scm.h" +#include "libguile/_scm.h" #include <stdio.h> #include <math.h> -#include "smob.h" -#include "numbers.h" -#include "feature.h" -#include "strings.h" -#include "vectors.h" +#include "libguile/smob.h" +#include "libguile/numbers.h" +#include "libguile/feature.h" +#include "libguile/strings.h" +#include "libguile/vectors.h" -#include "validate.h" -#include "random.h" +#include "libguile/validate.h" +#include "libguile/random.h" /* @@ -585,7 +585,7 @@ scm_init_random () for (i = m >> 1; i < m; ++i) scm_masktab[i] = m - 1; -#include "random.x" +#include "libguile/random.x" /* Check that the assumptions about bits per bignum digit are correct. */ #if SIZEOF_INT == 4 |