Remove an unused macro.

This commit is contained in:
Hartmut Brandt 2004-12-06 08:57:41 +00:00
parent 45f507983f
commit f2b0d1538d

View File

@ -90,11 +90,6 @@ typedef struct Hash_Search {
*/
#define Hash_SetValue(h, val) ((h)->clientData = (val))
/*
* Hash_Size(n) returns the number of words in an object of n bytes
*/
#define Hash_Size(n) (((n) + sizeof(int) - 1) / sizeof(int))
void Hash_InitTable(Hash_Table *, int);
void Hash_DeleteTable(Hash_Table *);
Hash_Entry *Hash_FindEntry(const Hash_Table *, const char *);