aboutsummaryrefslogtreecommitdiff
path: root/winsup/cygwin/fenv.c
diff options
context:
space:
mode:
Diffstat (limited to 'winsup/cygwin/fenv.c')
-rw-r--r--winsup/cygwin/fenv.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/winsup/cygwin/fenv.c b/winsup/cygwin/fenv.c
index 80f7cc5..1558f76 100644
--- a/winsup/cygwin/fenv.c
+++ b/winsup/cygwin/fenv.c
@@ -3,3 +3,13 @@
being called from mainCRTStartup in crt0.o. */
void _feinitialise (void)
{}
+
+#if defined(__aarch64__)
+
+#include <fenv.h>
+#include <stddef.h>
+
+/* _fe_nomask_env is exported by cygwin.din but not used at all for AArch64. */
+const fenv_t *_fe_nomask_env = NULL;
+
+#endif /* __aarch64__ */