diff options
| author | Karl Heuer | 1995-12-13 01:51:37 +0000 |
|---|---|---|
| committer | Karl Heuer | 1995-12-13 01:51:37 +0000 |
| commit | 3ec89604c4f132d39f71f0b06d61d6e733ec2919 (patch) | |
| tree | 0a07a948a53e628451050ee79477ebb3bbb99a1f /src | |
| parent | f7c7053ea66b846c78e39635800a111ee153f307 (diff) | |
| download | emacs-3ec89604c4f132d39f71f0b06d61d6e733ec2919.tar.gz emacs-3ec89604c4f132d39f71f0b06d61d6e733ec2919.zip | |
(HAVE_VFORK): Remove #undef, since we now
know how to use Solaris vfork.
(VFORK_RETURN_TYPE): Remove definition.
Diffstat (limited to 'src')
| -rw-r--r-- | src/s/sol2-3.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/s/sol2-3.h b/src/s/sol2-3.h index ac80a2ff120..2e5d068d193 100644 --- a/src/s/sol2-3.h +++ b/src/s/sol2-3.h | |||
| @@ -48,12 +48,3 @@ | |||
| 48 | strncpy(pty_name, ptyname, sizeof(pty_name)); \ | 48 | strncpy(pty_name, ptyname, sizeof(pty_name)); \ |
| 49 | pty_name[sizeof(pty_name) - 1] = 0; \ | 49 | pty_name[sizeof(pty_name) - 1] = 0; \ |
| 50 | } | 50 | } |
| 51 | |||
| 52 | /* David Miller <davem@caip.rutgers.edu> says vfork fails on 2.4. | ||
| 53 | Brendan Kehoe <brendan@zen.org> says it also fails on 2.3. | ||
| 54 | So we'll use the alternate definition in sysdep.c. | ||
| 55 | But a header file has a declaration | ||
| 56 | that would conflict with the definition of vfork in sysdep.c. | ||
| 57 | So we'll choose the return type to match the system header. */ | ||
| 58 | #undef HAVE_VFORK | ||
| 59 | #define VFORK_RETURN_TYPE pid_t | ||