lighttpd 1.4.x
https://www.lighttpd.net/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
322 B
24 lines
322 B
#ifndef WIN32_MMAP_H |
|
#define WIN32_MMAP_H |
|
|
|
#ifdef __WIN32 |
|
|
|
#define MAP_FAILED -1 |
|
#define PROT_SHARED 0 |
|
#define MAP_SHARED 0 |
|
#define PROT_READ 0 |
|
|
|
#define mmap(a, b, c, d, e, f) (-1) |
|
#define munmap(a, b) (-1) |
|
|
|
#include <windows.h> |
|
|
|
#else |
|
#include <sys/mman.h> |
|
|
|
#ifndef MAP_FAILED |
|
#define MAP_FAILED -1 |
|
#endif |
|
#endif |
|
|
|
#endif
|
|
|