From: Sean Bright Date: Wed, 5 Nov 2008 22:01:22 +0000 (+0000) Subject: Fix a problem found while building res_snmp. X-Git-Tag: 1.6.2.0-beta1~929 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7add06a4d64832af9ae402faf59a3d9b6ac89c16;p=thirdparty%2Fasterisk.git Fix a problem found while building res_snmp. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@154919 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/include/asterisk.h b/include/asterisk.h index eed328e9d9..d83cc3dda6 100644 --- a/include/asterisk.h +++ b/include/asterisk.h @@ -176,6 +176,14 @@ struct ast_module; struct ast_variable; struct ast_str; +#ifdef bzero +#undef bzero +#endif + +#ifdef bcopy +#undef bcopy +#endif + #define bzero 0x__dont_use_bzero__use_memset_instead"" #define bcopy 0x__dont_use_bcopy__use_memmove_instead()