aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk.h
diff options
context:
space:
mode:
authorseanbright <seanbright@f38db490-d61c-443f-a65b-d21fe96a405b>2008-11-05 22:01:22 +0000
committerseanbright <seanbright@f38db490-d61c-443f-a65b-d21fe96a405b>2008-11-05 22:01:22 +0000
commit8b5c11ae52a7ba97fb413eaab466267d061874c6 (patch)
treef3f47e3f1fdeb4b427687b4cb476cff9c0704acf /include/asterisk.h
parent7c5853a25d19756bdd76c873582c094122d1642d (diff)
Fix a problem found while building res_snmp.
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@154919 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include/asterisk.h')
-rw-r--r--include/asterisk.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/asterisk.h b/include/asterisk.h
index eed328e9d..d83cc3dda 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()