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/hashtab.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/hashtab.c')
-rw-r--r-- | libguile/hashtab.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/libguile/hashtab.c b/libguile/hashtab.c index 66b2c6621..2f6a6f68d 100644 --- a/libguile/hashtab.c +++ b/libguile/hashtab.c @@ -45,14 +45,14 @@ #include <stdio.h> -#include "_scm.h" -#include "alist.h" -#include "hash.h" -#include "eval.h" -#include "vectors.h" - -#include "validate.h" -#include "hashtab.h" +#include "libguile/_scm.h" +#include "libguile/alist.h" +#include "libguile/hash.h" +#include "libguile/eval.h" +#include "libguile/vectors.h" + +#include "libguile/validate.h" +#include "libguile/hashtab.h" @@ -563,7 +563,7 @@ scm_internal_hash_fold (SCM (*fn) (), void *closure, SCM init, SCM table) void scm_init_hashtab () { -#include "hashtab.x" +#include "libguile/hashtab.x" } /* |