summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin/include/sys/utime.h
blob: 9ec57ab088f35e7058ba405816226587f91a4b4c (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
29
30
/* sys/utime.h

   Copyright 2001, 2003, 2005 Red Hat, Inc.

   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 */