summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2011-03-23 11:02:27 +0100
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2012-06-15 14:00:31 +0200
commit8f1ba5cd4ff6dc1dcf682796ed41d1880aa8d19c (patch)
tree28424249e9071c971c53ec147f5940e8fd8de5fa
parentb2b5d473e02d02f2888cf5848cbbdc2a46f57951 (diff)
utime.c,utimes.c: include headers only when needed
Signed-off-by: Peter S. Mazinger <ps.m@gmx.net> Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
-rw-r--r--libc/sysdeps/linux/common/utime.c7
-rw-r--r--libc/sysdeps/linux/common/utimes.c7
2 files changed, 6 insertions, 8 deletions
diff --git a/libc/sysdeps/linux/common/utime.c b/libc/sysdeps/linux/common/utime.c
index c9fd1bfbb..2573e00eb 100644
--- a/libc/sysdeps/linux/common/utime.c
+++ b/libc/sysdeps/linux/common/utime.c
@@ -10,13 +10,12 @@
#include <sys/syscall.h>
#include <utime.h>
-
#ifdef __NR_utime
_syscall2(int, utime, const char *, file, const struct utimbuf *, times)
#else
-#include <stdlib.h>
-#include <sys/time.h>
-
+# define __need_NULL
+# include <stddef.h>
+# include <sys/time.h>
int utime(const char *file, const struct utimbuf *times)
{
diff --git a/libc/sysdeps/linux/common/utimes.c b/libc/sysdeps/linux/common/utimes.c
index 99d92027b..ac9aff53d 100644
--- a/libc/sysdeps/linux/common/utimes.c
+++ b/libc/sysdeps/linux/common/utimes.c
@@ -8,15 +8,14 @@
*/
#include <sys/syscall.h>
-#include <utime.h>
#include <sys/time.h>
-
#ifdef __NR_utimes
_syscall2(int, utimes, const char *, file, const struct timeval *, tvp)
#else
-#include <stdlib.h>
-
+# define __need_NULL
+# include <stddef.h>
+# include <utime.h>
int utimes(const char *file, const struct timeval tvp[2])
{