mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-02 19:16:15 +00:00
Don't undefine bzero()/bcopy().
This was causing build failures against external libraries that happened to use them, unless silly hacks were added to the modules that used those headers. Review: https://reviewboard.asterisk.org/r/2359/ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@382292 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -213,17 +213,6 @@ struct ast_variable;
|
||||
struct ast_str;
|
||||
struct ast_sched_context;
|
||||
|
||||
#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()
|
||||
|
||||
/* Some handy macros for turning a preprocessor token into (effectively) a quoted string */
|
||||
#define __stringify_1(x) #x
|
||||
#define __stringify(x) __stringify_1(x)
|
||||
|
Reference in New Issue
Block a user