diff options
author | Rich Felker <dalias@aerifal.cx> | 2013-02-26 08:54:31 -0500 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2013-02-26 08:54:31 -0500 |
commit | 99727dad25c6fd852291beef5e0da0a8d2ec8208 (patch) | |
tree | e2344d7ce75c23f96d571521cf67d6f476d2b548 | |
parent | e201d82aac6241c28cf53b51444e954bb5ebe5df (diff) | |
download | musl-99727dad25c6fd852291beef5e0da0a8d2ec8208.tar.gz |
fix wrong float_t on x86_64
x86_64 does not have excess precision, at all
-rwxr-xr-x | arch/x86_64/bits/alltypes.h.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86_64/bits/alltypes.h.sh b/arch/x86_64/bits/alltypes.h.sh index e19a4700..083ea230 100755 --- a/arch/x86_64/bits/alltypes.h.sh +++ b/arch/x86_64/bits/alltypes.h.sh @@ -55,7 +55,7 @@ TYPEDEF uint64_t uint_fast64_t; TYPEDEF long intptr_t; TYPEDEF unsigned long uintptr_t; -TYPEDEF double float_t; +TYPEDEF float float_t; TYPEDEF double double_t; TYPEDEF long time_t; |