minix/sys/external/bsd/compiler_rt/dist/test/Unit/ppc/DD.h

15 lines
164 B
C
Raw Normal View History

#ifndef __DD_HEADER
#define __DD_HEADER
#include <stdint.h>
typedef union {
long double ld;
struct {
double hi;
double lo;
};
} DD;
#endif // __DD_HEADER