Welcome to mirror list, hosted at ThFree Co, Russian Federation.

utime.h « sys « cygwin « sys « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 196b0891ef2fb41c3735c8e60d809d54c9250fd6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#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, struct utimbuf *__buf));

#ifdef __cplusplus
};
#endif

#endif /* _SYS_UTIME_H */