* io/unix.c (min): Remove unused macro.
authorFrancois-Xavier Coudert <fxcoudert@gcc.gnu.org>
Sat, 29 Aug 2015 13:01:54 +0000 (13:01 +0000)
committerFrançois-Xavier Coudert <fxcoudert@gcc.gnu.org>
Sat, 29 Aug 2015 13:01:54 +0000 (13:01 +0000)
From-SVN: r227317

libgfortran/ChangeLog
libgfortran/io/unix.c

index a0b70ed4c35317c7c908bf8f8d90c84df0d5b84a..31481e5fef2ed0f808c6c393bf0138a985d5880c 100644 (file)
@@ -1,3 +1,7 @@
+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>
 
        PR fortran/53668
index 4d8726c494bb74c18bbc553517c3c9183be4efdc..aa2feabebf0ab4c1d2a498677ff8c687cfa421e2 100644 (file)
@@ -110,17 +110,6 @@ id_from_fd (const int fd)
 #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
    here.  */
 #ifndef S_IRGRP