mirror of
https://github.com/ncruces/go-sqlite3.git
synced 2026-01-12 05:59:14 +00:00
40 lines
799 B
C
40 lines
799 B
C
#include <time.h>
|
|
|
|
// Platform Configuration
|
|
|
|
#define SQLITE_OS_OTHER 1
|
|
#define SQLITE_BYTEORDER 1234
|
|
|
|
#define HAVE_INT8_T 1
|
|
#define HAVE_INT16_T 1
|
|
#define HAVE_INT32_T 1
|
|
#define HAVE_INT64_T 1
|
|
#define HAVE_INTPTR_T 1
|
|
#define HAVE_UINT8_T 1
|
|
#define HAVE_UINT16_T 1
|
|
#define HAVE_UINT32_T 1
|
|
#define HAVE_UINT64_T 1
|
|
#define HAVE_UINTPTR_T 1
|
|
#define HAVE_STDINT_H 1
|
|
#define HAVE_INTTYPES_H 1
|
|
|
|
#define HAVE_LOG2 1
|
|
#define HAVE_LOG10 1
|
|
#define HAVE_ISNAN 1
|
|
|
|
#define HAVE_STRCHRNUL 1
|
|
|
|
#define HAVE_USLEEP 1
|
|
#define HAVE_NANOSLEEP 1
|
|
|
|
#define HAVE_GMTIME_R 1
|
|
#define HAVE_LOCALTIME_S 1
|
|
|
|
#define HAVE_MALLOC_H 1
|
|
#define HAVE_MALLOC_USABLE_SIZE 1
|
|
|
|
// Implemented in hooks.c.
|
|
static int sqliteBusyCallback(void *, int);
|
|
|
|
// Implemented in vfs.c.
|
|
int localtime_s(struct tm *const pTm, time_t const *const pTime); |