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.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/linux/utime.h b/include/linux/utime.h
new file mode 100644
index 000000000000..c6bf27b7897e
--- /dev/null
+++ b/include/linux/utime.h
@@ -0,0 +1,9 @@
+#ifndef _LINUX_UTIME_H
+#define _LINUX_UTIME_H
+
+struct utimbuf {
+ time_t actime;
+ time_t modtime;
+};
+
+#endif