| 94 | } |
| 95 | |
| 96 | void ILAPIENTRY ifree(const void * CONST_RESTRICT Ptr) |
| 97 | { |
| 98 | if (Ptr == NULL) |
| 99 | return; |
| 100 | ifree_ptr(Ptr); |
| 101 | return; |
| 102 | } |
| 103 | |
| 104 | void* ILAPIENTRY icalloc(const ILsizei Size, const ILsizei Num) |
| 105 | { |
nothing calls this directly
no outgoing calls
no test coverage detected