Remove various duplicated #include directives
[pspp-builds.git] / src / libpspp / hash.c
index eb43b54e7fedf24d7db0dd569cc34d885bb91dd4..f2d99e3a8f31204d9a93d48cc1208695bff78713 100644 (file)
    along with this program.  If not, see <http://www.gnu.org/licenses/>. */
 
 #include <config.h>
-#include <stdbool.h>
-#include "hash.h"
-#include "message.h"
+
 #include <assert.h>
 #include <limits.h>
 #include <stdbool.h>
 #include <stdlib.h>
+
 #include "array.h"
 #include "compiler.h"
+#include "hash.h"
 #include "misc.h"
-#include "str.h"
 #include "pool.h"
+#include "str.h"
 
 #include "xalloc.h"
 
@@ -542,7 +542,7 @@ hsh_dump (struct hsh_table *h)
   void **entry = h->entries;
   int i;
 
-  printf (_("hash table:"));
+  printf ("hash table:");
   for (i = 0; i < h->size; i++)
     printf (" %p", *entry++);
   printf ("\n");