Files
linux-packaging-mono/external/llvm-project/compiler-rt/test/builtins/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