Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
16 righe
445 B
16 righe
445 B
|
|
global int 63:gmemory[]; |
|
|
|
//[Z] The reason I do it like this is because whoever made the acc is insane. |
|
#define gnullptr 0 |
|
|
|
#define gmalloc_allocated 0 |
|
#define gmalloc_size 1 |
|
#define gmalloc_next_header 2 |
|
#define gmalloc_prev_header 3 |
|
#define gmalloc_num_header_properties 4 |
|
|
|
#define gp_malloc_init_flag_location 0 |
|
#define gp_malloc_first_header_location 1 |
|
function int gmalloc (int size) {return 0;} |
|
function int gfree (int p_ptr) {return 0;}
|
|
|