From cc06bcdb37d82132026dc0643cf3a56ab3c6f73e Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Fri, 17 May 1996 08:12:32 -0400 Subject: [PATCH] Include objc/objc.h here instead of in objc/hash.c to get BOOL typedef. From-SVN: r11980 --- gcc/objc/hash.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/gcc/objc/hash.h b/gcc/objc/hash.h index 7a83b0854d1..bddb791c820 100644 --- a/gcc/objc/hash.h +++ b/gcc/objc/hash.h @@ -1,5 +1,5 @@ /* Hash tables for Objective C method dispatch. - Copyright (C) 1993, 1995 Free Software Foundation, Inc. + Copyright (C) 1993, 1995, 1996 Free Software Foundation, Inc. This file is part of GNU CC. @@ -29,6 +29,7 @@ Boston, MA 02111-1307, USA. */ #define __hash_INCLUDE_GNU #include +#include /* * This data structure is used to hold items @@ -140,6 +141,9 @@ node_ptr hash_next (cache_ptr cache, node_ptr node); void *hash_value_for_key (cache_ptr cache, const void *key); +/* Used to determine if the given key exists in the hash table */ + +BOOL hash_is_key_in_hash (cache_ptr cache, const void *key); /************************************************ -- 2.30.2