Core/HW/WiimoteReal: add missing Linux include
IOLinux.cpp should include <sys/select.h> as it uses select() functionality. On certain platforms it's included implicitly by other headers, which is why it compiled before. This makes it also work on musl platforms.
This commit is contained in:
parent
58c78a495d
commit
e647503eb2
|
@ -6,6 +6,7 @@
|
|||
#include <bluetooth/hci.h>
|
||||
#include <bluetooth/hci_lib.h>
|
||||
#include <bluetooth/l2cap.h>
|
||||
#include <sys/select.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#include "Common/CommonTypes.h"
|
||||
|
|
Loading…
Reference in New Issue