1.. highlight:: c
2
3
4Memory
5======
6
7.. c:function:: void* Test_Malloc(size_t n)
8
9   Allocate *n* bytes of memory.
10
11   .. versionchanged:: 0.6
12
13      Can now be replaced with a different allocator.
14
15System
16------
17
18Access to the system allocator.
19
20.. versionadded:: 0.6
21
22.. c:function:: void* Test_SysMalloc(size_t n)
23
24   Allocate *n* bytes of memory using system allocator.
25