Commit 34ae233a by Francois-Xavier Coudert Committed by François-Xavier Coudert

* io/unix.c (min): Remove unused macro.

From-SVN: r227317
parent 107051a5
2015-08-29 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
* io/unix.c (min): Remove unused macro.
2015-08-28 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org> 2015-08-28 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
PR fortran/53668 PR fortran/53668
......
...@@ -110,17 +110,6 @@ id_from_fd (const int fd) ...@@ -110,17 +110,6 @@ id_from_fd (const int fd)
#endif /* __MINGW32__ */ #endif /* __MINGW32__ */
/* min macro that evaluates its arguments only once. */
#ifdef min
#undef min
#endif
#define min(a,b) \
({ typeof (a) _a = (a); \
typeof (b) _b = (b); \
_a < _b ? _a : _b; })
/* These flags aren't defined on all targets (mingw32), so provide them /* These flags aren't defined on all targets (mingw32), so provide them
here. */ here. */
#ifndef S_IRGRP #ifndef S_IRGRP
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment