Skip to content

Commit 28c87a8

Browse files
committed
Zig print changes
1 parent dbf80ce commit 28c87a8

File tree

24 files changed

+24
-23
lines changed

24 files changed

+24
-23
lines changed

bench/algorithm/binarytrees/1.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const std = @import("std");
2-
const print = @import("../../include/zig/print.zig");
2+
const print = @import("print.zig");
33
const builtin = @import("builtin");
44
const math = std.math;
55
const Allocator = std.mem.Allocator;

bench/algorithm/coro-prime-sieve/1.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// https://gist.github.com/SpexGuy/953e5780cd2d2c524cba6a79f13076e6
33

44
const std = @import("std");
5-
const print = @import("../../include/zig/print.zig");
5+
const print = @import("print.zig");
66

77
const Channel = struct {
88
value: u32,

bench/algorithm/edigits/1.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const std = @import("std");
2-
const print = @import("../../include/zig/print.zig");
2+
const print = @import("print.zig");
33
const bigint = std.math.big.int;
44
const math = std.math;
55
const global_allocator = std.heap.c_allocator;

bench/algorithm/fannkuch-redux/1.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// From https://github.com/tiehuis/zig-benchmarks-game/blob/master/src/fannkuch-redux.zig
22

33
const std = @import("std");
4-
const print = @import("../../include/zig/print.zig");
4+
const print = @import("print.zig");
55

66
const global_allocator = std.heap.c_allocator;
77

bench/algorithm/fannkuch-redux/2-m.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const std = @import("std");
2-
const print = @import("../../include/zig/print.zig");
2+
const print = @import("print.zig");
33

44
const max_n = 12;
55
const Vec = @Vector(max_n, u8);

bench/algorithm/fannkuch-redux/2.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const std = @import("std");
2-
const print = @import("../../include/zig/print.zig");
2+
const print = @import("print.zig");
33

44
const Vec = @Vector(16, u8);
55

bench/algorithm/fannkuch-redux/3-i.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
//
2424

2525
const std = @import("std");
26-
const print = @import("../../include/zig/print.zig");
26+
const print = @import("print.zig");
2727

2828

2929
const u8x16 = @Vector(16, u8);

bench/algorithm/helloworld/1.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const std = @import("std");
2-
const print = @import("../../include/zig/print.zig");
2+
const print = @import("print.zig");
33
const global_allocator = std.heap.c_allocator;
44

55
pub fn main() !void {

bench/algorithm/json-serde/1.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const std = @import("std");
2-
const print = @import("../../include/zig/print.zig");
2+
const print = @import("print.zig");
33
const json = std.json;
44

55
const global_allocator = std.heap.c_allocator;

bench/algorithm/knucleotide/1-m.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const std = @import("std");
2-
const print = @import("../../include/zig/print.zig");
2+
const print = @import("print.zig");
33

44
const gpa = std.heap.c_allocator;
55

0 commit comments

Comments
 (0)