diff options
Diffstat (limited to 'gcc/sreal.h')
-rw-r--r-- | gcc/sreal.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/sreal.h b/gcc/sreal.h index 71cb91e..ac7de57 100644 --- a/gcc/sreal.h +++ b/gcc/sreal.h @@ -41,7 +41,7 @@ along with GCC; see the file COPYING3. If not see #endif /* Structure for holding a simple real number. */ -typedef struct sreal +struct sreal { #if SREAL_PART_BITS < 32 unsigned HOST_WIDE_INT sig_lo; /* Significant (lower part). */ @@ -50,7 +50,7 @@ typedef struct sreal unsigned HOST_WIDE_INT sig; /* Significant. */ #endif signed int exp; /* Exponent. */ -} sreal; +}; extern void dump_sreal (FILE *, sreal *); extern void debug (sreal &ref); |