mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
9 lines
195 B
C
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;
|
|
}
|
|
} |