1
0
mirror of https://github.com/stefanocasazza/ULib.git synced 2025-09-28 19:05:55 +08:00
This commit is contained in:
stefanocasazza 2016-08-23 18:27:38 +02:00
parent d02d2bd581
commit e9df7c930a
4 changed files with 4 additions and 5 deletions

2
configure vendored
View File

@ -20151,7 +20151,7 @@ fi
if test -z "$enable_apexmem"; then
enable_apexmem="yes"
enable_apexmem="no"
fi
if false; then

View File

@ -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)

View File

@ -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

View File

@ -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;