diff --git a/Sources/AllocatedLock.swift b/Sources/AllocatedLock.swift index 053d0b6..16e1bd6 100644 --- a/Sources/AllocatedLock.swift +++ b/Sources/AllocatedLock.swift @@ -167,12 +167,14 @@ extension AllocatedLock { } } -#elseif canImport(Glibc) || canImport(Musl) +#elseif canImport(Glibc) || canImport(Musl) || canImport(Bionic) #if canImport(Musl) import Musl -#else +#elseif canImport(Glibc) import Glibc +#elseif canImport(Bionic) +import Bionic #endif extension AllocatedLock {