diff options
author | drh <drh@noemail.net> | 2010-06-03 12:09:52 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2010-06-03 12:09:52 +0000 |
commit | f83dc1ef3fda9c43c960e5e747f6c80322f8f3bf (patch) | |
tree | ae6b85e486d8b63fea4f520b7f07896761c8aba1 /src/sqliteInt.h | |
parent | 1f55e28d2a523bfb43d28a3baf553fec00dac77d (diff) | |
download | sqlite-f83dc1ef3fda9c43c960e5e747f6c80322f8f3bf.tar.gz sqlite-f83dc1ef3fda9c43c960e5e747f6c80322f8f3bf.zip |
Remove global variables when compiled with SQLITE_OMIT_WSD
FossilOrigin-Name: dd10a547f10364058025c48b28d8fd240bf46aff
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index eed2b10ed..851cb273e 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -2886,8 +2886,10 @@ extern const unsigned char sqlite3UpperToLower[]; extern const unsigned char sqlite3CtypeMap[]; extern SQLITE_WSD struct Sqlite3Config sqlite3Config; extern SQLITE_WSD FuncDefHash sqlite3GlobalFunctions; +#ifndef SQLITE_OMIT_WSD extern int sqlite3PendingByte; #endif +#endif void sqlite3RootPageMoved(Db*, int, int); void sqlite3Reindex(Parse*, Token*, Token*); void sqlite3AlterFunctions(void); |