From 209eba42ebfc0108ad37b5a83631ed6c019a63c3 Mon Sep 17 00:00:00 2001 From: Matt Turner Date: Sun, 21 Sep 2014 22:50:36 -0700 Subject: mesa: Drop _mesa_bsearch() wrapper. Reviewed-by: Ian Romanick Reviewed-by: Jose Fonseca Reviewed-by: Emil Velikov --- src/mesa/main/imports.c | 17 ----------------- 1 file changed, 17 deletions(-) (limited to 'src/mesa/main/imports.c') diff --git a/src/mesa/main/imports.c b/src/mesa/main/imports.c index b8ec2e78550..2c5f20d02ec 100644 --- a/src/mesa/main/imports.c +++ b/src/mesa/main/imports.c @@ -474,23 +474,6 @@ _mesa_half_to_float(GLhalfARB val) /*@}*/ -/**********************************************************************/ -/** \name Sort & Search */ -/*@{*/ - -/** - * Wrapper for bsearch(). - */ -void * -_mesa_bsearch( const void *key, const void *base, size_t nmemb, size_t size, - int (*compar)(const void *, const void *) ) -{ - return bsearch(key, base, nmemb, size, compar); -} - -/*@}*/ - - /**********************************************************************/ /** \name Environment vars */ /*@{*/ -- cgit v1.2.3