diff options
| author | Paul Eggert | 2019-09-03 23:40:32 -0700 |
|---|---|---|
| committer | Paul Eggert | 2019-09-03 23:47:19 -0700 |
| commit | 22213f00527d96355e1e3d8a4c9bc37b1fffb0f0 (patch) | |
| tree | 782e9547d157821d8bbb6736b63f8060924cef99 | |
| parent | d84b4f83a55e3b1a12e399ad199cc36cd013dcb3 (diff) | |
| download | emacs-22213f00527d96355e1e3d8a4c9bc37b1fffb0f0.tar.gz emacs-22213f00527d96355e1e3d8a4c9bc37b1fffb0f0.zip | |
* 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; | |||
| 41 | #endif | 41 | #endif |
| 42 | 42 | ||
| 43 | #include <sys/time.h> /* for 'struct timeval' */ | 43 | #include <sys/time.h> /* for 'struct timeval' */ |
| 44 | |||
| 45 | #undef hz /* AIX <sys/param.h> #defines this. */ | ||
| 44 | 46 | ||
| 45 | /* Emacs uses struct timespec to represent nonnegative temporal intervals. | 47 | /* Emacs uses struct timespec to represent nonnegative temporal intervals. |
| 46 | 48 | ||