diff options
author | ramil@mysql.com <> | 2005-10-13 12:48:30 +0500 |
---|---|---|
committer | ramil@mysql.com <> | 2005-10-13 12:48:30 +0500 |
commit | 2ffbe01127e5720c134e6bb92bde3cc77b5f3ee9 (patch) | |
tree | 649b77f84ffdf6d82c694ace9752240e65c99e1b /include/m_string.h | |
parent | 701a1378446d976cf7b95287de769bbd92dfeafc (diff) | |
parent | 58c64aea924555e1c9f01fcf370ef1dd3f8cdca3 (diff) | |
download | mariadb-git-2ffbe01127e5720c134e6bb92bde3cc77b5f3ee9.tar.gz |
Merge mysql.com:/usr/home/ram/work/mysql-4.0
into mysql.com:/usr/home/ram/work/mysql-4.1
Diffstat (limited to 'include/m_string.h')
-rw-r--r-- | include/m_string.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/include/m_string.h b/include/m_string.h index d3465363beb..d7edff4f626 100644 --- a/include/m_string.h +++ b/include/m_string.h @@ -122,15 +122,6 @@ extern void bmove_align(gptr dst,const gptr src,uint len); #define bmove512(A,B,C) memcpy(A,B,C) #endif -#ifdef HAVE_purify -#define memcpy_overlap(A,B,C) \ -DBUG_ASSERT((A) <= (B) || ((B)+(C)) <= (A)); \ -bmove((byte*) (A),(byte*) (B),(size_t) (C)); -#else -#define memcpy_overlap(A,B,C) memcpy((A), (B), (C)) -#endif /* HAVE_purify */ - - /* Prototypes for string functions */ #if !defined(bfill) && !defined(HAVE_BFILL) |