diff options
author | Kenneth Graunke <[email protected]> | 2010-02-18 23:51:01 -0800 |
---|---|---|
committer | Kristian Høgsberg <[email protected]> | 2010-02-19 09:19:20 -0500 |
commit | 2efa86ea3040c37965987160733b22e2a0541a3e (patch) | |
tree | 9670602a59b673faa1c886c7e436c18425abc2ea /src/mesa/main/bitset.h | |
parent | 26f8fad1456fdc2b352cea9d3b4c32cb5f6ae947 (diff) |
Remove _mesa_memcmp in favor of plain memcmp.
This may break the SUNOS4 build, but it's no longer relevant.
Diffstat (limited to 'src/mesa/main/bitset.h')
-rw-r--r-- | src/mesa/main/bitset.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/bitset.h b/src/mesa/main/bitset.h index 29468e84861..9f48b3cceab 100644 --- a/src/mesa/main/bitset.h +++ b/src/mesa/main/bitset.h @@ -48,7 +48,7 @@ /* bitset operations */ #define BITSET_COPY(x, y) memcpy( (x), (y), sizeof (x) ) -#define BITSET_EQUAL(x, y) (_mesa_memcmp( (x), (y), sizeof (x) ) == 0) +#define BITSET_EQUAL(x, y) (memcmp( (x), (y), sizeof (x) ) == 0) #define BITSET_ZERO(x) memset( (x), 0, sizeof (x) ) #define BITSET_ONES(x) memset( (x), 0xff, sizeof (x) ) |