* crc.h: Include stdint.h directly, suggested by Bruno Haible
authorSimon Josefsson <simon@josefsson.org>
Fri, 21 Oct 2005 12:33:03 +0000 (12:33 +0000)
committerSimon Josefsson <simon@josefsson.org>
Fri, 21 Oct 2005 12:33:03 +0000 (12:33 +0000)
<bruno@clisp.org>.

lib/ChangeLog
lib/crc.h

index 84ef9b9af2065ea2a46a8277c6aae516d2abf433..a8fa0dcae6411f687fbc0a47d91915949f913af2 100644 (file)
@@ -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.
index ee13dafeed1d1c9d4409b37abc182b44ac67e3cd..aaa728eb632a16dd623023e32014303758e941f7 100644 (file)
--- a/lib/crc.h
+++ b/lib/crc.h
 #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);