Merged revisions 154919 via svnmerge from

https://origsvn.digium.com/svn/asterisk/trunk

........
  r154919 | seanbright | 2008-11-05 17:01:22 -0500 (Wed, 05 Nov 2008) | 2 lines
  
  Fix a problem found while building res_snmp.
........


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.0@160096 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Sean Bright
2008-12-01 21:07:48 +00:00
parent d2ac515417
commit 470870f3fc

View 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()