mirror of
https://github.com/osmarks/ngircd.git
synced 2025-06-17 05:44:08 +00:00
hash: Use UINT32 instead of uint32_t
This commit is contained in:
parent
949c8ea7c7
commit
14afdaee08
@ -58,7 +58,7 @@ Hash( const char *String )
|
|||||||
* Not all of his functions are used here.
|
* Not all of his functions are used here.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define hashsize(n) ((uint32_t)1<<(n))
|
#define hashsize(n) ((UINT32)1<<(n))
|
||||||
#define hashmask(n) (hashsize(n)-1)
|
#define hashmask(n) (hashsize(n)-1)
|
||||||
#define rot(x,k) (((x)<<(k)) | ((x)>>(32-(k))))
|
#define rot(x,k) (((x)<<(k)) | ((x)>>(32-(k))))
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user