bruce@heather.pooh.com (Bruce Robertson) (08/29/89)
The calls to init_siglist() in main.c are not conditionalized by
HAVE_SIGLIST, as they are in other files. Below is a context diff.
Bruce Robertson
Hundred Acre Software, Reno, NV
Domain: bruce@pooh.com
UUCP: ...!uunet!tahoe.unr.edu!heather!bruce
*** ORIG/main.c Mon Aug 28 22:22:13 1989
--- main.c Mon Aug 28 22:22:46 1989
***************
*** 269,275 ****
char **argv;
char **envp;
{
! #ifdef USG
extern void init_siglist ();
#endif
extern int child_handler ();
--- 269,275 ----
char **argv;
char **envp;
{
! #if defined(USG) && !defined(HAVE_SIGLIST)
extern void init_siglist ();
#endif
extern int child_handler ();
***************
*** 289,295 ****
reading_filename = 0;
reading_lineno_ptr = 0;
! #ifdef USG
init_siglist ();
#endif
--- 289,295 ----
reading_filename = 0;
reading_lineno_ptr = 0;
! #if defined(USG) && !defined(HAVE_SIGLIST)
init_siglist ();
#endif