* crc.h: Include stddef.h, for size_t.
authorSimon Josefsson <simon@josefsson.org>
Sat, 22 Oct 2005 16:16:06 +0000 (16:16 +0000)
committerSimon Josefsson <simon@josefsson.org>
Sat, 22 Oct 2005 16:16:06 +0000 (16:16 +0000)
lib/ChangeLog
lib/crc.h

index 6d6ec2c..2683822 100644 (file)
@@ -1,3 +1,7 @@
+2005-10-22  Simon Josefsson  <jas@extundo.com>
+
+       * crc.h: Include stddef.h, for size_t.
+
 2005-10-21  Simon Josefsson  <jas@extundo.com>
 
        * arctwo.h (arctwo_setkey): Protect variable in CPP macro,
index aaa728e..6d3d70d 100644 (file)
--- a/lib/crc.h
+++ b/lib/crc.h
@@ -20,6 +20,7 @@
 #ifndef CRC_H
 # define CRC_H 1
 
+#include <stddef.h>
 #include <stdint.h>
 
 /* Compute CRC-32 value of LEN bytes long BUF, and return it. */