brintos

brintos / llvm-project-archived public Read only

0
0
Text · 164 B · fd62dae Raw
15 lines · c
1#ifndef __DD_HEADER2#define __DD_HEADER3 4#include <stdint.h>5 6typedef union {7	long double ld;8	struct {9		double hi;10		double lo;11	};12} DD;13 14#endif // __DD_HEADER15