OSDN Git Service

lseek: Correct order of offset arguments
[uclinux-h8/uClibc.git] / libc / sysdeps / linux / common / futimesat.c
1 /*
2  * futimesat() for uClibc
3  *
4  * Copyright (C) 2009 Analog Devices Inc.
5  *
6  * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
7  */
8
9 #include <sys/syscall.h>
10 #include <sys/time.h>
11
12 #ifdef __NR_futimesat
13 _syscall3(int, futimesat, int, fd, const char *, file, const struct timeval *, tvp)
14 #else
15 /* should add emulation with futimes() and /proc/self/fd/ ... */
16 #endif