comparison third_party/wrk/src/config.h @ 186:8cf4ec5e2191 hg-web

Fixed merge conflict.
author MrJuneJune <me@mrjunejune.com>
date Fri, 23 Jan 2026 22:38:59 -0800
parents 94705b5986b3
children
comparison
equal deleted inserted replaced
176:fed99fc04e12 186:8cf4ec5e2191
1 #ifndef CONFIG_H
2 #define CONFIG_H
3
4 #if defined(__FreeBSD__) || defined(__APPLE__)
5 #define HAVE_KQUEUE
6 #elif defined(__linux__)
7 #define HAVE_EPOLL
8 #elif defined (__sun)
9 #define HAVE_EVPORT
10 #define _XPG6
11 #define __EXTENSIONS__
12 #include <stropts.h>
13 #include <sys/filio.h>
14 #include <sys/time.h>
15 #endif
16
17 #endif /* CONFIG_H */