1
#pragma once
2
3
#include <sys/types.h>
4
#include <time.h>
5
6
struct utimbuf {
7
time_t actime;
8
time_t modtime;
9
};
10
11
#ifndef _KERNEL
12
int utime(const char *filename, const struct utimbuf *times);
13
#endif