summaryrefslogtreecommitdiff
path: root/src/fenv/FE_ALL_EXCEPT.c
blob: bf470e4c0a0b2f5222bc8ffbd0f4a3549bfdd3c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <fenv.h>

#define FE_ALL_EXCEPT (FE_DIVBYZERO|FE_INEXACT|FE_INVALID|FE_OVERFLOW|FE_UNDERFLOW)

/* The bitwise OR of all supported macros */

/* see appendix F regarding __STDC_IEC_559__ == 1 */

/*
STDC(199901)
LINK(m)
*/