repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fix setgroups behavior in multithreaded process
[musl.git]
/
src
/
linux
/
utimes.c
blob
6ca025d95a3255fccc5d5345683fc33aa62f42e6
1
#include <sys/time.h>
2
#include
"fcntl.h"
3
#include
"syscall.h"
4
5
int
utimes
(
const char
*
path
,
const struct
timeval times
[
2
])
6
{
7
return
__futimesat
(
AT_FDCWD
,
path
,
times
);
8
}