]> sourceware.org Git - glibc.git/commitdiff
Only define functions if __OPTIMIZE__.
authorUlrich Drepper <drepper@redhat.com>
Mon, 14 Jul 1997 21:41:49 +0000 (21:41 +0000)
committerUlrich Drepper <drepper@redhat.com>
Mon, 14 Jul 1997 21:41:49 +0000 (21:41 +0000)
sysdeps/alpha/fpu/bits/mathinline.h

index 0f76027317bcf4ac9c02fa5bb3cfa9aaf65564c5..22703120b1725b7b0e6f6bfbd7a74364102d25a2 100644 (file)
@@ -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
This page took 0.044936 seconds and 5 git commands to generate.