summaryrefslogtreecommitdiff
path: root/libguile/strorder.c
diff options
context:
space:
mode:
authorMikael Djurfeldt <djurfeldt@nada.kth.se>2000-04-21 14:16:44 +0000
committerMikael Djurfeldt <djurfeldt@nada.kth.se>2000-04-21 14:16:44 +0000
commita0599745350ad81ec4133991049cb0dba3a9c2cd (patch)
tree082a61bee36c7952266ebec608affcbbd65f1d1d /libguile/strorder.c
parente415cb066601d757beb588675baa0b268926a54e (diff)
downloadguile-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/strorder.c')
-rw-r--r--libguile/strorder.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/libguile/strorder.c b/libguile/strorder.c
index edaff6dc2..402732fe5 100644
--- a/libguile/strorder.c
+++ b/libguile/strorder.c
@@ -44,11 +44,11 @@
#include <stdio.h>
-#include "_scm.h"
-#include "chars.h"
+#include "libguile/_scm.h"
+#include "libguile/chars.h"
-#include "validate.h"
-#include "strorder.h"
+#include "libguile/validate.h"
+#include "libguile/strorder.h"
SCM_DEFINE1 (scm_string_equal_p, "string=?", scm_tc7_rpsubr,
@@ -233,7 +233,7 @@ SCM_DEFINE1 (scm_string_ci_geq_p, "string-ci>=?", scm_tc7_rpsubr,
void
scm_init_strorder ()
{
-#include "strorder.x"
+#include "libguile/strorder.x"
}