Corinna Vinschen cf632a487b * Makefile.in (OBSOLETE_FUNCTIONS): Add timezone.
* include/cygwin/time.h: Drop conditional timezone definitions.
	(timezone): Declare as extern symbol referring _timezone variable.
2007-12-01 13:04:43 +00:00

40 lines
787 B
C

/* time.h
Copyright 2005, 2007 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_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? */
#ifndef __STRICT_ANSI__
# ifndef daylight
# define daylight _daylight
# endif
extern long timezone __asm__ ("__timezone");
#endif /*__STRICT_ANSI__*/
#ifdef __cplusplus
}
#endif
#endif /*_CYGWIN_TIME_H*/