summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2019-09-03 23:40:32 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2019-09-03 23:47:19 -0700
commit22213f00527d96355e1e3d8a4c9bc37b1fffb0f0 (patch)
tree782e9547d157821d8bbb6736b63f8060924cef99
parentd84b4f83a55e3b1a12e399ad199cc36cd013dcb3 (diff)
downloademacs-22213f00527d96355e1e3d8a4c9bc37b1fffb0f0.tar.gz
* src/systime.h (hz): #undef to work around AIX build issue.
-rw-r--r--src/systime.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/systime.h b/src/systime.h
index 125b2f1385e..2f783efcfca 100644
--- a/src/systime.h
+++ b/src/systime.h
@@ -41,6 +41,8 @@ typedef unsigned long Time;
#endif
#include <sys/time.h> /* for 'struct timeval' */
+
+#undef hz /* AIX <sys/param.h> #defines this. */
/* Emacs uses struct timespec to represent nonnegative temporal intervals.