1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-08-17 09:06:50 +02:00

Move the OPENOPTS def from end to beginning of else clause so it's closer

to the one in the then clause.
This commit is contained in:
Jim Meyering
1997-06-29 01:56:36 +00:00
parent f657d65570
commit a13135d09e
+2 -1
View File
@@ -34,9 +34,11 @@
/* Most systems do not distinguish between external and internal
text representations. */
/* FIXME: This begs for an autoconf test. */
#if UNIX || __UNIX__ || unix || __unix__ || _POSIX_VERSION
# define OPENOPTS(BINARY) "r"
#else
# define OPENOPTS(BINARY) ((BINARY) != 0 ? TEXT1TO1 : TEXTCNVT)
# ifdef MSDOS
# define TEXT1TO1 "rb"
# define TEXTCNVT "r"
@@ -50,7 +52,6 @@
"Cannot determine system type."
# endif
# endif
# define OPENOPTS(BINARY) ((BINARY) != 0 ? TEXT1TO1 : TEXTCNVT)
#endif
#if _LIBC || STDC_HEADERS