fixed tty naming

This commit is contained in:
2026-02-25 09:03:32 -05:00
parent 34b89a8e34
commit 02e7b3897c
3 changed files with 8 additions and 8 deletions

View File

@@ -1,6 +1,6 @@
--:Minify:--
syscall.open("/dev/tty/tty1", "r") --stdin (fd 0)
syscall.open("/dev/tty/tty1", "w") --stdout (fd 1)
syscall.open("/dev/tty/1", "r") --stdin (fd 0)
syscall.open("/dev/tty/1", "w") --stdout (fd 1)
syscall.open("/dev/null", "w") --stderr (fd 2)