aboutsummaryrefslogtreecommitdiffstats
path: root/db1-ast/btree
diff options
context:
space:
mode:
Diffstat (limited to 'db1-ast/btree')
-rw-r--r--db1-ast/btree/bt_close.c2
-rw-r--r--db1-ast/btree/bt_conv.c2
-rw-r--r--db1-ast/btree/bt_debug.c2
-rw-r--r--db1-ast/btree/bt_delete.c2
-rw-r--r--db1-ast/btree/bt_get.c2
-rw-r--r--db1-ast/btree/bt_open.c2
-rw-r--r--db1-ast/btree/bt_overflow.c2
-rw-r--r--db1-ast/btree/bt_page.c2
-rw-r--r--db1-ast/btree/bt_put.c2
-rw-r--r--db1-ast/btree/bt_search.c2
-rw-r--r--db1-ast/btree/bt_seq.c2
-rw-r--r--db1-ast/btree/bt_split.c2
-rw-r--r--db1-ast/btree/bt_utils.c2
13 files changed, 13 insertions, 13 deletions
diff --git a/db1-ast/btree/bt_close.c b/db1-ast/btree/bt_close.c
index 27f9ab660..67a6e5340 100644
--- a/db1-ast/btree/bt_close.c
+++ b/db1-ast/btree/bt_close.c
@@ -46,7 +46,7 @@ static char sccsid[] = "@(#)bt_close.c 8.7 (Berkeley) 8/17/94";
#include <string.h>
#include <unistd.h>
-#include <db.h>
+#include "../include/db.h"
#include "btree.h"
static int bt_meta __P((BTREE *));
diff --git a/db1-ast/btree/bt_conv.c b/db1-ast/btree/bt_conv.c
index 1cb208b14..d2ebdc57b 100644
--- a/db1-ast/btree/bt_conv.c
+++ b/db1-ast/btree/bt_conv.c
@@ -42,7 +42,7 @@ static char sccsid[] = "@(#)bt_conv.c 8.5 (Berkeley) 8/17/94";
#include <stdio.h>
-#include <db.h>
+#include "../include/db.h"
#include "btree.h"
static void mswap __P((PAGE *));
diff --git a/db1-ast/btree/bt_debug.c b/db1-ast/btree/bt_debug.c
index 443f2bf99..e035851a8 100644
--- a/db1-ast/btree/bt_debug.c
+++ b/db1-ast/btree/bt_debug.c
@@ -45,7 +45,7 @@ static char sccsid[] = "@(#)bt_debug.c 8.5 (Berkeley) 8/17/94";
#include <stdlib.h>
#include <string.h>
-#include <db.h>
+#include "../include/db.h"
#include "btree.h"
/*
diff --git a/db1-ast/btree/bt_delete.c b/db1-ast/btree/bt_delete.c
index 9908a7c3e..e816c432a 100644
--- a/db1-ast/btree/bt_delete.c
+++ b/db1-ast/btree/bt_delete.c
@@ -44,7 +44,7 @@ static char sccsid[] = "@(#)bt_delete.c 8.13 (Berkeley) 7/28/94";
#include <stdio.h>
#include <string.h>
-#include <db.h>
+#include "../include/db.h"
#include "btree.h"
static int __bt_bdelete __P((BTREE *, const DBT *));
diff --git a/db1-ast/btree/bt_get.c b/db1-ast/btree/bt_get.c
index 74824c73f..b5e18022c 100644
--- a/db1-ast/btree/bt_get.c
+++ b/db1-ast/btree/bt_get.c
@@ -44,7 +44,7 @@ static char sccsid[] = "@(#)bt_get.c 8.6 (Berkeley) 7/20/94";
#include <stddef.h>
#include <stdio.h>
-#include <db.h>
+#include "../include/db.h"
#include "btree.h"
/*
diff --git a/db1-ast/btree/bt_open.c b/db1-ast/btree/bt_open.c
index 8c2f48ebf..5d40e4593 100644
--- a/db1-ast/btree/bt_open.c
+++ b/db1-ast/btree/bt_open.c
@@ -58,7 +58,7 @@ static char sccsid[] = "@(#)bt_open.c 8.10 (Berkeley) 8/17/94";
#include <string.h>
#include <unistd.h>
-#include <db.h>
+#include "../include/db.h"
#include "btree.h"
#ifdef DEBUG
diff --git a/db1-ast/btree/bt_overflow.c b/db1-ast/btree/bt_overflow.c
index b28b8e047..d8f310d91 100644
--- a/db1-ast/btree/bt_overflow.c
+++ b/db1-ast/btree/bt_overflow.c
@@ -44,7 +44,7 @@ static char sccsid[] = "@(#)bt_overflow.c 8.5 (Berkeley) 7/16/94";
#include <stdlib.h>
#include <string.h>
-#include <db.h>
+#include "../include/db.h"
#include "btree.h"
/*
diff --git a/db1-ast/btree/bt_page.c b/db1-ast/btree/bt_page.c
index ce9cbf15a..e77a1d6b5 100644
--- a/db1-ast/btree/bt_page.c
+++ b/db1-ast/btree/bt_page.c
@@ -39,7 +39,7 @@ static char sccsid[] = "@(#)bt_page.c 8.3 (Berkeley) 7/14/94";
#include <stdio.h>
-#include <db.h>
+#include "../include/db.h"
#include "btree.h"
/*
diff --git a/db1-ast/btree/bt_put.c b/db1-ast/btree/bt_put.c
index 3f3807531..aeb0bb16c 100644
--- a/db1-ast/btree/bt_put.c
+++ b/db1-ast/btree/bt_put.c
@@ -45,7 +45,7 @@ static char sccsid[] = "@(#)bt_put.c 8.8 (Berkeley) 7/26/94";
#include <stdlib.h>
#include <string.h>
-#include <db.h>
+#include "../include/db.h"
#include "btree.h"
static EPG *bt_fast __P((BTREE *, const DBT *, const DBT *, int *));
diff --git a/db1-ast/btree/bt_search.c b/db1-ast/btree/bt_search.c
index 485afcbbf..623f43949 100644
--- a/db1-ast/btree/bt_search.c
+++ b/db1-ast/btree/bt_search.c
@@ -42,7 +42,7 @@ static char sccsid[] = "@(#)bt_search.c 8.8 (Berkeley) 7/31/94";
#include <stdio.h>
-#include <db.h>
+#include "../include/db.h"
#include "btree.h"
static int __bt_snext __P((BTREE *, PAGE *, const DBT *, int *));
diff --git a/db1-ast/btree/bt_seq.c b/db1-ast/btree/bt_seq.c
index 5ba7b0301..3f1724274 100644
--- a/db1-ast/btree/bt_seq.c
+++ b/db1-ast/btree/bt_seq.c
@@ -45,7 +45,7 @@ static char sccsid[] = "@(#)bt_seq.c 8.7 (Berkeley) 7/20/94";
#include <stdio.h>
#include <stdlib.h>
-#include <db.h>
+#include "../include/db.h"
#include "btree.h"
static int __bt_first __P((BTREE *, const DBT *, EPG *, int *));
diff --git a/db1-ast/btree/bt_split.c b/db1-ast/btree/bt_split.c
index e6bd540b4..8fede1e45 100644
--- a/db1-ast/btree/bt_split.c
+++ b/db1-ast/btree/bt_split.c
@@ -45,7 +45,7 @@ static char sccsid[] = "@(#)bt_split.c 8.9 (Berkeley) 7/26/94";
#include <stdlib.h>
#include <string.h>
-#include <db.h>
+#include "../include/db.h"
#include "btree.h"
static int bt_broot __P((BTREE *, PAGE *, PAGE *, PAGE *));
diff --git a/db1-ast/btree/bt_utils.c b/db1-ast/btree/bt_utils.c
index 1416c7862..2ecb5e678 100644
--- a/db1-ast/btree/bt_utils.c
+++ b/db1-ast/btree/bt_utils.c
@@ -44,7 +44,7 @@ static char sccsid[] = "@(#)bt_utils.c 8.8 (Berkeley) 7/20/94";
#include <stdlib.h>
#include <string.h>
-#include <db.h>
+#include "../include/db.h"
#include "btree.h"
/*