remove private declaration of sqlite3_snprintf() in sqliteInt.h as there is already a public declaration in sqlite3.h (CVS 5643)
FossilOrigin-Name: 4113e778be7a1e3e7a67583913e137c66d88a190
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index 0b65dde..26971fb 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -11,7 +11,7 @@
*************************************************************************
** Internal interface definitions for SQLite.
**
-** @(#) $Id: sqliteInt.h,v 1.763 2008/08/29 18:40:15 rse Exp $
+** @(#) $Id: sqliteInt.h,v 1.764 2008/08/29 18:42:30 rse Exp $
*/
#ifndef _SQLITEINT_H_
#define _SQLITEINT_H_
@@ -2243,7 +2243,6 @@
int sqlite3FixExprList(DbFixer*, ExprList*);
int sqlite3FixTriggerStep(DbFixer*, TriggerStep*);
int sqlite3AtoF(const char *z, double*);
-char *sqlite3_snprintf(int,char*,const char*,...);
int sqlite3GetInt32(const char *, int*);
int sqlite3FitsIn64Bits(const char *, int);
int sqlite3Utf16ByteLen(const void *pData, int nChar);