diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2019-09-03 23:40:32 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2019-09-03 23:47:19 -0700 |
commit | 22213f00527d96355e1e3d8a4c9bc37b1fffb0f0 (patch) | |
tree | 782e9547d157821d8bbb6736b63f8060924cef99 | |
parent | d84b4f83a55e3b1a12e399ad199cc36cd013dcb3 (diff) | |
download | emacs-22213f00527d96355e1e3d8a4c9bc37b1fffb0f0.tar.gz |
* src/systime.h (hz): #undef to work around AIX build issue.
-rw-r--r-- | src/systime.h | 2 |
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. |