summaryrefslogtreecommitdiffstats
path: root/public/sdk/inc/posix/utime.h
blob: c2167d173c7eb999dee6caf13178248ca115ccaa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*++

Copyright (c) 1989-1996  Microsoft Corporation

Module Name:

   utime.h

Abstract:

   This module contains the utimbuf structure described in section 5.6.6.2
   of IEEE P1003.1/Draft 13.

--*/

#ifndef _UTIME_
#define _UTIME_

#include <types.h>

#ifdef __cplusplus
extern "C" {
#endif

struct utimbuf {
    time_t actime;
    time_t modtime;
};

#ifdef __cplusplus
}
#endif

#endif /* _UTIME_ */