aboutsummaryrefslogtreecommitdiff
path: root/src/sqliteInt.h
diff options
context:
space:
mode:
authormistachkin <mistachkin@noemail.net>2015-04-16 03:37:19 +0000
committermistachkin <mistachkin@noemail.net>2015-04-16 03:37:19 +0000
commit02b0e267fb17fc89cc962f3a8f81e0212ffbd482 (patch)
tree6f151a5ab94a68032cf8cd1c1c0ad73d21fd81f8 /src/sqliteInt.h
parentfb383e9229461dd883852418b6489c091cdce3cd (diff)
downloadsqlite-02b0e267fb17fc89cc962f3a8f81e0212ffbd482.tar.gz
sqlite-02b0e267fb17fc89cc962f3a8f81e0212ffbd482.zip
Make sure the sqlite3DebugPrintf() function is defined for OSTRACE as well.
FossilOrigin-Name: ae5af70427e0df960a54c48cd27a6288500b1f31
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r--src/sqliteInt.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index e22da91e5..769b2afe8 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -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)