]>
git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/linux/utime.h
Commit | Line | Data |
1da177e4 LT |
1 | #ifndef _LINUX_UTIME_H |
2 | #define _LINUX_UTIME_H |
3 | |
82b0547c AD |
4 | #include <linux/types.h> |
5 | |
1da177e4 LT |
6 | struct utimbuf { |
7 | time_t actime; |
8 | time_t modtime; |
9 | }; |
10 | |
11 | #endif |