diff options
author | mattn <mattn.jp@gmail.com> | 2017-11-18 00:05:36 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-18 00:05:36 +0900 |
commit | f7bfd1d272ca8adbc4fa6ed182cfc8509bd4f8b0 (patch) | |
tree | e7af0426260f12d889ccd5d54d89c7ceee3a01c6 /sqlite3ext.h | |
parent | Merge pull request #479 from kenshaw/move-registeraggregator (diff) | |
parent | fix header file (diff) | |
download | golite-f7bfd1d272ca8adbc4fa6ed182cfc8509bd4f8b0.tar.gz golite-f7bfd1d272ca8adbc4fa6ed182cfc8509bd4f8b0.tar.xz |
Merge pull request #484 from mattn/fix-header
fix header file
Diffstat (limited to 'sqlite3ext.h')
-rw-r--r-- | sqlite3ext.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sqlite3ext.h b/sqlite3ext.h index 2eb064d..19dfd5c 100644 --- a/sqlite3ext.h +++ b/sqlite3ext.h @@ -18,7 +18,7 @@ */ #ifndef SQLITE3EXT_H #define SQLITE3EXT_H -#include "sqlite3.h" +#include "sqlite3-binding.h" /* ** The following structure holds pointers to all of the SQLite API @@ -562,4 +562,4 @@ typedef int (*sqlite3_loadext_entry)( #else // USE_LIBSQLITE3 // If users really want to link against the system sqlite3 we // need to make this file a noop. - #endif
\ No newline at end of file + #endif |