diff options
| author | Richard M. Stallman | 1997-07-22 21:35:43 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1997-07-22 21:35:43 +0000 |
| commit | 2b86fcb1e22776f2ffe96bf106f542b7f557c77e (patch) | |
| tree | 0624f2901053f332f0b2bc6a644764496ab0530b | |
| parent | a67a9c669446eda58637c7208f72e267f09d384a (diff) | |
| download | emacs-2b86fcb1e22776f2ffe96bf106f542b7f557c77e.tar.gz emacs-2b86fcb1e22776f2ffe96bf106f542b7f557c77e.zip | |
Test `__unix' along with `unix'.
| -rw-r--r-- | src/getloadavg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/getloadavg.c b/src/getloadavg.c index 52958d4d53f..adc4befeb94 100644 --- a/src/getloadavg.c +++ b/src/getloadavg.c | |||
| @@ -81,7 +81,7 @@ | |||
| 81 | /* Both the Emacs and non-Emacs sections want this. Some | 81 | /* Both the Emacs and non-Emacs sections want this. Some |
| 82 | configuration files' definitions for the LOAD_AVE_CVT macro (like | 82 | configuration files' definitions for the LOAD_AVE_CVT macro (like |
| 83 | sparc.h's) use macros like FSCALE, defined here. */ | 83 | sparc.h's) use macros like FSCALE, defined here. */ |
| 84 | #ifdef unix | 84 | #if defined (unix) || defined (__unix) |
| 85 | # include <sys/param.h> | 85 | # include <sys/param.h> |
| 86 | #endif | 86 | #endif |
| 87 | 87 | ||