summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/common/lutimes.c
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2011-03-18 15:37:35 +0100
committerKhem Raj <raj.khem@gmail.com>2011-03-19 11:51:25 -0700
commit251f2266bf24b1b396f59eef60d0acf41fdd02e4 (patch)
tree29fc55105ba0c08e6b782c7bf7774d3de6890fd0 /libc/sysdeps/linux/common/lutimes.c
parent0c18923cbc0123a2c940cb659b765ad1b303974c (diff)
lutimes.c, stubs.c: fix compiling lutimes, if __NR_utimensat is not defined
while there, provide stubs for functions depending on utimensat syscall. Reported-by: Sedat Dilek <sedat.dilek@googlemail.com> Signed-off-by: Peter S. Mazinger <ps.m@gmx.net> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'libc/sysdeps/linux/common/lutimes.c')
-rw-r--r--libc/sysdeps/linux/common/lutimes.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/common/lutimes.c b/libc/sysdeps/linux/common/lutimes.c
index 0b4a8ea45..e01d40efd 100644
--- a/libc/sysdeps/linux/common/lutimes.c
+++ b/libc/sysdeps/linux/common/lutimes.c
@@ -12,7 +12,7 @@
#ifdef __NR_lutimes
_syscall2(int, lutimes, const char *, file, const struct timeval *, tvp)
-#else
+#elif defined __NR_utimensat
#include <sys/time.h>
#include <fcntl.h>