diff options
Diffstat (limited to 'src/io/posixstream.nim')
-rw-r--r-- | src/io/posixstream.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/io/posixstream.nim b/src/io/posixstream.nim index 5e9082a9..dbc48ece 100644 --- a/src/io/posixstream.nim +++ b/src/io/posixstream.nim @@ -1,6 +1,6 @@ # stdlib file handling is broken, so we use this instead of FileStream. -import posix -import streams +import std/posix +import std/streams type PosixStream* = ref object of Stream |