mirror of
https://github.com/osmarks/ngircd.git
synced 2025-09-06 12:47:55 +00:00
hash: Use UINT32 instead of uint32_t
This commit is contained in:
@@ -58,7 +58,7 @@ Hash( const char *String )
|
||||
* 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 rot(x,k) (((x)<<(k)) | ((x)>>(32-(k))))
|
||||
|
||||
|
Reference in New Issue
Block a user