diff options
author | drh <drh@noemail.net> | 2009-03-24 16:27:09 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2009-03-24 16:27:09 +0000 |
commit | 9a6dedaef8767cd2b126b1ba121cbaf1d089b57c (patch) | |
tree | 463f38886f14ef06108ba6aeb8212e3532dd7ad4 /src/test_async.c | |
parent | 1af466eb6bc4653baed027ca962a7aa91709862f (diff) | |
download | sqlite-9a6dedaef8767cd2b126b1ba121cbaf1d089b57c.tar.gz sqlite-9a6dedaef8767cd2b126b1ba121cbaf1d089b57c.zip |
Include sqliteInt.h in test_async.c so that the asynchronous VFS tests
will run even if SQLITE_OS_UNIX is not explicitly defined. (CVS 6379)
FossilOrigin-Name: 29b0d6a3fe519c71a92e2436d7c5860f3f0178ef
Diffstat (limited to 'src/test_async.c')
-rw-r--r-- | src/test_async.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test_async.c b/src/test_async.c index 011a8aa0d..729085072 100644 --- a/src/test_async.c +++ b/src/test_async.c @@ -10,7 +10,7 @@ ** ************************************************************************* ** -** $Id: test_async.c,v 1.49 2009/03/05 04:20:32 shane Exp $ +** $Id: test_async.c,v 1.50 2009/03/24 16:27:09 drh Exp $ ** ** This file contains an example implementation of an asynchronous IO ** backend for SQLite. @@ -109,7 +109,7 @@ #define ENABLE_FILE_LOCKING #ifndef SQLITE_AMALGAMATION -# include "sqlite3.h" +# include "sqliteInt.h" # include <assert.h> # include <string.h> #endif |