sqlite/sdk/allocator.c

14 lines
208 B
C
Raw Normal View History

2019-07-19 15:12:49 +03:00
#include "allocator.h"
#include <stdlib.h>
#define UNUSED(x) (void)(x)
void *allocate(size_t size) {
return malloc(size);
}
void deallocate(void *ptr, size_t size) {
UNUSED(size);
free(ptr);
}