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:
Shiz 2019-06-29 02:17:58 +02:00 committed by GitHub
parent 58c78a495d
commit e647503eb2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -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"