Merge pull request #1567 from bettse/extra_include

remove redundant include
This commit is contained in:
Iceman 2022-01-29 11:33:55 +01:00 committed by GitHub
commit 1cdb0346d0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -978,7 +978,6 @@ int num_CPUs(void) {
GetSystemInfo(&sysinfo);
return sysinfo.dwNumberOfProcessors;
#else
#include <unistd.h>
int count = sysconf(_SC_NPROCESSORS_ONLN);
if (count <= 0)
count = 1;