diff options
Diffstat (limited to 'Objects/object.c')
-rw-r--r-- | Objects/object.c | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/Objects/object.c b/Objects/object.c index 26ddd13..1602e89 100644 --- a/Objects/object.c +++ b/Objects/object.c @@ -2093,4 +2093,19 @@ _PyTrash_destroy_chain(void) #ifdef WITH_PYMALLOC #include "obmalloc.c" -#endif +#else +void *_PyMalloc_Malloc(size_t n) +{ + return PyMem_MALLOC(n); +} + +void *_PyMalloc_Realloc(void *p, size_t n) +{ + return PyMem_REALLOC(p, n); +} + +void _PyMalloc_Free(void *p) +{ + PyMem_FREE(p); +} +#endif /* !WITH_PYMALLOC */ |