diff options
author | Roland McGrath <roland@gnu.org> | 1993-06-09 20:28:35 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1993-06-09 20:28:35 +0000 |
commit | 0c77f400bb5817851c99bb03df7a7948ec1e51a0 (patch) | |
tree | 698f3819849dba8de4a1d60a01d749202e9ca53c /src/getloadavg.c | |
parent | 2b813d376e03cb56d25ab32c9caf5c7e69b1d785 (diff) | |
download | emacs-0c77f400bb5817851c99bb03df7a7948ec1e51a0.tar.gz |
*** empty log message ***
Diffstat (limited to 'src/getloadavg.c')
-rw-r--r-- | src/getloadavg.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/getloadavg.c b/src/getloadavg.c index c74f63d0674..339e9ba419a 100644 --- a/src/getloadavg.c +++ b/src/getloadavg.c @@ -142,6 +142,8 @@ /* VAX C can't handle multi-line #ifs, or lines longer than 256 chars. */ +#ifndef LOAD_AVE_TYPE + #ifdef MORE_BSD #define LOAD_AVE_TYPE long #endif @@ -178,14 +180,15 @@ #define LOAD_AVE_TYPE long #endif -#ifdef ardent && titan +#if defined (ardent) && defined (titan) #define LOAD_AVE_TYPE long #endif -#ifdef tex4300 +#ifdef tek4300 #define LOAD_AVE_TYPE long #endif +#endif /* No LOAD_AVE_TYPE. */ #ifndef FSCALE |