trawick 01/01/30 18:10:14
Modified: include apr_general.h
Log:
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.
Revision Changes Path
1.51 +0 -4 apr/include/apr_general.h
Index: apr_general.h
===================================================================
RCS file: /home/cvs/apr/include/apr_general.h,v
retrieving revision 1.50
retrieving revision 1.51
diff -u -r1.50 -r1.51
--- apr_general.h 2001/01/28 10:33:51 1.50
+++ apr_general.h 2001/01/31 02:10:14 1.51
@@ -143,10 +143,6 @@
#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
*/