Skip to content

Commit

Permalink
try this
Browse files Browse the repository at this point in the history
  • Loading branch information
azimafroozeh committed Sep 11, 2024
1 parent 8a091a1 commit 5b10a3e
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/io/mmap.cpp
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
#include "fls/io/mmap.hpp"
#include <cstring>
#include <sys/fcntl.h>
#include <sys/mman.h>
#include <sys/stat.h>
#if defined(_WIN32)
#include <windows.h> // For Windows memory-mapping
#else
#include <sys/mman.h> // For POSIX memory-mapping
#endif
#include < sys / stat.h>
#include <unistd.h>

namespace fastlanes {
Expand Down

0 comments on commit 5b10a3e

Please sign in to comment.