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
-1
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;