summaryrefslogtreecommitdiff
path: root/tests/ldbl.c
blob: f3d8cae1dd1ed163e17e84aa19bd6236cd21044c (plain)
1
2
3
4
5
6
7
8
9
// #include <float.h>
int main (void) {
  typedef int check[sizeof (long double) == sizeof (double)
                    // && LDBL_MANT_DIG == DBL_MANT_DIG
                    // && LDBL_MAX_EXP == DBL_MAX_EXP
                    // && LDBL_MIN_EXP == DBL_MIN_EXP
                    ? 1 : -1];
  return 0;
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback