Skip to content

Commit

Permalink
Add comments
Browse files Browse the repository at this point in the history
  • Loading branch information
mlafeldt committed Jan 20, 2025
1 parent cf9add0 commit 6eef1ab
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ pub fn build(b: *std.Build) !void {
const filename = b.fmt("{s}.duckdb_extension", .{ext.name});
ext.install_name = b.fmt("@rpath/{s}", .{filename}); // macOS only

// TODO: Rewrite the metadata script in Zig
const output = out: {
const cmd = b.addSystemCommand(&.{ "python3", metadata_script });
cmd.addArgs(&.{ "--extension-name", ext.name });
Expand Down
4 changes: 2 additions & 2 deletions quack_extension.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include <duckdb_extension.h>
#include <string.h> // memcpy
#include <duckdb_extension.h> // Only available in DuckDB 1.1.2 and later
#include <string.h> // memcpy

DUCKDB_EXTENSION_EXTERN

Expand Down

0 comments on commit 6eef1ab

Please sign in to comment.