Remove unused include that breaks OpenBSD (#1165)

PR #855 introduced new include <ssys/sysinfo.h> 
It is not required for compilation or turnserver function but breaks
OpenBSD build (which does not have this file)
This PR removes the include to restore OpenBSD build compatibility

Fixes #1162

Test Plan:
TBD - need some one to test build
This commit is contained in:
Pavel Punsky 2023-03-05 23:50:12 -08:00 committed by GitHub
parent cc2560b06a
commit 79fb65519c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -43,7 +43,6 @@
#if defined(__unix__) || defined(unix)
#include <pthread.h>
#include <sys/resource.h>
#include <sys/sysinfo.h>
#include <sys/time.h>
#endif