diff options
author | drh <drh@noemail.net> | 2001-03-20 22:05:00 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2001-03-20 22:05:00 +0000 |
commit | 0353cedda4851e4d653b70421ed7445f62a2688a (patch) | |
tree | 1457f2c35c37f81a537a0ab5d29dd31388889d7e /src/sqliteInt.h | |
parent | 8721f004853741ab3496cdb7aecef9ec57256bb6 (diff) | |
download | sqlite-0353cedda4851e4d653b70421ed7445f62a2688a.tar.gz sqlite-0353cedda4851e4d653b70421ed7445f62a2688a.zip |
Enhancements to the DELETE command (CVS 194)
FossilOrigin-Name: daea156e2430762e683ff5460f9f8bb3204ae168
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 22f49b405..371eafabd 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -23,7 +23,7 @@ ************************************************************************* ** Internal interface definitions for SQLite. ** -** @(#) $Id: sqliteInt.h,v 1.36 2001/01/20 19:52:50 drh Exp $ +** @(#) $Id: sqliteInt.h,v 1.37 2001/03/20 22:05:00 drh Exp $ */ #include "sqlite.h" #include "dbbe.h" @@ -427,7 +427,4 @@ Vdbe *sqliteGetVdbe(Parse*); int sqliteRandomByte(void); int sqliteRandomInteger(void); void sqliteRandomName(char*,char*); -int sqliteDbbeOpenTempFile(const char*, Dbbe*, FILE**); -void sqliteDbbeCloseTempFile(Dbbe*, FILE*); -void sqliteDbbeCloseAllTempFiles(Dbbe*); char *sqliteDbbeNameToFile(const char*,const char*,const char*); |