diff options
Diffstat (limited to 'Include/cpython/pymem.h')
-rw-r--r-- | Include/cpython/pymem.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Include/cpython/pymem.h b/Include/cpython/pymem.h index 61d7195..d1054d7 100644 --- a/Include/cpython/pymem.h +++ b/Include/cpython/pymem.h @@ -10,8 +10,6 @@ PyAPI_FUNC(void) PyMem_RawFree(void *ptr); /* Try to get the allocators name set by _PyMem_SetupAllocators(). */ PyAPI_FUNC(const char*) _PyMem_GetCurrentAllocatorName(void); -PyAPI_FUNC(void *) PyMem_Calloc(size_t nelem, size_t elsize); - /* strdup() using PyMem_RawMalloc() */ PyAPI_FUNC(char *) _PyMem_RawStrdup(const char *str); |