1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-30 11:03:19 +03:00

Standardize on __CYGWIN__ rather than __CYGWIN32__ macro. Doesn't matter

either way (although the former is preferred by the Cygwin folks
themselves), but using only one seems nicer.
This commit is contained in:
Peter Eisentraut
2000-09-29 13:53:35 +00:00
parent 30826ce8e3
commit 2a7da3f564
6 changed files with 17 additions and 17 deletions

View File

@ -9,7 +9,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/adt/nabstime.c,v 1.73 2000/07/28 02:13:31 tgl Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/adt/nabstime.c,v 1.74 2000/09/29 13:53:31 petere Exp $
*
* NOTES
*
@ -166,7 +166,7 @@ GetCurrentAbsoluteTime(void)
CDayLight = tm->tm_isdst;
CTimeZone =
#ifdef __CYGWIN32__
#ifdef __CYGWIN__
(tm->tm_isdst ? (_timezone - 3600) : _timezone);
#else
(tm->tm_isdst ? (timezone - 3600) : timezone);