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

remove a doubled function declaration (the second just is just two lines below) (CVS 5642)

FossilOrigin-Name: e5793110d5e3b8bc4d139fc21f0962ccd48cf10c
This commit is contained in:
rse
2008-08-29 18:40:15 +00:00
parent 8183e339d0
commit d07bc4f58e
3 changed files with 9 additions and 10 deletions

View File

@@ -11,7 +11,7 @@
*************************************************************************
** Internal interface definitions for SQLite.
**
** @(#) $Id: sqliteInt.h,v 1.762 2008/08/29 02:14:03 drh Exp $
** @(#) $Id: sqliteInt.h,v 1.763 2008/08/29 18:40:15 rse Exp $
*/
#ifndef _SQLITEINT_H_
#define _SQLITEINT_H_
@@ -2029,7 +2029,6 @@ int sqlite3IsNaN(double);
void sqlite3VXPrintf(StrAccum*, int, const char*, va_list);
char *sqlite3MPrintf(sqlite3*,const char*, ...);
char *sqlite3MAppendf(sqlite3 *, char *, const char *, ...);
char *sqlite3VMPrintf(sqlite3*,const char*, va_list);
char *sqlite3MAppendf(sqlite3*,char*,const char*,...);
#if defined(SQLITE_TEST) || defined(SQLITE_DEBUG)