| 102 | } |
| 103 | |
| 104 | void* ILAPIENTRY icalloc(const ILsizei Size, const ILsizei Num) |
| 105 | { |
| 106 | void *Ptr = ialloc(Size * Num); |
| 107 | if (Ptr == NULL) |
| 108 | return Ptr; |
| 109 | imemclear(Ptr, Size * Num); |
| 110 | return Ptr; |
| 111 | } |
| 112 | |
| 113 | /*** Default Allocation/Deallocation Function ***/ |
| 114 | static void* ILAPIENTRY DefaultAllocFunc(const ILsizei Size) |
nothing calls this directly
no outgoing calls
no test coverage detected