Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Minor Patch
- X-seq: zsh-workers 374
- From: esky@xxxxxxxxxxx (Eskandar Ensafi)
- To: zsh-workers@xxxxxxxxxxxxxxx
- Subject: Minor Patch
- Date: Thu, 7 Sep 95 13:15:58 -0700
Hi,
The following cleans up some minor details when compiling under NEXTSTEP.
- Esky
*** signals.c.old Thu Sep 7 13:08:03 1995
--- signals.c Thu Sep 7 13:09:43 1995
***************
*** 402,408 ****
# define WAIT(pid, statusp, options) waitpid(pid, statusp, options)
#else
# ifdef HAVE_WAIT3
! # define WAIT(pid, statusp, options) wait3(statusp, options, NULL)
# else
# define WAIT(pid, statusp, options) wait(statusp)
# endif
--- 402,408 ----
# define WAIT(pid, statusp, options) waitpid(pid, statusp, options)
#else
# ifdef HAVE_WAIT3
! # define WAIT(pid, statusp, options) wait3((void *)statusp, options, NULL)
# else
# define WAIT(pid, statusp, options) wait(statusp)
# endif
*** system.h.old Thu Sep 7 09:18:01 1995
--- system.h Thu Sep 7 13:06:22 1995
***************
*** 40,45 ****
--- 40,46 ----
#ifdef __NeXT__
# undef HAVE_TERMIOS_H
# undef HAVE_SYS_UTSNAME_H
+ extern pid_t getppid(void);
#endif
#ifdef PROTOTYPES
***************
*** 50,59 ****
#ifdef HAVE_LIBC_H /* NeXT */
# include <libc.h>
- #endif
-
- #ifdef HAVE_OBJZ_H /* NeXT */
- # include "objz.h"
#endif
#ifdef HAVE_UNISTD_H
--- 51,56 ----
Messages sorted by:
Reverse Date,
Date,
Thread,
Author