svn commit: r261161 - head/lib/msun/src

Andrew Turner andrew at FreeBSD.org
Sat Jan 25 16:03:09 UTC 2014


Author: andrew
Date: Sat Jan 25 16:03:08 2014
New Revision: 261161
URL: http://svnweb.freebsd.org/changeset/base/261161

Log:
  Use __fenv_static for all static inline functions.

Modified:
  head/lib/msun/src/fenv-softfloat.h

Modified: head/lib/msun/src/fenv-softfloat.h
==============================================================================
--- head/lib/msun/src/fenv-softfloat.h	Sat Jan 25 14:59:08 2014	(r261160)
+++ head/lib/msun/src/fenv-softfloat.h	Sat Jan 25 16:03:08 2014	(r261161)
@@ -156,7 +156,7 @@ feupdateenv(const fenv_t *__envp)
 
 /* We currently provide no external definitions of the functions below. */
 
-static inline int
+__fenv_static inline int
 feenableexcept(int __mask)
 {
 	int __omask = __softfloat_float_exception_mask;
@@ -165,7 +165,7 @@ feenableexcept(int __mask)
 	return (__omask);
 }
 
-static inline int
+__fenv_static inline int
 fedisableexcept(int __mask)
 {
 	int __omask = __softfloat_float_exception_mask;
@@ -174,7 +174,7 @@ fedisableexcept(int __mask)
 	return (__omask);
 }
 
-static inline int
+__fenv_static inline int
 fegetexcept(void)
 {
 


More information about the svn-src-all mailing list