aboutsummaryrefslogtreecommitdiffstats
path: root/testing/dk/fix-musl.patch
diff options
context:
space:
mode:
Diffstat (limited to 'testing/dk/fix-musl.patch')
-rw-r--r--testing/dk/fix-musl.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/testing/dk/fix-musl.patch b/testing/dk/fix-musl.patch
deleted file mode 100644
index 39ff1bed7d3..00000000000
--- a/testing/dk/fix-musl.patch
+++ /dev/null
@@ -1,15 +0,0 @@
---- a/src/dk.h
-+++ b/src/dk.h
-@@ -17,8 +17,10 @@
- #endif
-
- #ifndef NAN
-- #if __GNUC_PREREQ (3, 3)
-- #define NAN (__builtin_nanf(""))
-+ #if defined(__GLIBC__)
-+ #if __GNUC_PREREQ (3, 3)
-+ #define NAN (__builtin_nanf(""))
-+ #endif
- #else
- #define NAN (0.0f / 0.0f)
- #endif