1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-10 01:02:56 +03:00

Make sure the sqlite3DebugPrintf() function is defined for OSTRACE as well.

FossilOrigin-Name: ae5af70427e0df960a54c48cd27a6288500b1f31
This commit is contained in:
mistachkin
2015-04-16 03:37:19 +00:00
parent fb383e9229
commit 02b0e267fb
5 changed files with 12 additions and 12 deletions

View File

@@ -3146,7 +3146,7 @@ void sqlite3XPrintf(StrAccum*, u32, const char*, ...);
char *sqlite3MPrintf(sqlite3*,const char*, ...);
char *sqlite3VMPrintf(sqlite3*,const char*, va_list);
char *sqlite3MAppendf(sqlite3*,char*,const char*,...);
#if defined(SQLITE_TEST) || defined(SQLITE_DEBUG)
#if defined(SQLITE_DEBUG) || defined(SQLITE_HAVE_OS_TRACE)
void sqlite3DebugPrintf(const char*, ...);
#endif
#if defined(SQLITE_TEST)