This is the mail archive of the libc-alpha@sources.redhat.com mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[patch] sysdeps/generic/utime.c


Hi,

sysdeps/generic/utime.c uses NULL, but doesn't include <stddef.h>, so
compilation failes.  This patch fixes it.

2004-11-03  Marcus Brinkmann  <marcus@gnu.org>

	* sysdeps/generic/utime.c: Include <stddef.h>.

--- /home/marcus/gnu/hurd/cvs/libc/sysdeps/generic/utime.c	2002-08-04 00:26:13.000000000 +0200
+++ ./sysdeps/generic/utime.c	2004-11-03 02:53:30.000000000 +0100
@@ -17,6 +17,7 @@
    02111-1307 USA.  */
 
 #include <errno.h>
+#include <stddef.h>
 #include <utime.h>
 
 


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]