Skip to content

Commit

Permalink
Import Bionic module that's part of the new Android overlay
Browse files Browse the repository at this point in the history
  • Loading branch information
finagolfin committed Jul 8, 2024
1 parent 709e4f2 commit e59bc01
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Sources/Yams/Representer.swift
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ private let cpow: (_: Double, _: Double) -> Double = Darwin.pow
#elseif os(Windows)
import ucrt
private let cpow: (_: Double, _: Double) -> Double = ucrt.pow
#elseif canImport(Bionic)
import CoreFoundation
import Bionic
private let cpow: (_: Double, _: Double) -> Double = Bionic.pow
#else
import CoreFoundation
import Glibc
Expand Down

0 comments on commit e59bc01

Please sign in to comment.