aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/md5.c2
-rw-r--r--src/shell.c7
-rw-r--r--src/sqliteInt.h4
3 files changed, 5 insertions, 8 deletions
diff --git a/src/md5.c b/src/md5.c
index a5b279157..72f9ef492 100644
--- a/src/md5.c
+++ b/src/md5.c
@@ -30,7 +30,7 @@
*/
#include <tcl.h>
#include <string.h>
-#include "sqlite.h"
+#include "sqlite3.h"
/*
* If compiled on a machine that doesn't have a 32-bit integer,
diff --git a/src/shell.c b/src/shell.c
index 5c0a37a8f..0c6c9afba 100644
--- a/src/shell.c
+++ b/src/shell.c
@@ -12,12 +12,12 @@
** This file contains code to implement the "sqlite" command line
** utility for accessing SQLite databases.
**
-** $Id: shell.c,v 1.98 2004/05/24 07:04:26 danielk1977 Exp $
+** $Id: shell.c,v 1.99 2004/05/31 18:23:08 drh Exp $
*/
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
-#include "sqlite.h"
+#include "sqlite3.h"
#include <ctype.h>
#if !defined(_WIN32) && !defined(WIN32) && !defined(__MACOS__)
@@ -1349,6 +1349,3 @@ int main(int argc, char **argv){
if( db ) sqlite3_close(db);
return 0;
}
-
-
-
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index 105ac4a68..c0ef83e15 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -11,10 +11,10 @@
*************************************************************************
** Internal interface definitions for SQLite.
**
-** @(#) $Id: sqliteInt.h,v 1.263 2004/05/31 08:55:34 danielk1977 Exp $
+** @(#) $Id: sqliteInt.h,v 1.264 2004/05/31 18:23:09 drh Exp $
*/
#include "config.h"
-#include "sqlite.h"
+#include "sqlite3.h"
#include "hash.h"
#include "parse.h"
#include <stdio.h>