From 9b916e6a480f41607af86b685de78556c5cbb46e Mon Sep 17 00:00:00 2001 From: "Thies C. Arntzen" Date: Wed, 24 May 2000 09:52:57 +0000 Subject: [PATCH] rename hastable -> _hashtable to avoid clashes --- Zend/zend_hash.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Zend/zend_hash.h b/Zend/zend_hash.h index 16641fa98c..abb82123b8 100644 --- a/Zend/zend_hash.h +++ b/Zend/zend_hash.h @@ -41,7 +41,7 @@ typedef int (*apply_func_arg_t)(void *pDest, void *argument); typedef ulong (*hash_func_t)(char *arKey, uint nKeyLength); typedef void (*copy_ctor_func_t)(void *pElement); -struct hashtable; +struct _hashtable; typedef struct bucket { ulong h; /* Used for numeric indexing */ @@ -55,7 +55,7 @@ typedef struct bucket { char arKey[1]; /* Must be last element */ } Bucket; -typedef struct hashtable { +typedef struct _hashtable { uint nTableSize; uint nHashSizeIndex; uint nNumOfElements; -- 2.40.0