check: Don't try to include CoreServices.h on iOS

On iOS, we have MobileCoreServices.h but it's not really needed.
This commit is contained in:
Nirbheek Chauhan 2016-12-09 18:01:35 +05:30
parent e60bd6c662
commit 77af10a521

View file

@ -24,7 +24,10 @@
#include <mach/clock.h>
#include <mach/mach.h>
#include <mach/mach_time.h>
#include <CoreServices/CoreServices.h>
#include <TargetConditionals.h>
# if TARGET_OS_MAC
# include <CoreServices/CoreServices.h>
# endif
#include <unistd.h>
#endif