summaryrefslogtreecommitdiff
path: root/include/asterisk.h
diff options
context:
space:
mode:
authorJason Parker <jparker@digium.com>2013-02-28 21:21:50 +0000
committerJason Parker <jparker@digium.com>2013-02-28 21:21:50 +0000
commit6acc9ceb7621d47a78f7e0c69bfad6ed27e8bac2 (patch)
tree6ffcca1da8a2ffe3e9fbab0da76b8a6c04e664c3 /include/asterisk.h
parent1a34b465bc98e40afc7118f9f63e4f9839e5c908 (diff)
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
Diffstat (limited to 'include/asterisk.h')
-rw-r--r--include/asterisk.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/include/asterisk.h b/include/asterisk.h
index a25f291e5..e99bdeefd 100644
--- a/include/asterisk.h
+++ b/include/asterisk.h
@@ -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)