aboutsummaryrefslogtreecommitdiff
path: root/libgfortran/io/unix.c
diff options
context:
space:
mode:
Diffstat (limited to 'libgfortran/io/unix.c')
-rw-r--r--libgfortran/io/unix.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/libgfortran/io/unix.c b/libgfortran/io/unix.c
index 4d8726c..aa2feab 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