repo.or.cz
/
minix3.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
custom message type for VM_INFO
[minix3.git]
/
sys
/
external
/
bsd
/
compiler_rt
/
dist
/
test
/
Unit
/
ppc
/
DD.h
blob
fd62dae16b22eb7495d822033718ad281b708ae7
1
#ifndef __DD_HEADER
2
#define __DD_HEADER
3
4
#include <stdint.h>
5
6
typedef
union
{
7
long double
ld
;
8
struct
{
9
double
hi
;
10
double
lo
;
11
};
12
}
DD
;
13
14
#endif
// __DD_HEADER