aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2000-06-02 16:40:09 +0000
committerBruce Momjian <bruce@momjian.us>2000-06-02 16:40:09 +0000
commit58785757dd7083716bd9660134000bed8d383d55 (patch)
tree721d5f730a7c3c983a969d11a2861633fd0924de
parenta305c7d675b79d8b7716caebc2d7de5bd2aaa10a (diff)
downloadpostgresql-58785757dd7083716bd9660134000bed8d383d55.tar.gz
postgresql-58785757dd7083716bd9660134000bed8d383d55.zip
More cleanup of c.h binary macros
-rw-r--r--src/include/c.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/c.h b/src/include/c.h
index c76d02f3ac2..4e981f92384 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.72 2000/06/02 16:33:17 momjian Exp $
+ * $Id: c.h,v 1.73 2000/06/02 16:40:09 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -897,11 +897,11 @@ extern char *vararg_format(const char *fmt,...);
*/
#ifdef __CYGWIN32__
-#define PG_BINARY 0
+#define PG_BINARY O_BINARY
#define PG_BINARY_R "rb"
#define PG_BINARY_W "wb"
#else
-#define PG_BINARY O_BINARY
+#define PG_BINARY 0
#define PG_BINARY_R "r"
#define PG_BINARY_W "w"
#endif