Formatting spaces around pointer symbol.
This commit is contained in:
committed by
Sam Lantinga
parent
94409d3504
commit
8ccf85c59e
@@ -6324,10 +6324,10 @@ History:
|
||||
#endif /* !HAVE_MALLOC */
|
||||
|
||||
#ifdef HAVE_MALLOC
|
||||
static void* SDLCALL real_malloc(size_t s) { return malloc(s); }
|
||||
static void* SDLCALL real_calloc(size_t n, size_t s) { return calloc(n, s); }
|
||||
static void* SDLCALL real_realloc(void *p, size_t s) { return realloc(p,s); }
|
||||
static void SDLCALL real_free(void *p) { free(p); }
|
||||
static void * SDLCALL real_malloc(size_t s) { return malloc(s); }
|
||||
static void * SDLCALL real_calloc(size_t n, size_t s) { return calloc(n, s); }
|
||||
static void * SDLCALL real_realloc(void *p, size_t s) { return realloc(p,s); }
|
||||
static void SDLCALL real_free(void *p) { free(p); }
|
||||
#else
|
||||
#define real_malloc dlmalloc
|
||||
#define real_calloc dlcalloc
|
||||
|
||||
Reference in New Issue
Block a user