1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-14 00:22:38 +03:00

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
This commit is contained in:
drh
2009-03-24 16:27:09 +00:00
parent 1af466eb6b
commit 9a6dedaef8
3 changed files with 9 additions and 9 deletions

View File

@@ -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