aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/utime.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/utime.h')
-rw-r--r--include/linux/utime.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/include/linux/utime.h b/include/linux/utime.h
new file mode 100644
index 00000000000..5cdf673afbd
--- /dev/null
+++ b/include/linux/utime.h
@@ -0,0 +1,11 @@
1#ifndef _LINUX_UTIME_H
2#define _LINUX_UTIME_H
3
4#include <linux/types.h>
5
6struct utimbuf {
7 __kernel_time_t actime;
8 __kernel_time_t modtime;
9};
10
11#endif