diff options
| author | Jim Blandy | 1992-04-24 08:11:54 +0000 |
|---|---|---|
| committer | Jim Blandy | 1992-04-24 08:11:54 +0000 |
| commit | 4746118aca2d5cbdd054b4af4814d56550dfbc79 (patch) | |
| tree | 370e07c6950794f936bc8d434cb0560d883e4a0b /src/sysdep.c | |
| parent | d4327fecc103493bc8275c3580b05c06c9fcc019 (diff) | |
| download | emacs-4746118aca2d5cbdd054b4af4814d56550dfbc79.tar.gz emacs-4746118aca2d5cbdd054b4af4814d56550dfbc79.zip | |
*** empty log message ***
Diffstat (limited to 'src/sysdep.c')
| -rw-r--r-- | src/sysdep.c | 44 |
1 files changed, 5 insertions, 39 deletions
diff --git a/src/sysdep.c b/src/sysdep.c index 1483898478d..03614f98cce 100644 --- a/src/sysdep.c +++ b/src/sysdep.c | |||
| @@ -110,19 +110,6 @@ extern char *sys_errlist[]; | |||
| 110 | #endif /* not 4.1 */ | 110 | #endif /* not 4.1 */ |
| 111 | #endif /* BSD */ | 111 | #endif /* BSD */ |
| 112 | 112 | ||
| 113 | #ifdef AIX | ||
| 114 | /* Get files for keyboard remapping */ | ||
| 115 | #define HFNKEYS 2 | ||
| 116 | #include <sys/hft.h> | ||
| 117 | #include <sys/devinfo.h> | ||
| 118 | #endif | ||
| 119 | |||
| 120 | /* Get rid of LLITOUT in 4.1, since it is said to stimulate kernel bugs. */ | ||
| 121 | #ifdef BSD4_1 | ||
| 122 | #undef LLITOUT | ||
| 123 | #define LLITOUT 0 | ||
| 124 | #endif /* 4.1 */ | ||
| 125 | |||
| 126 | #ifdef BROKEN_TIOCGWINSZ | 113 | #ifdef BROKEN_TIOCGWINSZ |
| 127 | #undef TIOCGWINSZ | 114 | #undef TIOCGWINSZ |
| 128 | #endif | 115 | #endif |
| @@ -144,31 +131,6 @@ extern char *sys_errlist[]; | |||
| 144 | #endif /* TIOCGWINSZ */ | 131 | #endif /* TIOCGWINSZ */ |
| 145 | #endif /* USG */ | 132 | #endif /* USG */ |
| 146 | 133 | ||
| 147 | #ifdef NEED_BSDTTY | ||
| 148 | #include <sys/bsdtty.h> | ||
| 149 | #endif | ||
| 150 | |||
| 151 | #if defined (HPUX) && defined (HAVE_PTYS) | ||
| 152 | #include <sys/ptyio.h> | ||
| 153 | #endif | ||
| 154 | |||
| 155 | #ifdef AIX | ||
| 156 | #include <sys/pty.h> | ||
| 157 | #include <unistd.h> | ||
| 158 | #endif /* AIX */ | ||
| 159 | |||
| 160 | #ifdef SYSV_PTYS | ||
| 161 | #include <sys/tty.h> | ||
| 162 | #include <sys/pty.h> | ||
| 163 | #endif | ||
| 164 | |||
| 165 | /* saka@pfu.fujitsu.co.JP writes: | ||
| 166 | FASYNC defined in this file. But, FASYNC don't working. | ||
| 167 | so no problem, because unrequest_sigio only need. */ | ||
| 168 | #if defined (pfa) | ||
| 169 | #include <sys/file.h> | ||
| 170 | #endif | ||
| 171 | |||
| 172 | extern int quit_char; | 134 | extern int quit_char; |
| 173 | 135 | ||
| 174 | #include "screen.h" | 136 | #include "screen.h" |
| @@ -2348,6 +2310,8 @@ getwd (pathname) | |||
| 2348 | * that files be of same type (regular->regular, dir->dir, etc). | 2310 | * that files be of same type (regular->regular, dir->dir, etc). |
| 2349 | */ | 2311 | */ |
| 2350 | 2312 | ||
| 2313 | #ifndef HAVE_RENAME | ||
| 2314 | |||
| 2351 | rename (from, to) | 2315 | rename (from, to) |
| 2352 | char *from; | 2316 | char *from; |
| 2353 | char *to; | 2317 | char *to; |
| @@ -2362,9 +2326,11 @@ rename (from, to) | |||
| 2362 | return (-1); | 2326 | return (-1); |
| 2363 | } | 2327 | } |
| 2364 | 2328 | ||
| 2329 | #endif | ||
| 2330 | |||
| 2365 | /* Set priority value to PRIO. */ | 2331 | /* Set priority value to PRIO. */ |
| 2366 | 2332 | ||
| 2367 | void | 2333 | int |
| 2368 | setpriority (which, who, prio) | 2334 | setpriority (which, who, prio) |
| 2369 | int which, who, prio; | 2335 | int which, who, prio; |
| 2370 | { | 2336 | { |