Removes need for sys/sysctl.h on linux

This commit is contained in:
RipleyTom 2021-08-31 10:35:55 +02:00 committed by Ivan
parent f0ab4b51dc
commit 1e108d97b2

View File

@ -13,6 +13,9 @@
#include <errno.h>
#include <unistd.h>
#include <sys/types.h>
#endif
#if !defined(__linux__) && !defined(_WIN32)
#include <sys/sysctl.h>
#endif