1 #include "decimal-dummy.h"
2 
3 typedef std::decimal::decimal32 dec32;
4 typedef std::decimal::decimal64 dec64;
5 typedef std::decimal::decimal128 dec128;
6 
7 #include "return_x.h"
8 
9 void
return_6_x(void)10 return_6_x (void)
11 {
12 DEBUG_INIT
13 
14 #define T(NAME) testit##NAME ();
15 
16 T(d32)
17 T(d64)
18 T(d128)
19 
20 DEBUG_FINI
21 
22 if (fails != 0)
23   abort ();
24 
25 #undef T
26 }
27