diff options
author | drh <drh@noemail.net> | 2014-03-05 19:36:52 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2014-03-05 19:36:52 +0000 |
commit | dc90d3d8af0c560869ce2dd1ed576ff6745ac58c (patch) | |
tree | 13411939745b3f9da38e92d6ccd7a340d31e1ece /ext/misc/spellfix.c | |
parent | a6eaa635cc1cc1d00619fc51aed9ce585c2a68b5 (diff) | |
download | sqlite-dc90d3d8af0c560869ce2dd1ed576ff6745ac58c.tar.gz sqlite-dc90d3d8af0c560869ce2dd1ed576ff6745ac58c.zip |
Always include the ctype.h header in the spellfix.c extension.
FossilOrigin-Name: bfd75f471a607b442d8cd8a7070491a158e8fb1a
Diffstat (limited to 'ext/misc/spellfix.c')
-rw-r--r-- | ext/misc/spellfix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/misc/spellfix.c b/ext/misc/spellfix.c index d33740bf6..a62d24c59 100644 --- a/ext/misc/spellfix.c +++ b/ext/misc/spellfix.c @@ -26,8 +26,8 @@ SQLITE_EXTENSION_INIT1 # define NEVER(X) 0 typedef unsigned char u8; typedef unsigned short u16; -# include <ctype.h> #endif +#include <ctype.h> #ifndef SQLITE_OMIT_VIRTUALTABLE |