blob: 0ff3400622bfae588869254c49f745192d7c5b44 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include "time.h"
#include <utime.h>
#include "_syscall.h"
int utime(const char *path, const struct utimbuf *times)
{
SYSCALL(utime, int, -1, path, times, 0, 0, 0, 0);
}
/*
POSIX(1)
*/
|