]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Fix a problem found while building res_snmp.
authorSean Bright <sean@malleable.com>
Wed, 5 Nov 2008 22:01:22 +0000 (22:01 +0000)
committerSean Bright <sean@malleable.com>
Wed, 5 Nov 2008 22:01:22 +0000 (22:01 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@154919 65c4cc65-6c06-0410-ace0-fbb531ad65f3

include/asterisk.h

index eed328e9d9052079f8762b8c9787c9caedeaa7a3..d83cc3dda64b5d8af1033ff1f98ef81ff100fb63 100644 (file)
@@ -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()