summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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])
{