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

sys_time.h « cygwin « include « cygwin « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1cbd8ae59292f2171218b127763afb49bfbffc2c (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
/* sys_time.h

   Copyright 2005 Red Hat Inc.

This file is part of Cygwin.

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

#ifndef _CYGWIN_SYS_TIME_H
#define _CYGWIN_SYS_TIME_H
#include <sys/select.h>

#ifdef __cplusplus
extern "C"
{
#endif

int futimes (int, const struct timeval *);
int lutimes (const char *, const struct timeval *);


#ifdef __cplusplus
}
#endif
#endif /*_CYGWIN_SYS_TIME_H*/