From 6bc5adf682ee356ac8e03e9e45776e7bf1e49e44 Mon Sep 17 00:00:00 2001 From: trawick Date: Wed, 31 Jan 2001 02:10:14 +0000 Subject: 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 --- include/apr_general.h | 4 ---- 1 file changed, 4 deletions(-) (limited to 'include/apr_general.h') 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 */ -- cgit v1.2.1