summaryrefslogtreecommitdiff
path: root/cord
diff options
context:
space:
mode:
Diffstat (limited to 'cord')
-rw-r--r--cord/cord.am6
-rw-r--r--cord/cordbscs.c5
-rw-r--r--cord/cordprnt.c4
-rw-r--r--cord/cordxtra.c4
-rw-r--r--cord/tests/cordtest.c6
-rw-r--r--cord/tests/de.c2
-rw-r--r--cord/tests/de_win.c2
7 files changed, 15 insertions, 14 deletions
diff --git a/cord/cord.am b/cord/cord.am
index 867cea6d..045f840c 100644
--- a/cord/cord.am
+++ b/cord/cord.am
@@ -35,6 +35,6 @@ EXTRA_DIST += \
cord/tests/de_win.rc
pkginclude_HEADERS += \
- include/cord.h \
- include/cord_pos.h \
- include/ec.h
+ include/gc/cord.h \
+ include/gc/cord_pos.h \
+ include/gc/ec.h
diff --git a/cord/cordbscs.c b/cord/cordbscs.c
index 1b4ec28b..5fd1e9cc 100644
--- a/cord/cordbscs.c
+++ b/cord/cordbscs.c
@@ -18,12 +18,13 @@
# define CORD_BUILD
#endif
-# include "gc.h"
-# include "cord.h"
# include <stdlib.h>
# include <stdio.h>
# include <string.h>
+#include "gc.h"
+#include "gc/cord.h"
+
/* An implementation of the cord primitives. These are the only */
/* Functions that understand the representation. We perform only */
/* minimal checks on arguments to these functions. Out of bounds */
diff --git a/cord/cordprnt.c b/cord/cordprnt.c
index 6095536b..c2ea45ed 100644
--- a/cord/cordprnt.c
+++ b/cord/cordprnt.c
@@ -29,8 +29,8 @@
# define CORD_BUILD
#endif
-#include "cord.h"
-#include "ec.h"
+#include "gc/cord.h"
+#include "gc/ec.h"
#include <stdarg.h>
#include <stdio.h>
diff --git a/cord/cordxtra.c b/cord/cordxtra.c
index b1694c26..3771997e 100644
--- a/cord/cordxtra.c
+++ b/cord/cordxtra.c
@@ -29,8 +29,8 @@
# include <stdlib.h>
# include <stdarg.h>
-# include "cord.h"
-# include "ec.h"
+#include "gc/cord.h"
+#include "gc/ec.h"
# define I_HIDE_POINTERS /* So we get access to allocation lock. */
/* We use this for lazy file reading, */
diff --git a/cord/tests/cordtest.c b/cord/tests/cordtest.c
index a41600c0..16362973 100644
--- a/cord/tests/cordtest.c
+++ b/cord/tests/cordtest.c
@@ -11,14 +11,14 @@
* modified is included with the above copyright notice.
*/
-# include "gc.h" /* For GC_INIT() only */
-# include "cord.h"
-
# include <stdarg.h>
# include <string.h>
# include <stdio.h>
# include <stdlib.h>
+#include "gc.h" /* For GC_INIT() only */
+#include "gc/cord.h"
+
/* This is a very incomplete test of the cord package. It knows about */
/* a few internals of the package (e.g. when C strings are returned) */
/* that real clients shouldn't rely on. */
diff --git a/cord/tests/de.c b/cord/tests/de.c
index 9f554d19..4a30863b 100644
--- a/cord/tests/de.c
+++ b/cord/tests/de.c
@@ -30,7 +30,7 @@
#include <stdlib.h> /* for exit() */
#include "gc.h"
-#include "cord.h"
+#include "gc/cord.h"
#ifdef THINK_C
#define MACINTOSH
diff --git a/cord/tests/de_win.c b/cord/tests/de_win.c
index 82f4c71d..878cae2a 100644
--- a/cord/tests/de_win.c
+++ b/cord/tests/de_win.c
@@ -28,7 +28,7 @@
#include <windows.h>
#include "gc.h"
-#include "cord.h"
+#include "gc/cord.h"
#include "de_cmds.h"
#include "de_win.h"