1
0
mirror of https://github.com/fluencelabs/sqlite synced 2025-05-03 21:12:13 +00:00
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);
}