summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1996-01-17 22:33:48 +0000
committerRoland McGrath <roland@gnu.org>1996-01-17 22:33:48 +0000
commit069aa63891e23b7b97e7c6bf2e3893384a32b031 (patch)
treee22197be75780a614cd068acd7f9cdb6d6f1fcd2
parent44534645d62a2be9215a9b3691eb7f6652559353 (diff)
(union ieee854_long_double.ieee_nan): Add missing ; in little-endian case.
-rw-r--r--misc/Makefile2
-rw-r--r--sysdeps/ieee754/ieee754.h12
2 files changed, 7 insertions, 7 deletions
diff --git a/misc/Makefile b/misc/Makefile
index f557e59a6c..775d6c6bb3 100644
--- a/misc/Makefile
+++ b/misc/Makefile
@@ -38,7 +38,7 @@ routines := brk sbrk sstk ioctl \
select \
acct chroot fsync sync reboot \
gethostid sethostid \
- revoke vhangup mknod \
+ revoke vhangup \
swapon mktemp mkstemp \
ualarm usleep \
gtty stty \
diff --git a/sysdeps/ieee754/ieee754.h b/sysdeps/ieee754/ieee754.h
index 632564e330..3255ee6b1c 100644
--- a/sysdeps/ieee754/ieee754.h
+++ b/sysdeps/ieee754/ieee754.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 1992, 1995 Free Software Foundation, Inc.
+/* Copyright (C) 1992, 1995, 1996 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -21,7 +21,7 @@ Cambridge, MA 02139, USA. */
union ieee754_float
{
float f;
-
+
/* This is the IEEE 754 single-precision format. */
struct
{
@@ -61,7 +61,7 @@ union ieee754_float
union ieee754_double
{
double d;
-
+
/* This is the IEEE 754 double-precision format. */
struct
{
@@ -108,7 +108,7 @@ union ieee754_double
union ieee854_long_double
{
long double d;
-
+
/* This is the IEEE 854 double-extended-precision format. */
struct
{
@@ -127,7 +127,7 @@ union ieee854_long_double
unsigned int empty:16;
#endif
} ieee;
-
+
/* This is for NaNs in the IEEE 854 double-extended-precision format. */
struct
{
@@ -144,7 +144,7 @@ union ieee854_long_double
unsigned int mantissa1:32;
unsigned int mantissa0:30;
unsigned int quiet_nan:1;
- unsigned int one:1
+ unsigned int one:1;
unsigned int exponent:15;
unsigned int negative:1;
unsigned int empty:16;