Hello all,

        I’m using Xcode 8.0 and Swift 3 on OS X 10.11, and I’m trying to use 
powl in an OS X Playground. I see the definition of the pow-related functions 
in math.h here:

extern float powf(float, float);
extern double pow(double, double);
extern long double powl(long double, long double);

But the Swift-imported version at Darwin.C.math looks like this:

public func powf(_: Float, _: Float) -> Float
public func pow(_: Double, _: Double) -> Double

Where did powl go?


Jeff Kelley

slauncha...@gmail.com | @SlaunchaMan <https://twitter.com/SlaunchaMan> | 
jeffkelley.org <http://jeffkelley.org/>
_______________________________________________
swift-users mailing list
swift-users@swift.org
https://lists.swift.org/mailman/listinfo/swift-users

Reply via email to