diff options
author | Tom Lane | 2004-06-12 20:31:48 +0000 |
---|---|---|
committer | Tom Lane | 2004-06-12 20:31:48 +0000 |
commit | 2e11ef8be8a33b28f33ae1b56421c2bf0683daa7 (patch) | |
tree | 50b22719ac0cb4a8518200d7876f27ff1ea65aad | |
parent | d7f5817a9bea00ee806c75d4d1fa045dcdaad9b4 (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" |