Improve comment.
[pspp-builds.git] / src / libpspp / float-format.h
index 14ef2c42c3741cfe714d9eb448cff4aeeb8a5d8e..a71bf18e2d68c3a1113793cf5eccdf141f58affe 100644 (file)
@@ -1,6 +1,5 @@
 /* PSPP - computes sample statistics.
    Copyright (C) 2006 Free Software Foundation, Inc.
-   Written by Ben Pfaff <blp@gnu.org>.
 
    This program is free software; you can redistribute it and/or
    modify it under the terms of the GNU General Public License as
@@ -25,7 +24,7 @@
 #include <libpspp/compiler.h>
 
 /* A floating-point format. */
-enum float_format 
+enum float_format
   {
     /* IEEE 754 formats. */
     FLOAT_IEEE_SINGLE_LE,          /* 32 bit, little endian. */
@@ -49,7 +48,7 @@ enum float_format
 #ifdef FPREP_IEEE754
 #ifdef WORDS_BIGENDIAN
     FLOAT_NATIVE_FLOAT = FLOAT_IEEE_SINGLE_BE,
-    FLOAT_NATIVE_DOUBLE = FLOAT_IEEE_DOUBLE_BE
+    FLOAT_NATIVE_DOUBLE = FLOAT_IEEE_DOUBLE_BE,
     FLOAT_NATIVE_32_BIT = FLOAT_IEEE_SINGLE_BE,
     FLOAT_NATIVE_64_BIT = FLOAT_IEEE_DOUBLE_BE
 #else