Add missing std prefix (#22910)

without it, devels fails to build with `-d:useLinenoise`
This commit is contained in:
Solitude
2023-11-04 11:46:59 +02:00
committed by GitHub
parent af556841ac
commit ec37b59a65

View File

@@ -19,7 +19,7 @@ when defined(nimPreviewSlimSystem):
const hasRstdin = (defined(nimUseLinenoise) or defined(useLinenoise) or defined(useGnuReadline)) and
not defined(windows)
when hasRstdin: import rdstdin
when hasRstdin: import std/rdstdin
type
TLLRepl* = proc (s: PLLStream, buf: pointer, bufLen: int): int