Commit /bin/cc.exe (a hardlink of /bin/gcc.exe)
[msysgit.git] / include / sys / utime.h
blob5565b361da6b7eabeee8580c161dd4f440d95abd
1 /* sys/utime.h
3 Copyright 2001 Red Hat, Inc.
5 This software is a copyrighted work licensed under the terms of the
6 Cygwin license. Please consult the file "CYGWIN_LICENSE" for
7 details. */
9 #ifndef _SYS_UTIME_H
10 #define _SYS_UTIME_H
12 #ifdef __cplusplus
13 extern "C" {
14 #endif
15 #include <_ansi.h>
16 #include <sys/types.h>
18 struct utimbuf
20 time_t actime;
21 time_t modtime;
24 int _EXFUN(utime, (const char *__path, struct utimbuf *__buf));
26 #ifdef __cplusplus
28 #endif
30 #endif /* _SYS_UTIME_H */