| 244 | } |
| 245 | |
| 246 | void* |
| 247 | memalign(size_t alignment, size_t size) { |
| 248 | initializer(); |
| 249 | return rpmemalign(alignment, size); |
| 250 | } |
| 251 | |
| 252 | int |
| 253 | posix_memalign(void** memptr, size_t alignment, size_t size) { |
nothing calls this directly
no test coverage detected