diff options
author | Tom Lane | 2004-06-12 20:31:43 +0000 |
---|---|---|
committer | Tom Lane | 2004-06-12 20:31:43 +0000 |
commit | 83db69bebc8998c576a8f79f07db14084074004b (patch) | |
tree | 3c779a3536d5b679d4cb12af0416ac1d9841e02f | |
parent | 4832c53e107def9ad2d1f478472dc98024950af1 (diff) |
Now needs to include <ctype.h>.
-rw-r--r-- | contrib/tsearch/query.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/contrib/tsearch/query.c b/contrib/tsearch/query.c index 88b7f7e4cb2..c0e2cae9165 100644 --- a/contrib/tsearch/query.c +++ b/contrib/tsearch/query.c @@ -10,6 +10,7 @@ */ #include "postgres.h" +#include <ctype.h> #include <float.h> #include "access/gist.h" |