mirror of
https://sourceware.org/git/glibc.git
synced 2025-08-07 06:43:00 +03:00
Use #if defined to not receive warnings about undefined symbols.
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
/* Declarations for math functions.
|
/* Declarations for math functions.
|
||||||
Copyright (C) 1991-1993,1995-1999,2001,2002 Free Software Foundation, Inc.
|
Copyright (C) 1991-1993,1995-1999,2001,2002,2004 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
The GNU C Library is free software; you can redistribute it and/or
|
The GNU C Library is free software; you can redistribute it and/or
|
||||||
@@ -132,7 +132,7 @@ extern int signgam;
|
|||||||
|
|
||||||
|
|
||||||
/* ISO C99 defines some generic macros which work on any data type. */
|
/* ISO C99 defines some generic macros which work on any data type. */
|
||||||
#if __USE_ISOC99
|
#ifdef __USE_ISOC99
|
||||||
|
|
||||||
/* Get the architecture specific values describing the floating-point
|
/* Get the architecture specific values describing the floating-point
|
||||||
evaluation. The following symbols will get defined:
|
evaluation. The following symbols will get defined:
|
||||||
@@ -362,7 +362,7 @@ extern int matherr (struct exception *__exc);
|
|||||||
# define __NO_MATH_INLINES 1
|
# define __NO_MATH_INLINES 1
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if __USE_ISOC99 && __GNUC_PREREQ(2,97)
|
#if defined __USE_ISOC99 && __GNUC_PREREQ(2,97)
|
||||||
/* ISO C99 defines some macros to compare number while taking care for
|
/* ISO C99 defines some macros to compare number while taking care for
|
||||||
unordered numbers. Many FPUs provide special instructions to support
|
unordered numbers. Many FPUs provide special instructions to support
|
||||||
these operations. Generic support in GCC for these as builtins went
|
these operations. Generic support in GCC for these as builtins went
|
||||||
@@ -382,7 +382,7 @@ extern int matherr (struct exception *__exc);
|
|||||||
# include <bits/mathinline.h>
|
# include <bits/mathinline.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if __USE_ISOC99
|
#ifdef __USE_ISOC99
|
||||||
/* If we've still got undefined comparison macros, provide defaults. */
|
/* If we've still got undefined comparison macros, provide defaults. */
|
||||||
|
|
||||||
/* Return nonzero value if X is greater than Y. */
|
/* Return nonzero value if X is greater than Y. */
|
||||||
|
Reference in New Issue
Block a user