summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin/include/sys/utime.h
blob: 8408fa1df9da908038fae86cc4bbd63d79d3662e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/* sys/utime.h

   This software is a copyrighted work licensed under the terms of the
   Cygwin license.  Please consult the file "CYGWIN_LICENSE" for
   details. */

#ifndef _SYS_UTIME_H
#define _SYS_UTIME_H

#ifdef __cplusplus
extern "C" {
#endif
#include <_ansi.h>
#include <sys/types.h>

struct utimbuf
{
  time_t actime;
  time_t modtime;
};

int _EXFUN(utime, (const char *__path, const struct utimbuf *__buf));

#ifdef __cplusplus
};
#endif

#endif /* _SYS_UTIME_H */