blob: bd73eae7ed0a2a0606e5625b9bc435b5042bd05b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/*
* futimesat() for uClibc
*
* Copyright (C) 2009 Analog Devices Inc.
*
* Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
*/
#include <sys/syscall.h>
#include <sys/time.h>
#ifdef __NR_futimesat
_syscall3(int, futimesat, int, fd, const char *, file, const struct timeval *, tvp)
#else
/* should add emulation with futimes() and /proc/self/fd/ ... */
#endif
|