diff options
author | danielk1977 <danielk1977@noemail.net> | 2009-01-20 16:53:39 +0000 |
---|---|---|
committer | danielk1977 <danielk1977@noemail.net> | 2009-01-20 16:53:39 +0000 |
commit | 78ca0e7eb429d6545284784425549b0c8e4487b0 (patch) | |
tree | 0ebbecace0d33b828bf813bc089891eacfefe050 /src/malloc.c | |
parent | 770b3cb76399df3eab0282a0f004aa5006c8ada7 (diff) | |
download | sqlite-78ca0e7eb429d6545284784425549b0c8e4487b0.tar.gz sqlite-78ca0e7eb429d6545284784425549b0c8e4487b0.zip |
When not compiling for an EBCDIC system, use built-in alternatives to the tolowe
r(), toupper() and other ctype.h library functions. Ticket #3597. (CVS 6196)
FossilOrigin-Name: 1041abd6784d283bebf646c54e93599522f7889d
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 f4fc0d325..a92fae06b 100644 --- a/src/malloc.c +++ b/src/malloc.c @@ -12,11 +12,10 @@ ** ** Memory allocation functions used throughout sqlite. ** -** $Id: malloc.c,v 1.53 2008/12/16 17:20:38 shane Exp $ +** $Id: malloc.c,v 1.54 2009/01/20 16:53:41 danielk1977 Exp $ */ #include "sqliteInt.h" #include <stdarg.h> -#include <ctype.h> /* ** This routine runs when the memory allocator sees that the |