| 55 | } |
| 56 | |
| 57 | extern "C" void* valloc(size_t size) { |
| 58 | return LFVAlloc(size); |
| 59 | } |
| 60 | |
| 61 | extern "C" int posix_memalign(void** memptr, size_t alignment, size_t size) { |
| 62 | return LFPosixMemalign(memptr, alignment, size); |
nothing calls this directly
no test coverage detected