mirror of
https://github.com/python/cpython.git
synced 2025-12-04 00:30:19 +00:00
Just whitespace fiddling.
This commit is contained in:
parent
1221c0a435
commit
ce7fb9b515
1 changed files with 10 additions and 10 deletions
|
|
@ -641,14 +641,14 @@ _PyMalloc_Calloc(size_t nbel, size_t elsz)
|
|||
*/
|
||||
|
||||
#else /* ! WITH_PYMALLOC */
|
||||
void
|
||||
*_PyMalloc_Malloc(size_t n)
|
||||
void *
|
||||
_PyMalloc_Malloc(size_t n)
|
||||
{
|
||||
return PyMem_MALLOC(n);
|
||||
}
|
||||
|
||||
void
|
||||
*_PyMalloc_Realloc(void *p, size_t n)
|
||||
void *
|
||||
_PyMalloc_Realloc(void *p, size_t n)
|
||||
{
|
||||
return PyMem_REALLOC(p, n);
|
||||
}
|
||||
|
|
@ -660,8 +660,8 @@ _PyMalloc_Free(void *p)
|
|||
}
|
||||
#endif /* WITH_PYMALLOC */
|
||||
|
||||
PyObject
|
||||
*_PyMalloc_New(PyTypeObject *tp)
|
||||
PyObject *
|
||||
_PyMalloc_New(PyTypeObject *tp)
|
||||
{
|
||||
PyObject *op;
|
||||
op = (PyObject *) _PyMalloc_MALLOC(_PyObject_SIZE(tp));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue