aboutsummaryrefslogtreecommitdiff
path: root/src/shell.c
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/shell.c
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/shell.c')
-rw-r--r--src/shell.c7
1 files changed, 2 insertions, 5 deletions
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;
}
-
-
-