blob: aae4bd099eded4826a92d34f8dd18ac007a07697 (
plain) (
blame)
1
2
3
4
5
6
7
|
#ifndef MLIB__ALLOC_FN_H
#define MLIB__ALLOC_FN_H
typedef void *(*alloc_fn)(void *ctx, void *ptr, size_t old, size_t new,
size_t elemsz, size_t align);
#endif /* !MLIB__ALLOC_FN_H */
|