diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/md5.c | 2 | ||||
-rw-r--r-- | src/shell.c | 7 | ||||
-rw-r--r-- | src/sqliteInt.h | 4 |
3 files changed, 5 insertions, 8 deletions
@@ -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> |