diff --git a/src/io/mmap.cpp b/src/io/mmap.cpp index 3ea6f5e..1b6e62a 100644 --- a/src/io/mmap.cpp +++ b/src/io/mmap.cpp @@ -1,8 +1,12 @@ #include "fls/io/mmap.hpp" #include #include -#include -#include +#if defined(_WIN32) +#include // For Windows memory-mapping +#else +#include // For POSIX memory-mapping +#endif +#include < sys / stat.h> #include namespace fastlanes {