diff options
| author | Richard M. Stallman | 1994-08-14 02:47:35 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-08-14 02:47:35 +0000 |
| commit | 212ea30525ded31a9cbb3b257781a856d536c37b (patch) | |
| tree | bbeba6dba46c4268035930aac01b2483618f8df4 /src | |
| parent | 9f9e1ff837973aacbe0fe572e9aebb6b02be91c7 (diff) | |
| download | emacs-212ea30525ded31a9cbb3b257781a856d536c37b.tar.gz emacs-212ea30525ded31a9cbb3b257781a856d536c37b.zip | |
(pid_t): New definition.
(vfork): Definition deleted.
Diffstat (limited to 'src')
| -rw-r--r-- | src/s/sol2-4.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/s/sol2-4.h b/src/s/sol2-4.h index b4d9c68d028..02a4879da15 100644 --- a/src/s/sol2-4.h +++ b/src/s/sol2-4.h | |||
| @@ -4,10 +4,12 @@ | |||
| 4 | 4 | ||
| 5 | #define SOLARIS2_4 | 5 | #define SOLARIS2_4 |
| 6 | 6 | ||
| 7 | /* Solaris 2.4 has a broken vfork. And a header file has a declaration | 7 | /* Solaris 2.4 has a broken vfork. So we don't use it; |
| 8 | we use the alternate definition in sysdep.c. | ||
| 9 | But a header file has a declaration | ||
| 8 | that conflicts with the definition of vfork in sysdep.c. | 10 | that conflicts with the definition of vfork in sysdep.c. |
| 9 | This definition should avoid it. */ | 11 | This kludge should prevent the conflict. */ |
| 10 | #define vfork emacs_vfork | 12 | #define pid_t int |
| 11 | 13 | ||
| 12 | /* Get rid of -traditional and let const really do its thing. */ | 14 | /* Get rid of -traditional and let const really do its thing. */ |
| 13 | 15 | ||