changeset 4310:17ce7ef2789c

Include <stddef.h>, for size_t.
author Bruno Haible <bruno@clisp.org>
date Fri, 25 Apr 2003 10:47:15 +0000
parents 810c77bb1ff7
children 60b67e1ebd75
files lib/ChangeLog lib/copy-file.c
diffstat 2 files changed, 5 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/lib/ChangeLog
+++ b/lib/ChangeLog
@@ -1,3 +1,7 @@
+2003-04-25  Bruno Haible  <bruno@clisp.org>
+
+	* copy-file.c: Include <stddef.h>, for size_t.
+
 2003-04-25  Jim Meyering  <jim@meyering.net>
 
 	* copy-file.c (copy_file_preserving): Declare buf_size to be
--- a/lib/copy-file.c
+++ b/lib/copy-file.c
@@ -26,6 +26,7 @@
 
 #include <errno.h>
 #include <fcntl.h>
+#include <stddef.h>
 #include <sys/stat.h>
 
 #ifdef HAVE_UNISTD_H