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. 7 * 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. 12 * 13 * You are free to use this package and its code without limitation. 14 */ 15 16/* 17 * Structure used by _utime function. 18 */ 19struct _utimbuf 20{ 21time_t actime;/* Access time */ 22time_t modtime;/* Modification time */ 23}; 24 25#ifndef _NO_OLDNAMES 26/* NOTE: Must be the same as _utimbuf above. */ 27struct utimbuf 28{ 29time_t actime; 30time_t modtime; 31}; 32#endif/* Not _NO_OLDNAMES */ 33 34#endif