mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-02-24 09:39:33 +08:00
13 lines
144 B
C
13 lines
144 B
C
#ifndef _SYS_UTIME_H
|
|
# define _SYS_UTIME_H
|
|
|
|
#include <time.h>
|
|
|
|
struct utimbuf {
|
|
time_t actime;
|
|
time_t modtime;
|
|
};
|
|
|
|
#endif /* _SYS_UTIME_H */
|
|
|