diff options
author | drh <drh@noemail.net> | 2007-08-21 10:44:15 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2007-08-21 10:44:15 +0000 |
commit | 29278e3dbb1873330cbb6203d934048b281cf2e9 (patch) | |
tree | 5dac1610c2b7b46018e806594f5d2e20a3781cc6 /src/malloc.c | |
parent | a2451e225541319456d28131f661783f16d5799f (diff) | |
download | sqlite-29278e3dbb1873330cbb6203d934048b281cf2e9.tar.gz sqlite-29278e3dbb1873330cbb6203d934048b281cf2e9.zip |
Remove unnecessary #includes of "os.h". New mutex implementations. (CVS 4255)
FossilOrigin-Name: fbbd5bda544ffec4e1b43407b12e546235dc7873
Diffstat (limited to 'src/malloc.c')
-rw-r--r-- | src/malloc.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/malloc.c b/src/malloc.c index adafe3daf..3f9466cb7 100644 --- a/src/malloc.c +++ b/src/malloc.c @@ -12,10 +12,9 @@ ** Memory allocation functions used throughout sqlite. ** ** -** $Id: malloc.c,v 1.6 2007/08/16 10:09:03 danielk1977 Exp $ +** $Id: malloc.c,v 1.7 2007/08/21 10:44:16 drh Exp $ */ #include "sqliteInt.h" -#include "os.h" #include <stdarg.h> #include <ctype.h> |