Restrict overmatching MACH ifdef to only trigger on OSX and Mach

This commit is contained in:
Zopolis4 2022-09-21 10:03:45 +10:00 committed by akallabeth
parent ee9c9e7c48
commit 2145cef543

View File

@ -60,7 +60,7 @@
#include "../pipe/pipe.h"
/* clock_gettime is not implemented on OSX prior to 10.12 */
#ifdef __MACH__
#if defined(__MACH__) && defined(__APPLE__)
#include <mach/mach_time.h>