mirror of
https://github.com/reactos/reactos.git
synced 2024-11-10 00:34:39 +00:00
c424146e2c
svn path=/branches/cmake-bringup/; revision=48236
35 lines
722 B
C
35 lines
722 B
C
/* The use of these four functions was creating unwanted imports
|
|
* from msvcrt.dll in kernel32.dll. */
|
|
|
|
#define malloc libwine_malloc
|
|
#define free libwine_free
|
|
#define realloc libwine_realloc
|
|
#define _strdup libwine__strdup
|
|
#define interlocked_xchg_add InterlockedExchangeAdd
|
|
|
|
#include "debug.c"
|
|
|
|
__MINGW_ATTRIB_MALLOC
|
|
void *malloc(size_t size)
|
|
{
|
|
return LocalAlloc(0, size);
|
|
}
|
|
|
|
void free(void *ptr)
|
|
{
|
|
LocalFree(ptr);
|
|
}
|
|
|
|
void *realloc(void *ptr, size_t size)
|
|
{
|
|
if (ptr == NULL) return malloc(size);
|
|
return LocalReAlloc(ptr, size, LMEM_MOVEABLE);
|
|
}
|
|
|
|
__MINGW_ATTRIB_MALLOC
|
|
char *_strdup(const char *str)
|
|
{
|
|
char *newstr = malloc(strlen(str) + 1);
|
|
if (newstr) strcpy(newstr, str);
|
|
return newstr;
|
|
}
|