summaryrefslogtreecommitdiff
path: root/libguile/coop.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/coop.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/coop.c')
-rw-r--r--libguile/coop.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libguile/coop.c b/libguile/coop.c
index 5635c3bb1..a79c416f0 100644
--- a/libguile/coop.c
+++ b/libguile/coop.c
@@ -40,7 +40,7 @@
* If you do not wish that, delete this exception notice. */
-/* $Id: coop.c,v 1.24 2000-04-10 12:38:19 mdj Exp $ */
+/* $Id: coop.c,v 1.25 2000-04-21 14:16:30 mdj Exp $ */
/* Cooperative thread library, based on QuickThreads */
@@ -50,8 +50,8 @@
#include <errno.h>
-#include <qt.h>
-#include "eval.h"
+#include "qt/qt.h"
+#include "libguile/eval.h"
/* #define COOP_STKSIZE (0x10000) */
#define COOP_STKSIZE (scm_eval_stack)