From: Ulrich Drepper Date: Mon, 14 Jul 1997 21:41:49 +0000 (+0000) Subject: Only define functions if __OPTIMIZE__. X-Git-Tag: glibc-2.16-ports-before-merge~3471 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=eca7f2724208f2cb0f03411f52af8ce85e1b4109;p=thirdparty%2Fglibc.git Only define functions if __OPTIMIZE__. --- diff --git a/sysdeps/alpha/fpu/bits/mathinline.h b/sysdeps/alpha/fpu/bits/mathinline.h index 0f76027317b..22703120b17 100644 --- a/sysdeps/alpha/fpu/bits/mathinline.h +++ b/sysdeps/alpha/fpu/bits/mathinline.h @@ -18,7 +18,8 @@ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#if defined (__GNUC__) && !defined (__NO_MATH_INLINES) +#ifdef __GNUC__ +#if !defined __NO_MATH_INLINES && defined __OPTIMIZE__ extern __inline double __copysign (double __x, double __y) @@ -42,3 +43,4 @@ atan (double __x) } #endif +#endif