merge from gcc
[deliverable/binutils-gdb.git] / libdecnumber / dpd / decimal128.h
index f8f5b5a8ff222aace913bdda0cb09393a7930da3..95f73f4bbf4086d1a50e15aa6ca972b5381bae21 100644 (file)
@@ -29,7 +29,7 @@
    02110-1301, USA.  */
 
 /* ------------------------------------------------------------------ */
-/* Decimal 128-bit format module header                                      */
+/* Decimal 128-bit format module header                              */
 /* ------------------------------------------------------------------ */
 
 #if !defined(DECIMAL128)
@@ -46,7 +46,7 @@
   #define DECIMAL128_Bias   6176       /* bias for the exponent      */
   #define DECIMAL128_String 43         /* maximum string length, +1  */
   #define DECIMAL128_EconL  12         /* exp. continuation length   */
-  /* highest biased exponent (Elimit-1)                                      */
+  /* highest biased exponent (Elimit-1)                              */
   #define DECIMAL128_Ehigh  (DECIMAL128_Emax+DECIMAL128_Bias-DECIMAL128_Pmax+1)
 
   /* check enough digits, if pre-defined                             */
   /* special values [top byte excluding sign bit; last two bits are   */
   /* don't-care for Infinity on input, last bit don't-care for NaN]   */
   #if !defined(DECIMAL_NaN)
-    #define DECIMAL_NaN            0x7c        /* 0 11111 00 NaN             */
+    #define DECIMAL_NaN     0x7c       /* 0 11111 00 NaN             */
     #define DECIMAL_sNaN    0x7e       /* 0 11111 10 sNaN            */
-    #define DECIMAL_Inf            0x78        /* 0 11110 00 Infinity        */
+    #define DECIMAL_Inf     0x78       /* 0 11110 00 Infinity        */
   #endif
 
-  #include "decimal128Local.h"
+#include "decimal128Local.h"
 
   /* ---------------------------------------------------------------- */
   /* Routines                                                        */
   /* ---------------------------------------------------------------- */
 
-  #include "decimal128Symbols.h"
+#include "decimal128Symbols.h"
 
-  /* String conversions                                                      */
+  /* String conversions                                              */
   decimal128 * decimal128FromString(decimal128 *, const char *, decContext *);
   char * decimal128ToString(const decimal128 *, char *);
   char * decimal128ToEngString(const decimal128 *, char *);
@@ -94,7 +94,7 @@
                                    decContext *);
   decNumber * decimal128ToNumber(const decimal128 *, decNumber *);
 
-  /* Format-dependent utilities                                              */
+  /* Format-dependent utilities                                      */
   uint32_t    decimal128IsCanonical(const decimal128 *);
   decimal128 * decimal128Canonical(decimal128 *, const decimal128 *);
 
This page took 0.024837 seconds and 4 git commands to generate.