Home | History | Annotate | Line # | Download | only in ppc
      1  1.1  joerg #ifndef __DD_HEADER
      2  1.1  joerg #define __DD_HEADER
      3  1.1  joerg 
      4  1.1  joerg #include <stdint.h>
      5  1.1  joerg 
      6  1.1  joerg typedef union {
      7  1.1  joerg 	long double ld;
      8  1.1  joerg 	struct {
      9  1.1  joerg 		double hi;
     10  1.1  joerg 		double lo;
     11  1.1  joerg 	};
     12  1.1  joerg } DD;
     13  1.1  joerg 
     14  1.1  joerg #endif // __DD_HEADER
     15