aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authordanielk1977 <danielk1977@noemail.net>2009-01-20 16:53:39 +0000
committerdanielk1977 <danielk1977@noemail.net>2009-01-20 16:53:39 +0000
commit78ca0e7eb429d6545284784425549b0c8e4487b0 (patch)
tree0ebbecace0d33b828bf813bc089891eacfefe050 /src/main.c
parent770b3cb76399df3eab0282a0f004aa5006c8ada7 (diff)
downloadsqlite-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/main.c')
-rw-r--r--src/main.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c
index 35f36661b..35272048a 100644
--- a/src/main.c
+++ b/src/main.c
@@ -14,10 +14,9 @@
** other files are for internal use by SQLite and should not be
** accessed by users of the library.
**
-** $Id: main.c,v 1.521 2009/01/10 16:15:22 drh Exp $
+** $Id: main.c,v 1.522 2009/01/20 16:53:41 danielk1977 Exp $
*/
#include "sqliteInt.h"
-#include <ctype.h>
#ifdef SQLITE_ENABLE_FTS3
# include "fts3.h"