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.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/imports.h')
-rw-r--r-- | src/mesa/main/imports.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/mesa/main/imports.h b/src/mesa/main/imports.h index 68d2043c916..d5ab7cdc206 100644 --- a/src/mesa/main/imports.h +++ b/src/mesa/main/imports.h @@ -549,9 +549,6 @@ _mesa_memset16( unsigned short *dst, unsigned short val, size_t n ); extern void _mesa_bzero( void *dst, size_t n ); -extern int -_mesa_memcmp( const void *s1, const void *s2, size_t n ); - extern double _mesa_sin(double a); |