Add MinGW header files to build git with MSVC
[git/dscho.git] / compat / vcbuild / include / sys / utime.h
blob582589c70a1b81c1f3659e2c5469228733a0f98c
1 #ifndef _UTIME_H_
2 #define _UTIME_H_
3 /*
4 * UTIME.H
5 * This file has no copyright assigned and is placed in the Public Domain.
6 * This file is a part of the mingw-runtime package.
8 * The mingw-runtime package and its code is distributed in the hope that it
9 * will be useful but WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESSED OR
10 * IMPLIED ARE HEREBY DISCLAIMED. This includes but is not limited to
11 * warranties of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13 * You are free to use this package and its code without limitation.
17 * Structure used by _utime function.
19 struct _utimbuf
21 time_t actime; /* Access time */
22 time_t modtime; /* Modification time */
25 #ifndef _NO_OLDNAMES
26 /* NOTE: Must be the same as _utimbuf above. */
27 struct utimbuf
29 time_t actime;
30 time_t modtime;
32 #endif /* Not _NO_OLDNAMES */
34 #endif