Module Name:    src
Committed By:   martin
Date:           Mon May  8 09:25:03 UTC 2017

Modified Files:
        src/lib/libm/arch/arm: fenv.c

Log Message:
Complete the namespace dance


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/lib/libm/arch/arm/fenv.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/lib/libm/arch/arm/fenv.c
diff -u src/lib/libm/arch/arm/fenv.c:1.8 src/lib/libm/arch/arm/fenv.c:1.9
--- src/lib/libm/arch/arm/fenv.c:1.8	Mon May  8 08:21:56 2017
+++ src/lib/libm/arch/arm/fenv.c	Mon May  8 09:25:03 2017
@@ -28,7 +28,7 @@
  */
 
 #include <sys/cdefs.h>
-__RCSID("$NetBSD: fenv.c,v 1.8 2017/05/08 08:21:56 martin Exp $");
+__RCSID("$NetBSD: fenv.c,v 1.9 2017/05/08 09:25:03 martin Exp $");
 
 #include "namespace.h"
 
@@ -43,6 +43,23 @@ __RCSID("$NetBSD: fenv.c,v 1.8 2017/05/0
 #error This fenv implementation is only for hardfloat.
 #endif
 
+#ifdef __weak_alias
+__weak_alias(feclearexcept,_feclearexcept)
+__weak_alias(fedisableexcept,_fedisableexcept)
+__weak_alias(feenableexcept,_feenableexcept)
+__weak_alias(fegetenv,_fegetenv)
+__weak_alias(fegetexcept,_fegetexcept)
+__weak_alias(fegetexceptflag,_fegetexceptflag)
+__weak_alias(fegetround,_fegetround)
+__weak_alias(feholdexcept,_feholdexcept)
+__weak_alias(feraiseexcept,_feraiseexcept)
+__weak_alias(fesetenv,_fesetenv)
+__weak_alias(fesetexceptflag,_fesetexceptflag)
+__weak_alias(fesetround,_fesetround)
+__weak_alias(fetestexcept,_fetestexcept)
+__weak_alias(feupdateenv,_feupdateenv)
+#endif
+
 #include <arm/armreg.h>
 #include <arm/vfpreg.h>
 

Reply via email to