From: Yann Collet Date: Mon, 9 May 2016 09:44:00 +0000 (+0200) Subject: added : midipix support (#181) X-Git-Tag: v0.6.1^2~23 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4ff73a2efffb9aa3e2b7c6c98cf50332c6938db8;p=thirdparty%2Fzstd.git added : midipix support (#181) --- diff --git a/lib/common/util.h b/lib/common/util.h index 186ecb998..29f2fa5c6 100644 --- a/lib/common/util.h +++ b/lib/common/util.h @@ -63,7 +63,7 @@ extern "C" { #endif /* Sleep functions: posix - windows - others */ -#if !defined(_WIN32) && (defined(__unix__) || defined(__unix) || (defined(__APPLE__) && defined(__MACH__))) +#if !defined(_WIN32) && (defined(__unix__) || defined(__unix) || defined(__midipix__) || (defined(__APPLE__) && defined(__MACH__))) # include # include /* setpriority */ # define UTIL_sleep(s) sleep(s)