1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

WL#5498: Remove dead and unused source code

Remove the obsolete and buggy bmove512, use memcpy instead.
This commit is contained in:
Davi Arnaut
2010-07-23 17:15:41 -03:00
parent cc3a26289d
commit 7a344b6106
6 changed files with 7 additions and 151 deletions

View File

@@ -96,10 +96,6 @@ extern char _dig_vec_lower[];
#define memcpy_fixed(A,B,C) bmove((A),(B),(C))
#else
#define memcpy_fixed(A,B,C) memcpy((A),(B),(C))
#endif
#if (!defined(USE_BMOVE512) || defined(HAVE_purify)) && !defined(bmove512)
#define bmove512(A,B,C) memcpy(A,B,C)
#endif
/* Prototypes for string functions */
@@ -108,10 +104,6 @@ extern char _dig_vec_lower[];
extern void bfill(uchar *dst,size_t len,pchar fill);
#endif
#ifndef bmove512
extern void bmove512(uchar *dst,const uchar *src,size_t len);
#endif
#if !defined(HAVE_BMOVE) && !defined(bmove)
extern void bmove(uuchar *dst, const uchar *src,size_t len);
#endif