Clear a compiler warning by adding a prototype to sqliteInt.h. (CVS 3266)
FossilOrigin-Name: ca541ef3c464c5627596a48ee7f1ec40948cf65d
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index a470260..5a23d09 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -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 @@
# 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);