Blame view

include/linux/utime.h 152 Bytes
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
  #ifndef _LINUX_UTIME_H
  #define _LINUX_UTIME_H
82b0547cf   Alexey Dobriyan   [PATCH] Create fs...
3
  #include <linux/types.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
4
  struct utimbuf {
85efde6f4   Arnd Bergmann   make exported hea...
5
6
  	__kernel_time_t actime;
  	__kernel_time_t modtime;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
7
8
9
  };
  
  #endif