Change the name of the include file to "sqlite3.h". The names of the shell
command and static library become "sqlite3" and "libsqlite3.a". (CVS 1510)
FossilOrigin-Name: 4c37b6d2b78e88e2a9dfed4d764caeb0f626f92e
diff --git a/src/md5.c b/src/md5.c
index a5b2791..72f9ef4 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 5c0a37a..0c6c9af 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 @@
if( db ) sqlite3_close(db);
return 0;
}
-
-
-
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index 105ac4a..c0ef83e 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>