provides this if necessary.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@101704
13f79535-47bb-0310-9956-
ffa450edef68
/* number of buckets in cache hash apr_table_t */
#define BUCKETS 256
-#if !APR_HAVE_STRDUP
-char *strdup (const char *str)
-{
- char *dup;
-
- if (!(dup = (char *) malloc(strlen(str) + 1)))
- return NULL;
- dup = strcpy(dup, str);
-
- return dup;
-}
-#endif
-
/*
* struct nsrec - record of nameservice for cache linked list
*