1*4684ddb6SLionel Sambuc #ifndef __DD_HEADER 2*4684ddb6SLionel Sambuc #define __DD_HEADER 3*4684ddb6SLionel Sambuc 4*4684ddb6SLionel Sambuc #include <stdint.h> 5*4684ddb6SLionel Sambuc 6*4684ddb6SLionel Sambuc typedef union { 7*4684ddb6SLionel Sambuc long double ld; 8*4684ddb6SLionel Sambuc struct { 9*4684ddb6SLionel Sambuc double hi; 10*4684ddb6SLionel Sambuc double lo; 11*4684ddb6SLionel Sambuc }; 12*4684ddb6SLionel Sambuc } DD; 13*4684ddb6SLionel Sambuc 14*4684ddb6SLionel Sambuc #endif // __DD_HEADER 15