Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/search/hash.c')
-rw-r--r--newlib/libc/search/hash.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/newlib/libc/search/hash.c b/newlib/libc/search/hash.c
index 3d919286a..1b045e83f 100644
--- a/newlib/libc/search/hash.c
+++ b/newlib/libc/search/hash.c
@@ -78,12 +78,8 @@ static void swap_header_copy(HASHHDR *, HASHHDR *);
#endif
/* Macros for min/max. */
-#ifndef MIN
#define MIN(a,b) (((a)<(b))?(a):(b))
-#endif
-#ifndef MAX
#define MAX(a,b) (((a)>(b))?(a):(b))
-#endif
/* Fast arithmetic, relying on powers of 2, */
#define MOD(x, y) ((x) & ((y) - 1))