mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-02-15 21:49:22 +08:00
14 lines
179 B
C
14 lines
179 B
C
/* FIXME: From sys/sysvi386/sys */
|
|
#ifndef _SYS_UTIME_H
|
|
# define _SYS_UTIME_H
|
|
|
|
#include <time.h>
|
|
|
|
struct utimbuf {
|
|
time_t actime;
|
|
time_t modtime;
|
|
};
|
|
|
|
#endif /* _SYS_UTIME_H */
|
|
|