summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkettenis <kettenis@openbsd.org>2020-07-09 22:13:29 +0000
committerkettenis <kettenis@openbsd.org>2020-07-09 22:13:29 +0000
commit2a049e6c3f852e5c6ff123a1a1b89bce437d94d9 (patch)
tree101fdaead70ff85ad98827032308876105eb09c2
parentOn some laptops that have a Windows Precision Touchpad (imt) and (diff)
downloadwireguard-openbsd-2a049e6c3f852e5c6ff123a1a1b89bce437d94d9.tar.xz
wireguard-openbsd-2a049e6c3f852e5c6ff123a1a1b89bce437d94d9.zip
The fegetexceptflag() function should not have a DEF_STD.
Brings arm64 in line with all the other architectures. ok millert@
-rw-r--r--lib/libm/arch/aarch64/fenv.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/libm/arch/aarch64/fenv.c b/lib/libm/arch/aarch64/fenv.c
index bdf942188b6..7aca2b86b26 100644
--- a/lib/libm/arch/aarch64/fenv.c
+++ b/lib/libm/arch/aarch64/fenv.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: fenv.c,v 1.3 2019/03/12 22:14:50 patrick Exp $ */
+/* $OpenBSD: fenv.c,v 1.4 2020/07/09 22:13:29 kettenis Exp $ */
/*-
* Copyright (c) 2004-2005 David Schultz <das@FreeBSD.ORG>
* All rights reserved.
@@ -83,7 +83,6 @@ fegetexceptflag(fexcept_t *flagp, int excepts)
*flagp = r & excepts;
return (0);
}
-DEF_STD(fegetexceptflag);
/*
* The feraiseexcept() function raises the supported floating-point exceptions