1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-10 01:48:00 +00:00

uxcons: Fix on musl libc

musl libc exports FD_SET and friends in sys/select.h.
This commit is contained in:
Kylie McClain 2016-04-28 22:40:32 -04:00 committed by Simon Tatham
parent adc8ae214e
commit 4ae1577b43

View File

@ -12,6 +12,7 @@
#include <termios.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/select.h>
#include "putty.h"
#include "storage.h"