mirror of
https://github.com/isar/rusqlite.git
synced 2024-11-25 02:21:37 +08:00
9 lines
214 B
C
9 lines
214 B
C
|
#include <stddef.h>
|
||
|
|
||
|
void *malloc(size_t size);
|
||
|
void free(void *ptr);
|
||
|
void *realloc(void *ptr, size_t size);
|
||
|
|
||
|
void qsort(void *a, size_t n, size_t es, int (*cmp)(const void *, const void *));
|
||
|
|
||
|
#define DEF_STRONG(x)
|