about summary refs log tree commit diff
path: root/include/utime.h
blob: eb907f7472424c742a0b8943b580902caf419ebc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef _UTIME_H

#include <io/utime.h>

#ifndef _ISOMAC
libc_hidden_proto (utime)
#endif

/* Structure describing file times, 64-bit time version.  */
struct __utimbuf64
  {
    __time64_t actime;		/* Access time.  */
    __time64_t modtime;		/* Modification time.  */
  };

#endif /* utime.h */