Blame sysdeps/alpha/fpu/math_private.h

Packit 6c4009
#ifndef ALPHA_MATH_PRIVATE_H
Packit 6c4009
#define ALPHA_MATH_PRIVATE_H 1
Packit 6c4009
Packit 6c4009
/* In bits/mathinline.h we define __isnan et al.
Packit 6c4009
   In sysdeps/alpha/fpu/s_isnan.c we move the identifier out of the way
Packit 6c4009
   via macro hackery.  In both cases, tell math/math_private.h that
Packit 6c4009
   we have a local copy of the function.  */
Packit 6c4009
Packit 6c4009
#ifndef __isnan
Packit 6c4009
# define __isnan  __isnan
Packit 6c4009
#endif
Packit 6c4009
#ifndef __isnanf
Packit 6c4009
# define __isnanf __isnanf
Packit 6c4009
#endif
Packit 6c4009
Packit 6c4009
#include_next <math_private.h>
Packit 6c4009
Packit 6c4009
#endif /* ALPHA_MATH_PRIVATE_H */