diff options
| author | Andrew Kelley <superjoe30@gmail.com> | 2017-06-07 22:56:57 -0400 |
|---|---|---|
| committer | Andrew Kelley <superjoe30@gmail.com> | 2017-06-14 00:24:25 -0400 |
| commit | 7f0620a20fc431717d017d0c19f1e1f29723d93f (patch) | |
| tree | c8121edd20aa67bf5a22be1f817f679dcfbbdb52 /std/io.zig | |
| parent | 6a93dda3e1c0ff5f400da25a5d14c907fc9a6fdf (diff) | |
| download | zig-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/io.zig')
| -rw-r--r-- | std/io.zig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/std/io.zig b/std/io.zig index 1a4d500023..73f49c009f 100644 --- a/std/io.zig +++ b/std/io.zig @@ -8,13 +8,13 @@ const system = switch(builtin.os) { }; const errno = @import("os/errno.zig"); -const math = @import("math.zig"); +const math = @import("math/index.zig"); const debug = @import("debug.zig"); const assert = debug.assert; const os = @import("os/index.zig"); const mem = @import("mem.zig"); const Buffer = @import("buffer.zig").Buffer; -const fmt = @import("fmt.zig"); +const fmt = @import("fmt/index.zig"); const is_posix = builtin.os != builtin.Os.windows; const is_windows = builtin.os == builtin.Os.windows; |
