From: Nick Terrell Date: Thu, 26 Jan 2017 23:29:10 +0000 (-0800) Subject: Fix pool.c threading.h import X-Git-Tag: v1.1.3^2~13^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e628eaf87a92f275897171d830057766af322c5f;p=thirdparty%2Fzstd.git Fix pool.c threading.h import --- diff --git a/lib/common/pool.c b/lib/common/pool.c index 693217f24..e439fe1b0 100644 --- a/lib/common/pool.c +++ b/lib/common/pool.c @@ -21,7 +21,7 @@ #ifdef ZSTD_MULTITHREAD -#include /* pthread adaptation */ +#include "threading.h" /* pthread adaptation */ /* A job is a function and an opaque argument */ typedef struct POOL_job_s {