diff options
author | trawick <trawick@13f79535-47bb-0310-9956-ffa450edef68> | 2000-04-16 00:11:01 +0000 |
---|---|---|
committer | trawick <trawick@13f79535-47bb-0310-9956-ffa450edef68> | 2000-04-16 00:11:01 +0000 |
commit | 408e9295d52456351bd1a67c8435380ee32b47aa (patch) | |
tree | 4162e2d37e7668929b0df9c14b22801fa90f7f07 | |
parent | 9ea0e9b011116be21e4ea36ce82a691600dff565 (diff) | |
download | libapr-408e9295d52456351bd1a67c8435380ee32b47aa.tar.gz |
Include ctype.h (if we have it) to avoid compile warning.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@59867 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | lib/apr_cpystrn.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/apr_cpystrn.c b/lib/apr_cpystrn.c index 952904a90..5d907f98e 100644 --- a/lib/apr_cpystrn.c +++ b/lib/apr_cpystrn.c @@ -61,6 +61,9 @@ #if HAVE_STRING_H #include <string.h> #endif +#if HAVE_CTYPE_H +#include <ctype.h> +#endif /* * Apache's "replacement" for the strncpy() function. We roll our |