summaryrefslogtreecommitdiff
path: root/Zend/zend_hash.h
diff options
context:
space:
mode:
authorThies C. Arntzen <thies@php.net>2000-05-24 09:52:57 +0000
committerThies C. Arntzen <thies@php.net>2000-05-24 09:52:57 +0000
commit9b916e6a480f41607af86b685de78556c5cbb46e (patch)
tree075663501fa84431a14ef4118cef81cb08e8cc76 /Zend/zend_hash.h
parent78a1fdfcaae35203932ad3a864a6dce77f24e18d (diff)
downloadphp-git-9b916e6a480f41607af86b685de78556c5cbb46e.tar.gz
rename hastable -> _hashtable to avoid clashes
Diffstat (limited to 'Zend/zend_hash.h')
-rw-r--r--Zend/zend_hash.h4
1 files 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;