File tree Expand file tree Collapse file tree 1 file changed +0
-16
lines changed Expand file tree Collapse file tree 1 file changed +0
-16
lines changed Original file line number Diff line number Diff line change 43
43
#if defined(__CYGWIN__) || defined(_WIN32) || defined(__HAIKU__)
44
44
#include < sstream>
45
45
#include < cmath>
46
- #define fmodl (lhs, rhs ) std::fmod(lhs, rhs)
47
46
#elif defined(__ANDROID__)
48
47
// Android's libc implementation Bionic currently only supports the "C" locale
49
48
// (https://android.googlesource.com/platform/bionic/+/ndk-r11c/libc/bionic/locale.cpp#40).
@@ -321,21 +320,6 @@ swift::swift_stdlib_readLine_stdin(unsigned char **LinePtr) {
321
320
#endif
322
321
}
323
322
324
- SWIFT_CC (swift) SWIFT_RUNTIME_STDLIB_INTERFACE
325
- float _swift_fmodf(float lhs, float rhs) {
326
- return fmodf (lhs, rhs);
327
- }
328
-
329
- SWIFT_CC (swift) SWIFT_RUNTIME_STDLIB_INTERFACE
330
- double _swift_fmod(double lhs, double rhs) {
331
- return fmod (lhs, rhs);
332
- }
333
-
334
- SWIFT_CC (swift) SWIFT_RUNTIME_STDLIB_INTERFACE
335
- long double _swift_fmodl(long double lhs, long double rhs) {
336
- return fmodl (lhs, rhs);
337
- }
338
-
339
323
340
324
// Although this builtin is provided by clang rt builtins,
341
325
// it isn't provided by libgcc, which is the default
You can’t perform that action at this time.
0 commit comments