summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin/include/cygwin/time.h
blob: a1080a1c0cdc6d8de46cc329f4be11b65b8dc25d (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
31
32
33
34
35
36
37
38
39
40
41
/* time.h

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_TIME_H
#define _CYGWIN_TIME_H
#ifdef __cplusplus
extern "C"
{
#endif

/* Not defined in main time.h */
int __cdecl clock_setres (clockid_t, struct timespec *);

/* GNU extensions. */
time_t __cdecl timelocal (struct tm *);
time_t __cdecl timegm (struct tm *);

#define TIMER_RELTIME  0 /* For compatibility with HP/UX, Solaris, others? */

#if __SVID_VISIBLE
extern int stime (const time_t *);
#endif

#if __SVID_VISIBLE || __XSI_VISIBLE
extern int daylight __asm__ (_SYMSTR (_daylight));

#ifndef __timezonefunc__
extern long timezone __asm__ (_SYMSTR (_timezone));
#endif

#endif /* __SVID_VISIBLE || __XSI_VISIBLE */

#ifdef __cplusplus
}
#endif
#endif /*_CYGWIN_TIME_H*/