mirror of
https://github.com/logos-blockchain/logos-blockchain-circuits.git
synced 2026-01-02 13:13:08 +00:00
8 lines
188 B
C++
8 lines
188 B
C++
// Workaround for Windows where some mman functions are not defined
|
|
|
|
#ifdef _WIN32
|
|
#include <cstddef>
|
|
inline int madvise(void*, size_t, int) { return 0; }
|
|
#define MADV_SEQUENTIAL 0
|
|
#endif
|