1
0
mirror of https://github.com/postgres/postgres.git synced 2025-09-02 04:21:28 +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

@@ -94,7 +94,7 @@ char **argv;
in_file = stdin;
else
{
#ifndef __CYGWIN32__
#ifndef __CYGWIN__
if ((in_file = fopen(*argv, "r")) == NULL)
#else
if ((in_file = fopen(*argv, "rb")) == NULL)