diff options
author | rbb <rbb@13f79535-47bb-0310-9956-ffa450edef68> | 2000-12-21 14:51:34 +0000 |
---|---|---|
committer | rbb <rbb@13f79535-47bb-0310-9956-ffa450edef68> | 2000-12-21 14:51:34 +0000 |
commit | bb056435d7d22525a4bcb2342e4710af46199498 (patch) | |
tree | 9efd5d27bf885c9d6ee76e3b559ab51ca8c9e670 /strings | |
parent | f65aca60b47f23f11c6270370975641ea9fb0678 (diff) | |
download | libapr-bb056435d7d22525a4bcb2342e4710af46199498.tar.gz |
Cleanup a group of apr compil warnings on Solaris
Submitted by: Dale Ghent <daleg@elemental.org>
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@60978 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'strings')
-rw-r--r-- | strings/apr_strings.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/strings/apr_strings.c b/strings/apr_strings.c index a9e12db5a..628c73ab1 100644 --- a/strings/apr_strings.c +++ b/strings/apr_strings.c @@ -59,6 +59,9 @@ #ifdef HAVE_STDDEF_H #include <stddef.h> /* NULL */ #endif +#ifdef HAVE_STRINGS_H +#include <strings.h> +#endif APR_DECLARE(char *) apr_pstrdup(apr_pool_t *a, const char *s) { |