include C code

This commit is contained in:
Yasuhiro Matsumoto 2022-02-24 08:59:46 +09:00
parent 01b1e89847
commit d824efab06
No known key found for this signature in database
GPG Key ID: 622DE34DC490584B
2 changed files with 2 additions and 0 deletions

View File

@ -26,6 +26,7 @@ package sqlite3
#cgo openbsd LDFLAGS: -L/usr/local/lib
#ifndef USE_LIBSQLITE3
#include "amalgamation/sqlite3-binding.h"
#include "amalgamation/sqlite3-binding.c"
#else
#include <sqlite3.h>
#endif

View File

@ -13,6 +13,7 @@ package sqlite3
#include <stdlib.h>
#include "amalgamation/sqlite3-binding.h"
#include "amalgamation/sqlite3_opt_unlock_notify.c"
extern void unlock_notify_callback(void *arg, int argc);
*/