1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-08 03:22:21 +03:00

Clear a compiler warning by adding a prototype to sqliteInt.h. (CVS 3266)

FossilOrigin-Name: ca541ef3c464c5627596a48ee7f1ec40948cf65d
This commit is contained in:
drh
2006-06-17 10:44:42 +00:00
parent c69cdfd4ec
commit 707205d188
3 changed files with 10 additions and 9 deletions

View File

@@ -11,7 +11,7 @@
*************************************************************************
** Internal interface definitions for SQLite.
**
** @(#) $Id: sqliteInt.h,v 1.509 2006/06/16 21:13:22 drh Exp $
** @(#) $Id: sqliteInt.h,v 1.510 2006/06/17 10:44:42 drh Exp $
*/
#ifndef _SQLITEINT_H_
#define _SQLITEINT_H_
@@ -1825,6 +1825,7 @@ void sqlite3CloseExtensions(sqlite3*);
# define sqlite3VtabRollback(X)
# define sqlite3VtabCommit(X)
#else
void sqlite3VtabClear(Table*);
void sqlite3VtabCodeLock(Parse *pParse, Table *pTab);
int sqlite3VtabSync(sqlite3 *db, int rc);
int sqlite3VtabRollback(sqlite3 *db);