about summary refs log tree commit diff stats
path: root/001help.cc
diff options
context:
space:
mode:
Diffstat (limited to '001help.cc')
-rw-r--r--001help.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/001help.cc b/001help.cc
index d652d54e..351ae27a 100644
--- a/001help.cc
+++ b/001help.cc
@@ -180,7 +180,7 @@ feenableexcept(FE_OVERFLOW | FE_UNDERFLOW);
 #ifdef __APPLE__
 // Public domain polyfill for feenableexcept on OS X
 // http://www-personal.umich.edu/~williams/archive/computation/fe-handling-example.c
-inline int feenableexcept (unsigned int excepts) {
+int feenableexcept (unsigned int excepts) {
   static fenv_t fenv;
   unsigned int new_excepts = excepts & FE_ALL_EXCEPT;
   unsigned int old_excepts;