diff options
| author | Eugene <EOlonov@gmail.com> | 2026-01-14 07:46:42 +0000 |
|---|---|---|
| committer | Eugene <EOlonov@gmail.com> | 2026-01-14 07:46:42 +0000 |
| commit | a20531485d4c139a85a86eea2a2585ada5d6f8c1 (patch) | |
| tree | d39b2893bc194147e23161baf3828e1ca7397b9f /std.zc | |
| parent | 55597a93028e9dbf2314171257f42e0104023896 (diff) | |
fix: use imports relative to std.zc
Diffstat (limited to 'std.zc')
| -rw-r--r-- | std.zc | 24 |
1 files changed, 12 insertions, 12 deletions
@@ -2,15 +2,15 @@ struct String; struct File; -import "std/core.zc" -import "std/vec.zc" -import "std/string.zc" -import "std/io.zc" -import "std/fs.zc" -import "std/time.zc" -import "std/result.zc" -import "std/option.zc" -import "std/map.zc" -import "std/json.zc" -import "std/path.zc" -import "std/mem.zc" +import "./std/core.zc" +import "./std/vec.zc" +import "./std/string.zc" +import "./std/io.zc" +import "./std/fs.zc" +import "./std/time.zc" +import "./std/result.zc" +import "./std/option.zc" +import "./std/map.zc" +import "./std/json.zc" +import "./std/path.zc" +import "./std/mem.zc" |
