Formatting spaces around pointer symbol.

This commit is contained in:
Petar Popovic
2025-02-04 01:14:56 +01:00
committed by Sam Lantinga
parent 94409d3504
commit 8ccf85c59e
15 changed files with 57 additions and 57 deletions

View File

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