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:
authorJeff Johnston <jjohnstn@redhat.com>2004-05-26 21:57:10 +0400
committerJeff Johnston <jjohnstn@redhat.com>2004-05-26 21:57:10 +0400
commitbb42a35c429153600841c165dfe1b7a99d7ebb28 (patch)
treeac26f10e210aa45ac247a82e3529a07d79934406 /newlib/libc/search/hash.c
parent227e6ef6c377fb56e871282d3afa2b2454d0e861 (diff)
2004-05-26 Jeff Johnston <jjohnstn@redhat.com>
* libc/search/hash_buf.c: Protect MAX and MIN macros from redefinition. * libc/search/hash.c: Ditto.
Diffstat (limited to 'newlib/libc/search/hash.c')
-rw-r--r--newlib/libc/search/hash.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/newlib/libc/search/hash.c b/newlib/libc/search/hash.c
index 1b045e83f..3d919286a 100644
--- a/newlib/libc/search/hash.c
+++ b/newlib/libc/search/hash.c
@@ -78,8 +78,12 @@ 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))