diff options
| author | gingerBill <bill@gingerbill.org> | 2020-09-25 20:23:29 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2020-09-25 20:23:29 +0100 |
| commit | 3ccaf47566f31d22daf3493f8fdcaea4fa825748 (patch) | |
| tree | 790d6610c9c228f6d78d89ae91fcf4e8786f4ef4 | |
| parent | 8cc5cd149489bc808c231cdc92e78011e49ce426 (diff) | |
Remove unused imports
| -rw-r--r-- | core/os/stat_windows.odin | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/core/os/stat_windows.odin b/core/os/stat_windows.odin index 2067681fd..97b95b3f0 100644 --- a/core/os/stat_windows.odin +++ b/core/os/stat_windows.odin @@ -2,8 +2,6 @@ package os import "core:time" import win32 "core:sys/windows" -import "core:runtime" -import "core:strings" stat :: proc(fd: Handle) -> (File_Info, Errno) { if fd == 0 { |