summaryrefslogtreecommitdiff
path: root/bits.h
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2005-06-11 15:09:43 +0000
committerEric S. Raymond <esr@thyrsus.com>2005-06-11 15:09:43 +0000
commit3bd70dbc081728538734b9fd00872d633c716582 (patch)
treebdd373ebad0e86ff65ebca55a93800827001fe4c /bits.h
parentcc576322c3fe31952e2cac3460948e0ea8bbb64a (diff)
downloadgpsd-3bd70dbc081728538734b9fd00872d633c716582.tar.gz
Rob Janssen's first TSIP patch.
Diffstat (limited to 'bits.h')
-rw-r--r--bits.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/bits.h b/bits.h
index 18bcfebf..390a94f1 100644
--- a/bits.h
+++ b/bits.h
@@ -15,12 +15,12 @@
*/
union int_float {
- int i;
+ int32_t i;
float f;
};
union long_double {
- long long l;
+ int64_t l;
double d;
};