Mercurial > cgi-bin > hgwebdir.cgi > VMS > C_Libraries > Hash_impl
diff PrivateHash.h @ 11:8bafd14e9fde
merged VMS__malloc_brch
| author | Merten Sach <msach@mailbox.tu-berlin.de> |
|---|---|
| date | Wed, 28 Sep 2011 13:45:34 +0200 |
| parents | 5900d90f5d71 |
| children | 40ec8f9583d8 |
line diff
1.1 --- a/PrivateHash.h Sat Sep 11 07:57:41 2010 -0700 1.2 +++ b/PrivateHash.h Wed Sep 28 13:45:34 2011 +0200 1.3 @@ -13,6 +13,12 @@ 1.4 #define TRUE 1 1.5 #define FALSE 0 1.6 1.7 +union hashkey_t{ 1.8 + char hashable[8]; 1.9 + int parts[2]; 1.10 +}; 1.11 + 1.12 +typedef union hashkey_t hashkey_t; 1.13 1.14 #define DEFAULT_HASHSIZE 1 << 10 1.15
