source: asp3_tinet_ecnl_rx/trunk/musl-1.1.18/src/stat/futimesat.c@ 337

Last change on this file since 337 was 337, checked in by coas-nagasima, 6 years ago

ASP3版ECNLを追加

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-csrc;charset=UTF-8
File size: 530 bytes
Line 
1#define _GNU_SOURCE
2#include <sys/time.h>
3#include <sys/stat.h>
4#include <errno.h>
5#include "syscall.h"
6#include "libc.h"
7
8int __futimesat(int dirfd, const char *pathname, const struct timeval times[2])
9{
10 struct timespec ts[2];
11 if (times) {
12 int i;
13 for (i=0; i<2; i++) {
14 if (times[i].tv_usec >= 1000000ULL)
15 return __syscall_ret(-EINVAL);
16 ts[i].tv_sec = times[i].tv_sec;
17 ts[i].tv_nsec = times[i].tv_usec * 1000;
18 }
19 }
20 return utimensat(dirfd, pathname, times ? ts : 0, 0);
21}
22
23weak_alias(__futimesat, futimesat);
Note: See TracBrowser for help on using the repository browser.