mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2024-12-23 01:59:43 +08:00
Merge pull request #56 from maximsmol/fix_memdbg_on_mac
sdk2013: Fix memdbg on Mac
This commit is contained in:
commit
ab5972610c
@ -33,7 +33,11 @@
|
|||||||
#include <wchar.h>
|
#include <wchar.h>
|
||||||
#endif
|
#endif
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
#if defined __APPLE__
|
||||||
|
#include <stdlib.h>
|
||||||
|
#else
|
||||||
#include <malloc.h>
|
#include <malloc.h>
|
||||||
|
#endif
|
||||||
#include "commonmacros.h"
|
#include "commonmacros.h"
|
||||||
#include "memalloc.h"
|
#include "memalloc.h"
|
||||||
|
|
||||||
|
@ -16,6 +16,8 @@
|
|||||||
#include "limits.h"
|
#include "limits.h"
|
||||||
|
|
||||||
#if defined( OSX )
|
#if defined( OSX )
|
||||||
|
|
||||||
|
#if !defined( wcsdup )
|
||||||
inline wchar_t *wcsdup(const wchar_t *pString)
|
inline wchar_t *wcsdup(const wchar_t *pString)
|
||||||
{
|
{
|
||||||
wchar_t *pMemory;
|
wchar_t *pMemory;
|
||||||
@ -31,6 +33,7 @@ inline wchar_t *wcsdup(const wchar_t *pString)
|
|||||||
|
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
inline size_t strnlen(const char *s, size_t n)
|
inline size_t strnlen(const char *s, size_t n)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user