aboutsummaryrefslogtreecommitdiff
path: root/std/math/ceil.zig
diff options
context:
space:
mode:
authorAndrew Kelley <superjoe30@gmail.com>2017-12-23 22:08:53 -0500
committerAndrew Kelley <superjoe30@gmail.com>2017-12-23 22:15:48 -0500
commit4183c6f1a52959ab5eef540c8eec1758079554eb (patch)
treecbdecf12598c72f3d66d7fa5618d8a9c6338fa53 /std/math/ceil.zig
parent9dae796fe3bd08c4e636f09d1849f6ce2879a50b (diff)
downloadzig-4183c6f1a52959ab5eef540c8eec1758079554eb.tar.gz
zig-4183c6f1a52959ab5eef540c8eec1758079554eb.zip
move std/debug.zig to a subdirectory
self hosted compiler parser tests do some fuzz testing
Diffstat (limited to 'std/math/ceil.zig')
-rw-r--r--std/math/ceil.zig5
1 files changed, 3 insertions, 2 deletions
diff --git a/std/math/ceil.zig b/std/math/ceil.zig
index 8e27132e25..141b5c0fc5 100644
--- a/std/math/ceil.zig
+++ b/std/math/ceil.zig
@@ -5,8 +5,9 @@
// - ceil(nan) = nan
const builtin = @import("builtin");
-const math = @import("index.zig");
-const assert = @import("../debug.zig").assert;
+const std = @import("../index.zig");
+const math = std.math;
+const assert = std.debug.assert;
pub fn ceil(x: var) -> @typeOf(x) {
const T = @typeOf(x);