mirror of
https://github.com/logos-blockchain/logos-blockchain-pocs.git
synced 2026-04-24 03:33:08 +00:00
6 lines
119 B
C++
6 lines
119 B
C++
#ifdef _WIN32
|
|
#include <cstddef>
|
|
inline int madvise(void*, size_t, int) { return 0; }
|
|
#define MADV_SEQUENTIAL 0
|
|
#endif
|