fix wide scanf's handling of input failure on %c, and simplify %[
[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 }