mirror of
https://github.com/MariaDB/server.git
synced 2026-05-14 19:07:15 +02:00
Update mysql-test results after merge
include/my_sys.h: Portability fix include/sslopt-longopts.h: Better help for --ssl mysql-test/r/binary.result: Update results after merge mysys/my_malloc.c: Portability fix sql/udf_example.cc: Use longlong instead of 'long long' to make things works on windows
This commit is contained in:
parent
081023e8fd
commit
aef675029f
5 changed files with 44 additions and 27 deletions
|
|
@ -153,9 +153,9 @@ extern gptr my_malloc(uint Size,myf MyFlags);
|
|||
extern gptr my_realloc(gptr oldpoint,uint Size,myf MyFlags);
|
||||
extern void my_no_flags_free(gptr ptr);
|
||||
extern gptr my_memdup(const byte *from,uint length,myf MyFlags);
|
||||
extern my_string my_strdup(const char *from,myf MyFlags);
|
||||
extern my_string my_strdup_with_length(const char *from,uint length,
|
||||
myf MyFlags);
|
||||
extern char *my_strdup(const char *from,myf MyFlags);
|
||||
extern char *my_strdup_with_length(const byte *from, uint length,
|
||||
myf MyFlags);
|
||||
#define my_free(PTR,FG) my_no_flags_free(PTR)
|
||||
#define CALLER_INFO_PROTO /* nothing */
|
||||
#define CALLER_INFO /* nothing */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue