Add Changelog ...
[glibc.git] / sysdeps / tile / math_private.h
blob858db4a0512a90d1c566c35a9b8d9d8d3d977262
1 #ifndef _MATH_PRIVATE_H
3 #include_next <math_private.h>
5 /* We have no exception support, so feraiseexcept() must be a no-op.
6 And since we don't define FE_INVALID, FE_DIVBYZERO, etc., we
7 must ignore the argument of feraiseexcept() as well. we return
8 "1" to indicate we failed to raise an exception, though none of
9 the callers in glibc actually care. The extra level of statement
10 expression wrapping avoids "statement with no effect" warnings. */
11 #define feraiseexcept(excepts) ({ 1; })
13 #endif