summaryrefslogtreecommitdiff
path: root/toxcore/TCP_server.h
diff options
context:
space:
mode:
authoriphydf <iphydf@users.noreply.github.com>2016-09-11 15:47:51 +0100
committeriphydf <iphydf@users.noreply.github.com>2016-09-13 00:32:02 +0100
commit0aa2840164fc782f150cd45f8668ca623e6002cf (patch)
tree68d4b762c6233946fc3e73af546e2a5a5f6cdb16 /toxcore/TCP_server.h
parent2b2dc07f6f7fe28a8e558125d977d2fa9cef3881 (diff)
Group #include directives in 3-4 groups.
1. Current module (if C file). 2. Headers from current library. 3. Headers from other library (e.g. toxcore includes in toxav). 4. System headers.
Diffstat (limited to 'toxcore/TCP_server.h')
-rw-r--r--toxcore/TCP_server.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/toxcore/TCP_server.h b/toxcore/TCP_server.h
index f5768594..dedb819f 100644
--- a/toxcore/TCP_server.h
+++ b/toxcore/TCP_server.h
@@ -28,7 +28,7 @@
28#include "onion.h" 28#include "onion.h"
29 29
30#ifdef TCP_SERVER_USE_EPOLL 30#ifdef TCP_SERVER_USE_EPOLL
31#include "sys/epoll.h" 31#include <sys/epoll.h>
32#endif 32#endif
33 33
34#if defined(_WIN32) || defined(__WIN32__) || defined(WIN32) || defined(__MACH__) 34#if defined(_WIN32) || defined(__WIN32__) || defined(WIN32) || defined(__MACH__)