diff options
-rw-r--r-- | rts/posix/OSThreads.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/rts/posix/OSThreads.c b/rts/posix/OSThreads.c index ae31966c1c..13a176c9d2 100644 --- a/rts/posix/OSThreads.c +++ b/rts/posix/OSThreads.c @@ -57,8 +57,10 @@ #include <sched.h> #endif -#if defined(HAVE_SYS_CPUSET_H) +#if defined(HAVE_SYS_PARAM_H) #include <sys/param.h> +#endif +#if defined(HAVE_SYS_CPUSET_H) #include <sys/cpuset.h> #endif |