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

Note that libc-hacker is a closed list. You may look at the archives of this list, but subscription and posting are not open.


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

Fix futimes.c


<stdlib.h> and <string.h> are needed for NULL and memcpy.

Andreas.

2003-07-16  Andreas Schwab  <schwab@suse.de>

	* sysdeps/unix/sysv/linux/futimes.c: Include <stdlib.h> and
	<string.h>.

--- sysdeps/unix/sysv/linux/futimes.c.~1.4.~	2003-07-13 14:02:41.000000000 +0200
+++ sysdeps/unix/sysv/linux/futimes.c	2003-07-16 00:25:07.000000000 +0200
@@ -18,6 +18,8 @@
    02111-1307 USA.  */
 
 #include <errno.h>
+#include <stdlib.h>
+#include <string.h>
 #include <sysdep.h>
 #include <utime.h>
 #include <sys/time.h>


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