858db4a0512a90d1c566c35a9b8d9d8d3d977262
[platform/upstream/glibc.git] / ports / sysdeps / tile / math_private.h
1 #ifndef _MATH_PRIVATE_H
2
3 #include_next <math_private.h>
4
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; })
12
13 #endif