diff options
Diffstat (limited to 'libgfortran/io/unix.c')
-rw-r--r-- | libgfortran/io/unix.c | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/libgfortran/io/unix.c b/libgfortran/io/unix.c index c81163f..1a9faea 100644 --- a/libgfortran/io/unix.c +++ b/libgfortran/io/unix.c @@ -41,13 +41,6 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see #include <errno.h> -/* min macro that evaluates its arguments only once. */ -#define min(a,b) \ - ({ typeof (a) _a = (a); \ - typeof (b) _b = (b); \ - _a < _b ? _a : _b; }) - - /* For mingw, we don't identify files by their inode number, but by a 64-bit identifier created from a BY_HANDLE_FILE_INFORMATION. */ #ifdef __MINGW32__ @@ -106,8 +99,19 @@ id_from_fd (const int fd) return id_from_handle ((HANDLE) _get_osfhandle (fd)); } +#endif /* HAVE_WORKING_STAT */ +#endif /* __MINGW32__ */ + + +/* min macro that evaluates its arguments only once. */ +#ifdef min +#undef min #endif -#endif + +#define min(a,b) \ + ({ typeof (a) _a = (a); \ + typeof (b) _b = (b); \ + _a < _b ? _a : _b; }) #ifndef PATH_MAX #define PATH_MAX 1024 |