Clarify AIX "#undef hz".

This commit is contained in:
antirez 2014-08-07 12:14:21 +02:00
parent b5dc2c5b91
commit 9840df7bad

View File

@ -582,6 +582,8 @@ typedef struct redisOpArray {
* Global server state
*----------------------------------------------------------------------------*/
/* AIX defines hz to __hz, we don't use this define and in order to allow
* Redis build on AIX we need to undef it. */
#ifdef _AIX
#undef hz
#endif