Ruby 4.1.0dev (2026-04-01 revision 9c827a49ccefc0b945b25a479cdd9ba0a156a21c)
filesystem.h
Go to the documentation of this file.
1
6#ifndef PRISM_COMPILER_FILESYSTEM_H
7#define PRISM_COMPILER_FILESYSTEM_H
8
14#ifdef _WIN32
15# define PRISM_HAS_MMAP
16#else
17# include <unistd.h>
18# ifdef _POSIX_MAPPED_FILES
19# define PRISM_HAS_MMAP
20# endif
21#endif
22
28#ifndef PRISM_HAS_NO_FILESYSTEM
29# define PRISM_HAS_FILESYSTEM
30#endif
31
32#endif