diff options
author | dan <dan@noemail.net> | 2011-04-04 14:03:58 +0000 |
---|---|---|
committer | dan <dan@noemail.net> | 2011-04-04 14:03:58 +0000 |
commit | 68db57b6917e83ce4525e80d09a21f4436508b07 (patch) | |
tree | bc96012f827bbd0c737ebe30b7b04939263595dc /src | |
parent | 7b94e7f8382b0a29b12e3ee2427331d41a6a0061 (diff) | |
download | sqlite-68db57b6917e83ce4525e80d09a21f4436508b07.tar.gz sqlite-68db57b6917e83ce4525e80d09a21f4436508b07.zip |
Have test_syscall.c include "sqliteInt.h". Otherwise the SQLITE_OS_UNIX symbol may not be defined correctly.
FossilOrigin-Name: fda8fadd837e399d3fab7a9e6894617a5788d679
Diffstat (limited to 'src')
-rw-r--r-- | src/test_syscall.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/test_syscall.c b/src/test_syscall.c index c570b71e8..e3cdcfdfc 100644 --- a/src/test_syscall.c +++ b/src/test_syscall.c @@ -75,6 +75,7 @@ #include <string.h> #include <assert.h> +#include "sqliteInt.h" #ifdef SQLITE_OS_UNIX /* From test1.c */ |