blob: ea8da2f3c93d00e462a6b78e7f4ffa2c9c7cf623 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include <sys/types.h>
#include <sys/stat.h>
#include "syscall.h"
#include "eit.h"
int
_utime (path, times)
const char *path;
char *times;
{
return TRAP0 (SYS_utime, path, times, 0);
}
|