mq names without leading / have impl-def behavior; allowing them is easier
[musl] / src / time / utime.c
1 #include <utime.h>
2 #include "syscall.h"
3
4 int utime(const char *path, const struct utimbuf *times)
5 {
6         return syscall(SYS_utime, path, times);
7 }