diff options
| author | Karl Heuer | 1997-11-20 21:54:20 +0000 |
|---|---|---|
| committer | Karl Heuer | 1997-11-20 21:54:20 +0000 |
| commit | b917b2e27312218420f8988356eee5ebd9799d34 (patch) | |
| tree | be2049a740fa67c730684ce77008f8205a2bdfa3 /src | |
| parent | f4afda6907e4e25dbde553eef7958bc06f997264 (diff) | |
| download | emacs-b917b2e27312218420f8988356eee5ebd9799d34.tar.gz emacs-b917b2e27312218420f8988356eee5ebd9799d34.zip | |
Treat DGUX the same as USG.
Diffstat (limited to 'src')
| -rw-r--r-- | src/sysdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sysdep.c b/src/sysdep.c index e8176753b3a..e304feded3f 100644 --- a/src/sysdep.c +++ b/src/sysdep.c | |||
| @@ -147,7 +147,7 @@ extern int errno; | |||
| 147 | #undef TIOCSWINSZ | 147 | #undef TIOCSWINSZ |
| 148 | #endif | 148 | #endif |
| 149 | 149 | ||
| 150 | #ifdef USG | 150 | #if defined(USG) || defined(DGUX) |
| 151 | #include <sys/utsname.h> | 151 | #include <sys/utsname.h> |
| 152 | #include <string.h> | 152 | #include <string.h> |
| 153 | #ifndef MEMORY_IN_STRING_H | 153 | #ifndef MEMORY_IN_STRING_H |
| @@ -162,7 +162,7 @@ extern int errno; | |||
| 162 | #include <sys/ptem.h> | 162 | #include <sys/ptem.h> |
| 163 | #endif | 163 | #endif |
| 164 | #endif /* TIOCGWINSZ or ISC4_0 */ | 164 | #endif /* TIOCGWINSZ or ISC4_0 */ |
| 165 | #endif /* USG */ | 165 | #endif /* USG or DGUX */ |
| 166 | 166 | ||
| 167 | extern int quit_char; | 167 | extern int quit_char; |
| 168 | 168 | ||