1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-27 04:12:51 +00:00

Missing include of sys/select.h in tty.c (closes Interlisp/medley#186) (#353)

(fix confirmed by original issue reporter)
This commit is contained in:
Nick Briggs
2021-02-13 08:41:20 -08:00
committed by GitHub
parent f2ac050e8e
commit 3a55f1d132

View File

@@ -12,6 +12,7 @@
#include <fcntl.h>
#include <stdio.h>
#include <sys/ioctl.h>
#include <sys/select.h>
#include <termios.h>
#include <unistd.h>