diff options
author | drh <drh@noemail.net> | 2007-08-28 16:34:42 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2007-08-28 16:34:42 +0000 |
commit | 437b9013713bf27ad21776b100c6c4e95d8bdbe5 (patch) | |
tree | 50d90f11b69c7ac695d022d065fd9c17d94aeea0 /src/sqliteInt.h | |
parent | 9da9d96242b7d43383a1f193eb2add750cfd4e29 (diff) | |
download | sqlite-437b9013713bf27ad21776b100c6c4e95d8bdbe5.tar.gz sqlite-437b9013713bf27ad21776b100c6c4e95d8bdbe5.zip |
Break up the mutex implementation into separate source files, one
each for unix, w32, and os2. (CVS 4312)
FossilOrigin-Name: fc5cd71aef5ac194f51d73350d773d532020967e
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index bc0e8aab1..ef69cb639 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -11,7 +11,7 @@ ************************************************************************* ** Internal interface definitions for SQLite. ** -** @(#) $Id: sqliteInt.h,v 1.603 2007/08/28 02:27:52 drh Exp $ +** @(#) $Id: sqliteInt.h,v 1.604 2007/08/28 16:34:43 drh Exp $ */ #ifndef _SQLITEINT_H_ #define _SQLITEINT_H_ @@ -73,6 +73,7 @@ #include "sqlite3.h" #include "hash.h" #include "parse.h" +#include "mutex.h" #include <stdio.h> #include <stdlib.h> #include <string.h> |