From 81ce966eab35ad8dc67c13d689ebef28e6813f28 Mon Sep 17 00:00:00 2001
From: Simon Josefsson <simon@josefsson.org>
Date: Fri, 21 Oct 2005 12:33:03 +0000
Subject: [PATCH] * crc.h: Include stdint.h directly, suggested by Bruno Haible
 <bruno@clisp.org>.

---
 lib/ChangeLog | 5 +++++
 lib/crc.h     | 8 +-------
 2 files changed, 6 insertions(+), 7 deletions(-)

diff --git a/lib/ChangeLog b/lib/ChangeLog
index 84ef9b9af2..a8fa0dcae6 100644
--- a/lib/ChangeLog
+++ b/lib/ChangeLog
@@ -1,3 +1,8 @@
+2005-10-21  Simon Josefsson  <jas@extundo.com>
+
+	* crc.h: Include stdint.h directly, suggested by Bruno Haible
+	<bruno@clisp.org>.
+
 2005-10-21  Simon Josefsson  <jas@extundo.com>
 
 	* des.h, des.c: New files.
diff --git a/lib/crc.h b/lib/crc.h
index ee13dafeed..aaa728eb63 100644
--- a/lib/crc.h
+++ b/lib/crc.h
@@ -20,13 +20,7 @@
 #ifndef CRC_H
 # define CRC_H 1
 
-#include <stddef.h>
-#if HAVE_INTTYPES_H
-# include <inttypes.h>
-#endif
-#if HAVE_STDINT_H
-# include <stdint.h>
-#endif
+#include <stdint.h>
 
 /* Compute CRC-32 value of LEN bytes long BUF, and return it. */
 extern uint32_t crc32 (const char *buf, size_t len);
-- 
2.39.5