| 45 | } |
| 46 | |
| 47 | void StdlibMalloc( |
| 48 | struct ParseState* Parser, struct Value* ReturnValue, struct Value** Param, int NumArgs) |
| 49 | { |
| 50 | ReturnValue->Val->Pointer = ckpt_script_malloc(Param[0]->Val->Integer); |
| 51 | } |
| 52 | |
| 53 | void StdlibCalloc( |
| 54 | struct ParseState* Parser, struct Value* ReturnValue, struct Value** Param, int NumArgs) |
nothing calls this directly
no test coverage detected