From cc77f9662dc6fe7e291ffb0e4ffa1b97617293ce Mon Sep 17 00:00:00 2001 From: Eric Betts <bettse@fastmail.fm> Date: Mon, 17 Jan 2022 17:18:29 -0800 Subject: [PATCH] remove redundant include --- client/src/util.c | 1 - 1 file changed, 1 deletion(-) diff --git a/client/src/util.c b/client/src/util.c index 59c80b29b..103521b42 100644 --- a/client/src/util.c +++ b/client/src/util.c @@ -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;