diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2020-07-09 22:13:30 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2020-07-09 22:13:30 +0000 |
commit | 7ed0af0e05e290ac0956784eb03e7de9978b93ef (patch) | |
tree | 9405319234035c7ac49a080724826fbf00689bb3 /lib | |
parent | f35a7bb2867b090562f72803b48926c29ace0bee (diff) |
The fegetexceptflag() function should not have a DEF_STD.
Brings arm64 in line with all the other architectures.
ok millert@
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libm/arch/aarch64/fenv.c | 3 |
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 |