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/imports.c | |
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/imports.c')
-rw-r--r-- | src/mesa/main/imports.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/mesa/main/imports.c b/src/mesa/main/imports.c index d8375bf5727..67305002258 100644 --- a/src/mesa/main/imports.c +++ b/src/mesa/main/imports.c @@ -268,17 +268,6 @@ _mesa_bzero( void *dst, size_t n ) #endif } -/** Wrapper around memcmp() */ -int -_mesa_memcmp( const void *s1, const void *s2, size_t n ) -{ -#if defined(SUNOS4) - return memcmp( (char *) s1, (char *) s2, (int) n ); -#else - return memcmp(s1, s2, n); -#endif -} - /*@}*/ |