diff options
| author | Bobby <[email protected]> | 2026-02-15 21:57:56 +0530 |
|---|---|---|
| committer | Bobby <[email protected]> | 2026-02-15 21:57:56 +0530 |
| commit | 98d2a091f675f2bf6987098ffe11f765835459c0 (patch) | |
| tree | 4cb911ad1eebf56e87fe75f28a2a5a90324b2388 /binaries/wipe/wipe.zig | |
| parent | f5d145b42408d18a6f7b8c59616efc29697fd2ba (diff) | |
| download | akiba-98d2a091f675f2bf6987098ffe11f765835459c0.tar.xz akiba-98d2a091f675f2bf6987098ffe11f765835459c0.zip | |
Make all binaries use library imports. Remove akiba library.
Diffstat (limited to 'binaries/wipe/wipe.zig')
| -rw-r--r-- | binaries/wipe/wipe.zig | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/binaries/wipe/wipe.zig b/binaries/wipe/wipe.zig index 34c6f95..8bdc336 100644 --- a/binaries/wipe/wipe.zig +++ b/binaries/wipe/wipe.zig @@ -1,10 +1,11 @@ //! wipe - Clear the terminal screen -const akiba = @import("akiba"); +const io = @import("io"); +const sys = @import("sys"); export fn main(pc: u32, pv: [*]const [*:0]const u8) u8 { _ = pc; _ = pv; - akiba.io.wipe(); + io.wipe(); return 0; } |
