From: fxcoudert Date: Sat, 29 Aug 2015 13:01:54 +0000 (+0000) Subject: * io/unix.c (min): Remove unused macro. X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=44fc142e11bd0229e96ad528cd861bfa1784bcc3;p=thirdparty%2Fgcc.git * io/unix.c (min): Remove unused macro. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@227317 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog index a0b70ed4c353..31481e5fef2e 100644 --- a/libgfortran/ChangeLog +++ b/libgfortran/ChangeLog @@ -1,3 +1,7 @@ +2015-08-29 Francois-Xavier Coudert + + * io/unix.c (min): Remove unused macro. + 2015-08-28 Francois-Xavier Coudert PR fortran/53668 diff --git a/libgfortran/io/unix.c b/libgfortran/io/unix.c index 4d8726c494bb..aa2feabebf0a 100644 --- a/libgfortran/io/unix.c +++ b/libgfortran/io/unix.c @@ -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