blob: d7972d7ab8b2e8071f37689041310335ebe3a5ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#if 0
#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)
*/
#endif
|