Skip to content

Commit

Permalink
Fix a conditional compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
HiGarfield committed Jan 23, 2025
1 parent 081316a commit dbc9ba8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/util.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@
#include <sys/types.h>
#include <sys/sysctl.h>
#endif
#ifdef HAVE_SYS_SYSINFO_H
#include <sys/sysinfo.h>
#endif
#ifdef __IMPL_GET_TIME
#include <sys/time.h>
#endif
#if defined(__linux__) && !defined(_SC_NPROCESSORS_ONLN)
#include <sys/sysinfo.h>
#endif

#include "util.h"

Expand Down

0 comments on commit dbc9ba8

Please sign in to comment.