diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2000-09-29 13:53:35 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2000-09-29 13:53:35 +0000 |
commit | 2a7da3f5648684df07126e94a96dc5bb82a9ba65 (patch) | |
tree | 7f928ae93779f7aa57979e448be95f792d8037cb /src/include/c.h | |
parent | 30826ce8e3a95c846393a65826a774f0ba8dccb4 (diff) | |
download | postgresql-2a7da3f5648684df07126e94a96dc5bb82a9ba65.tar.gz postgresql-2a7da3f5648684df07126e94a96dc5bb82a9ba65.zip |
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.
Diffstat (limited to 'src/include/c.h')
-rw-r--r-- | src/include/c.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/include/c.h b/src/include/c.h index 8bdb40a58a7..a11106df8c8 100644 --- a/src/include/c.h +++ b/src/include/c.h @@ -8,7 +8,7 @@ * Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: c.h,v 1.81 2000/08/21 17:22:32 tgl Exp $ + * $Id: c.h,v 1.82 2000/09/29 13:53:32 petere Exp $ * *------------------------------------------------------------------------- */ @@ -52,7 +52,7 @@ #include <stddef.h> #include <stdarg.h> -#ifdef __CYGWIN32__ +#ifdef __CYGWIN__ #include <errno.h> #include <sys/fcntl.h> /* ensure O_BINARY is available */ #endif @@ -921,7 +921,7 @@ extern char *vararg_format(const char *fmt,...); * ---------------------------------------------------------------- */ -#ifdef __CYGWIN32__ +#ifdef __CYGWIN__ #define PG_BINARY O_BINARY #define PG_BINARY_R "rb" #define PG_BINARY_W "wb" @@ -942,7 +942,7 @@ extern char *vararg_format(const char *fmt,...); #define SEP_CHAR '/' /* defines for dynamic linking on Win32 platform */ -#ifdef __CYGWIN32__ +#ifdef __CYGWIN__ #if __GNUC__ && ! defined (__declspec) #error You need egcs 1.1 or newer for compiling! #endif |