Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef _LINUX_UTIME_H |
2 | #define _LINUX_UTIME_H | ||||
3 | |||||
Alexey Dobriyan | 82b0547 | 2006-09-30 23:27:22 -0700 | [diff] [blame] | 4 | #include <linux/types.h> |
5 | |||||
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | struct utimbuf { |
7 | time_t actime; | ||||
8 | time_t modtime; | ||||
9 | }; | ||||
10 | |||||
11 | #endif |