1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-05 15:55:57 +03:00

Fix an out-of-order function declaration when compiled with MEMDEBUG.

FossilOrigin-Name: 6d31557837fef2c8fad6f009ac6dd97dd4af0a54
This commit is contained in:
mistachkin
2012-12-04 00:37:58 +00:00
parent 5f53aac2e7
commit a359b5eea4
3 changed files with 9 additions and 9 deletions

View File

@@ -720,8 +720,8 @@ static int test_memdebug_settitle(
#ifdef SQLITE_MEMDEBUG
{
const char *zTitle;
zTitle = Tcl_GetString(objv[1]);
extern int sqlite3MemdebugSettitle(const char*);
zTitle = Tcl_GetString(objv[1]);
sqlite3MemdebugSettitle(zTitle);
}
#endif