mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
everyone loves atan2.
Swift SVN r1560
This commit is contained in:
@@ -424,3 +424,10 @@ extern "C" float _TSs3cosFT1aNSs5Float_S_(float X) {
|
||||
return cosf(X);
|
||||
}
|
||||
|
||||
extern "C" double _TSs5atan2FT1yNSs6Double1xS__S_(double Y, double X) {
|
||||
return atan2(Y, X);
|
||||
}
|
||||
extern "C" float _TSs5atan2FT1yNSs5Float1xS__S_(float Y, float X) {
|
||||
return atan2f(Y, X);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user