4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-18 20:39:33 +08:00

24 lines
246 B
C
Raw Normal View History

#ifndef _SYS_UTIME_H
#define _SYS_UTIME_H
#ifdef __cplusplus
extern "C" {
#endif
/*
* Per POSIX
*/
struct utimbuf
{
time_t actime;
time_t modtime;
};
int utime(const char *, const struct utimbuf *);
#ifdef __cplusplus
};
#endif
#endif