Remove of @extname in stdlib.

This commit is contained in:
Christoffer Lerno
2023-02-02 21:53:37 +01:00
parent 3b3dd334e0
commit 6407eb47a4
29 changed files with 136 additions and 136 deletions

View File

@@ -635,11 +635,11 @@ macro is_nan(x)
}
extern fn double _atan(double x) @extname("atan");
extern fn float _atanf(float x) @extname("atanf");
extern fn double _atan2(double, double) @extname("atan2");
extern fn float _atan2f(float, float) @extname("atan2f");
extern fn void _sincos(double, double*) @extname("sincos");
extern fn void _sincosf(float, float*) @extname("sincosf");
extern fn double _atan(double x) @extern("atan");
extern fn float _atanf(float x) @extern("atanf");
extern fn double _atan2(double, double) @extern("atan2");
extern fn float _atan2f(float, float) @extern("atan2f");
extern fn void _sincos(double, double*) @extern("sincos");
extern fn void _sincosf(float, float*) @extern("sincosf");
extern fn void _tan(double x, double y) @extern("tan");
extern fn void _tanf(double x, double y) @extern("tanf");