aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2004-05-31 18:23:07 +0000
committerdrh <drh@noemail.net>2004-05-31 18:23:07 +0000
commit1d482dd9176751fb36e977efab864bc807e4d21f (patch)
tree3993ece75697a2a6dd62f37c881d6b52b12ff662 /src
parent75d82cc4bfd02b3d7cf2f0468d97a7c3485701cc (diff)
downloadsqlite-1d482dd9176751fb36e977efab864bc807e4d21f.tar.gz
sqlite-1d482dd9176751fb36e977efab864bc807e4d21f.zip
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
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>