aboutsummaryrefslogtreecommitdiff
path: root/std/build.zig
diff options
context:
space:
mode:
authorAndrew Kelley <superjoe30@gmail.com>2017-06-07 22:56:57 -0400
committerAndrew Kelley <superjoe30@gmail.com>2017-06-14 00:24:25 -0400
commit7f0620a20fc431717d017d0c19f1e1f29723d93f (patch)
treec8121edd20aa67bf5a22be1f817f679dcfbbdb52 /std/build.zig
parent6a93dda3e1c0ff5f400da25a5d14c907fc9a6fdf (diff)
downloadzig-7f0620a20fc431717d017d0c19f1e1f29723d93f.tar.gz
zig-7f0620a20fc431717d017d0c19f1e1f29723d93f.zip
partial implementation of printing floating point numbers with errol3
also add bitCast builtin function. closes #387
Diffstat (limited to 'std/build.zig')
-rw-r--r--std/build.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/std/build.zig b/std/build.zig
index d08fd389dd..99900a1700 100644
--- a/std/build.zig
+++ b/std/build.zig
@@ -11,7 +11,7 @@ const StdIo = os.ChildProcess.StdIo;
const Term = os.ChildProcess.Term;
const BufSet = @import("buf_set.zig").BufSet;
const BufMap = @import("buf_map.zig").BufMap;
-const fmt_lib = @import("fmt.zig");
+const fmt_lib = @import("fmt/index.zig");
error ExtraArg;
error UncleanExit;