diff options
author | harti <harti@FreeBSD.org> | 2004-12-06 08:57:41 +0000 |
---|---|---|
committer | harti <harti@FreeBSD.org> | 2004-12-06 08:57:41 +0000 |
commit | f55a4ad1b5ce7bbbc7b9c40ea2e963694e32788c (patch) | |
tree | 226899c3124dfa95651c1b17b7453cfd692a146c /usr.bin/make | |
parent | 6fb43802bfdc98a60416c6e25bdb17f9f3819793 (diff) | |
download | FreeBSD-src-f55a4ad1b5ce7bbbc7b9c40ea2e963694e32788c.zip FreeBSD-src-f55a4ad1b5ce7bbbc7b9c40ea2e963694e32788c.tar.gz |
Remove an unused macro.
Diffstat (limited to 'usr.bin/make')
-rw-r--r-- | usr.bin/make/hash.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/usr.bin/make/hash.h b/usr.bin/make/hash.h index 7610554..adc7552 100644 --- a/usr.bin/make/hash.h +++ b/usr.bin/make/hash.h @@ -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 *); |