remove redundant include

This commit is contained in:
Eric Betts 2022-01-17 17:18:29 -08:00
commit cc77f9662d

View file

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