mirror of
git://sourceware.org/git/glibc.git
synced 2025-01-12 12:07:12 +08:00
Only define functions if __OPTIMIZE__.
This commit is contained in:
parent
eec226c3ba
commit
eca7f27242
@ -18,7 +18,8 @@
|
|||||||
write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
||||||
Boston, MA 02111-1307, USA. */
|
Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
#if defined (__GNUC__) && !defined (__NO_MATH_INLINES)
|
#ifdef __GNUC__
|
||||||
|
#if !defined __NO_MATH_INLINES && defined __OPTIMIZE__
|
||||||
|
|
||||||
extern __inline double
|
extern __inline double
|
||||||
__copysign (double __x, double __y)
|
__copysign (double __x, double __y)
|
||||||
@ -42,3 +43,4 @@ atan (double __x)
|
|||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user