blob: f79fcfa93d2f25fde071815d5f7d179b2b30b14c (
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)
*/
|