mirror of https://github.com/WerWolv/ImHex.git
build: Use correct fcntl.h include on Linux
This commit is contained in:
parent
978dd65528
commit
a966cab155
|
@ -9,6 +9,10 @@
|
|||
#if defined(OS_WINDOWS)
|
||||
#define WIN32_LEAN_AND_MEAN
|
||||
#include <windows.h>
|
||||
#elif defined(OS_MACOS)
|
||||
#include <sys/mman.h>
|
||||
#include <unistd.h>
|
||||
#include <sys/fcntl.h>
|
||||
#else
|
||||
#include <sys/mman.h>
|
||||
#include <unistd.h>
|
||||
|
|
Loading…
Reference in New Issue