1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00
from Sergey's table-elimination branch to get a clean Valgrind.
This commit is contained in:
unknown
2009-06-15 13:01:35 +02:00
parent 4b2aafb35c
commit f835970430
4 changed files with 34 additions and 6 deletions

View File

@@ -98,7 +98,8 @@ extern const double log_10[309];
#ifdef BAD_STRING_COMPILER
#define strmov(A,B) (memccpy(A,B,0,INT_MAX)-1)
#else
#define strmov_overlapp(A,B) strmov(A,B)
extern char *strmov_overlapp(char *dest, const char *src);
/* Warning: the following is likely not to work: */
#define strmake_overlapp(A,B,C) strmake(A,B,C)
#endif