0
0
mirror of https://github.com/tursodatabase/libsql.git synced 2025-06-14 01:53:05 +00:00

fix missing define for cases where we build a loadable rather than static libsql extension

This commit is contained in:
Matt
2023-12-21 15:08:39 -05:00
parent f42bd234c6
commit 682d42783d

@ -1,5 +1,8 @@
#include "crsqlite.h"
SQLITE_EXTENSION_INIT1
#ifdef LIBSQL
LIBSQL_EXTENSION_INIT1
#endif
#include <assert.h>
#include <ctype.h>