summaryrefslogtreecommitdiff
path: root/include/apr_general.h
diff options
context:
space:
mode:
authortrawick <trawick@13f79535-47bb-0310-9956-ffa450edef68>2001-01-31 02:10:14 +0000
committertrawick <trawick@13f79535-47bb-0310-9956-ffa450edef68>2001-01-31 02:10:14 +0000
commit6bc5adf682ee356ac8e03e9e45776e7bf1e49e44 (patch)
tree3181e699d94b1458294ff40273ec2f83366e7227 /include/apr_general.h
parent2581ba1ee54f295f0ae192917ac6131a0a2c2a99 (diff)
downloadlibapr-6bc5adf682ee356ac8e03e9e45776e7bf1e49e44.tar.gz
get rid of the bzero() macro which we spit out on platforms
where we didn't think bzero() was implemented; it turns out that on SVR4 it is implemented but we spit out the macro anyway and clashed with a system header file As APR doesn't need to guarantee the existence of bzero(), the macro is gone. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61172 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/apr_general.h')
-rw-r--r--include/apr_general.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/include/apr_general.h b/include/apr_general.h
index 3c9def4aa..8db5f67b5 100644
--- a/include/apr_general.h
+++ b/include/apr_general.h
@@ -143,10 +143,6 @@ int strncasecmp(const char *a, const char *b, size_t n);
#define memmove(a,b,c) bcopy(b,a,c)
#endif
-#if (!APR_HAVE_BZERO)
-#define bzero(a,b) memset(a,0,b)
-#endif
-
/**
* @package APR Random Functions
*/