diff options
Diffstat (limited to 'gdb/bcache.c')
-rw-r--r-- | gdb/bcache.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gdb/bcache.c b/gdb/bcache.c index ede908b..377355b 100644 --- a/gdb/bcache.c +++ b/gdb/bcache.c @@ -23,6 +23,9 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include "bcache.h" #include "gdb_string.h" /* For memcpy declaration */ +static unsigned int hash PARAMS ((void *, int)); +static void *lookup_cache PARAMS ((void *, int, int, struct bcache *)); + /* FIXME: Incredibly simplistic hash generator. Probably way too expensive (consider long strings) and unlikely to have good distribution across hash values for typical input. */ |