Files
swift-mirror/validation-test/Driver/Inputs/clang_rt-helper.h
2018-07-11 15:09:53 -07:00

9 lines
195 B
C

#include <stdbool.h>
static inline bool isRunningOnFairlyRecentOS() {
if (__builtin_available(macOS 10.12, iOS 10, tvOS 10, watchOS 3, *)) {
return true;
} else {
return false;
}
}