summaryrefslogtreecommitdiff
path: root/c.zig
diff options
context:
space:
mode:
authorGravatar Vincent Rischmann2024-04-14 20:50:44 +0200
committerGravatar GitHub2024-04-14 20:50:44 +0200
commit19dd52b7b7e9fa5ec029c4ac3bd53fb41e5be12c (patch)
tree453f927a6926b4f778a4be2a14164896734a60f0 /c.zig
parentMerge pull request #157 from vrischmann/update-latest-zig (diff)
parentci: run with -fqemu and -frosetta (diff)
downloadzig-sqlite-19dd52b7b7e9fa5ec029c4ac3bd53fb41e5be12c.tar.gz
zig-sqlite-19dd52b7b7e9fa5ec029c4ac3bd53fb41e5be12c.tar.xz
zig-sqlite-19dd52b7b7e9fa5ec029c4ac3bd53fb41e5be12c.zip
Merge pull request #158 from vrischmann/workaround-sqlite-transient
Workaround SQLITE_TRANSIENT
Diffstat (limited to 'c.zig')
-rw-r--r--c.zig1
1 files changed, 1 insertions, 0 deletions
diff --git a/c.zig b/c.zig
index 4589aef..3a43106 100644
--- a/c.zig
+++ b/c.zig
@@ -5,6 +5,7 @@ pub const c = if (@hasDecl(root, "loadable_extension"))
5else 5else
6 @cImport({ 6 @cImport({
7 @cInclude("sqlite3.h"); 7 @cInclude("sqlite3.h");
8 @cInclude("workaround.h");
8 }); 9 });
9 10
10// versionGreaterThanOrEqualTo returns true if the SQLite version is >= to the major.minor.patch provided. 11// versionGreaterThanOrEqualTo returns true if the SQLite version is >= to the major.minor.patch provided.