aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1995-05-27 01:08:00 +0000
committerKarl Heuer1995-05-27 01:08:00 +0000
commit7d14d5193166479b924ac128ec909984dbaa7983 (patch)
treeceda300d57386c135881bdcd7bf0cb8147e92ceb /src
parent1bae7664b569f3fe71dc6e4e6b13f38a33ed481e (diff)
downloademacs-7d14d5193166479b924ac128ec909984dbaa7983.tar.gz
emacs-7d14d5193166479b924ac128ec909984dbaa7983.zip
(VFORK_RETURN_TYPE): Moved here from s/sol2-4.h.
Diffstat (limited to 'src')
-rw-r--r--src/s/sol2-3.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/s/sol2-3.h b/src/s/sol2-3.h
index 891f7cded8b..ac80a2ff120 100644
--- a/src/s/sol2-3.h
+++ b/src/s/sol2-3.h
@@ -49,6 +49,11 @@
49 pty_name[sizeof(pty_name) - 1] = 0; \ 49 pty_name[sizeof(pty_name) - 1] = 0; \
50 } 50 }
51 51
52/* David Miller <davem@caip.rutgers.edu> says vfork fails on 2.4. */ 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. */ 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. */
54#undef HAVE_VFORK 58#undef HAVE_VFORK
59#define VFORK_RETURN_TYPE pid_t