mirror of
https://github.com/stefanocasazza/ULib.git
synced 2025-09-28 19:05:55 +08:00
fix
This commit is contained in:
parent
d02d2bd581
commit
e9df7c930a
2
configure
vendored
2
configure
vendored
|
@ -20151,7 +20151,7 @@ fi
|
|||
|
||||
|
||||
if test -z "$enable_apexmem"; then
|
||||
enable_apexmem="yes"
|
||||
enable_apexmem="no"
|
||||
fi
|
||||
|
||||
if false; then
|
||||
|
|
|
@ -675,7 +675,7 @@ AC_MSG_CHECKING(for apex memcpy/memmove)
|
|||
AC_ARG_ENABLE(apexmem, [ --enable-apexmem use apex_memmove written by Trevor Herselman in 2014 [[default=yes]]])
|
||||
|
||||
if test -z "$enable_apexmem"; then
|
||||
enable_apexmem="yes"
|
||||
enable_apexmem="no"
|
||||
fi
|
||||
|
||||
AM_CONDITIONAL(APEXMEM, false)
|
||||
|
|
|
@ -6,8 +6,6 @@
|
|||
#include <ulib/base/base.h>
|
||||
|
||||
#if defined(__MINGW32__) || !defined(HAVE_ARCH64)
|
||||
typedef void* (*pvPFpvpvs) (void*,const void*,size_t);
|
||||
|
||||
extern U_EXPORT pvPFpvpvs apex_memcpy;
|
||||
extern U_EXPORT pvPFpvpvs apex_memmove;
|
||||
#else
|
||||
|
|
|
@ -145,9 +145,10 @@ typedef bool (*bPFpcpv) (const char*,const void*);
|
|||
typedef void (*vPFpvpc) (void*,char*);
|
||||
typedef void (*vPFpvpv) (void*,void*);
|
||||
|
||||
typedef int (*qcompare) (const void*,const void*);
|
||||
typedef void* (*pvPFpvpb) (void*,bool*);
|
||||
typedef int (*qcompare) (const void*,const void*);
|
||||
typedef void (*vPFpvpcpc) (void*,char*,char*);
|
||||
typedef void* (*pvPFpvpvs) (void*,const void*,size_t);
|
||||
|
||||
typedef struct U_DATA {
|
||||
unsigned char* dptr;
|
||||
|
|
Loading…
Reference in New Issue
Block a user