aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2004-11-01 21:54:12 +0000
committerRoger Dingledine <arma@torproject.org>2004-11-01 21:54:12 +0000
commit037fba75956160fb89218ffca6cc075328e9c3a6 (patch)
treea2fc8aa47afc097a1ade86e8df0f989180f68ed2 /src
parentb3907865822a932a2cf0b3dd177a6831e1df0787 (diff)
downloadtor-037fba75956160fb89218ffca6cc075328e9c3a6.tar
tor-037fba75956160fb89218ffca6cc075328e9c3a6.tar.gz
util.c needs ctype.h for tolower and isspace
svn:r2642
Diffstat (limited to 'src')
-rw-r--r--src/common/util.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/common/util.c b/src/common/util.c
index 45639e342..243c5393b 100644
--- a/src/common/util.c
+++ b/src/common/util.c
@@ -23,6 +23,9 @@
#include <windows.h>
#endif
+#ifdef HAVE_CTYPE_H
+#include <ctype.h>
+#endif
#include <stdlib.h>
#include <stdio.h>
#include <string.h>