blob: 640be6a1959e8074ad79bce56ef71ecbeb779053 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _LINUX_UTIME_H
2#define _LINUX_UTIME_H
3
Alexey Dobriyan82b05472006-09-30 23:27:22 -07004#include <linux/types.h>
5
Linus Torvalds1da177e2005-04-16 15:20:36 -07006struct utimbuf {
7 time_t actime;
8 time_t modtime;
9};
10
11#endif