blob: 8c35a1aac09c3ebb87cd0d4cd0fccf935fc8816d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef _UTIME_H
#define _UTIME_H 1
#ifndef _TIME_H
#include <time.h>
#endif
struct utimbuf {
time_t actime;
time_t modtime;
};
extern int utime (char *path, struct utimbuf *times);
#endif
|