summaryrefslogtreecommitdiff
path: root/libkern/frexp-arm.c
diff options
context:
space:
mode:
authorCharles.Forsyth <devnull@localhost>2009-06-27 21:08:09 +0000
committerCharles.Forsyth <devnull@localhost>2009-06-27 21:08:09 +0000
commit7b3bf63c0d3f8b97a41a7022310b70c5d40c6fc6 (patch)
tree9169f8693575244e32c6a5737c6e0879a91453ed /libkern/frexp-arm.c
parent7cdb1d14cab5ad4eceb9edfc484ea272cf8a062d (diff)
20090627-2207
Diffstat (limited to 'libkern/frexp-arm.c')
-rw-r--r--libkern/frexp-arm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libkern/frexp-arm.c b/libkern/frexp-arm.c
index 0acf6ec1..8973a14d 100644
--- a/libkern/frexp-arm.c
+++ b/libkern/frexp-arm.c
@@ -7,10 +7,10 @@
typedef union
{
double d;
- struct /* this is BIGENDIAN */
+ struct
{
- long ms;
long ls;
+ long ms;
};
} Cheat;