From 517a17b6d981c344c3cf1666ef603d524425a9e8 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Sun, 5 Jul 1992 00:52:48 +0000 Subject: [PATCH] Formerly main.c.~51~ --- main.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/main.c b/main.c index 04eb097..69aeb05 100644 --- a/main.c +++ b/main.c @@ -333,7 +333,7 @@ struct file *default_file; #ifdef POSIX sigset_t fatal_signal_set; #else -#ifndef SIGSETMASK_MISSING +#ifdef HAVE_SIGSETMASK int fatal_signal_mask; #endif #endif @@ -344,7 +344,7 @@ main (argc, argv, envp) char **argv; char **envp; { -#ifdef SYS_SIGLIST_MISSING +#ifndef HAVE_SYS_SIGLIST extern void init_siglist (); #endif extern RETSIGTYPE fatal_error_signal (), child_handler (); @@ -363,7 +363,7 @@ main (argc, argv, envp) reading_filename = 0; reading_lineno_ptr = 0; -#ifdef SYS_SIGLIST_MISSING +#ifndef HAVE_SYS_SIGLIST init_siglist (); #endif @@ -371,7 +371,7 @@ main (argc, argv, envp) sigemptyset (&fatal_signal_set); #define ADD_SIG(sig) sigaddset (&fatal_signal_set, sig) #else -#ifndef SIGSETMASK_MISSING +#ifdef HAVE_SIGSETMASK fatal_signal_mask = 0; #define ADD_SIG(sig) fatal_signal_mask |= sigmask (sig) #else @@ -404,7 +404,7 @@ main (argc, argv, envp) /* Make sure stdout is line-buffered. */ -#ifndef SETLINEBUF_MISSING +#ifdef HAVE_SETLINEBUF setlinebuf (stdout); #else #ifndef SETVBUF_REVERSED @@ -437,7 +437,7 @@ main (argc, argv, envp) if (getcwd (current_directory, GET_PATH_MAX) == 0) { -#ifndef GETCWD_MISSING +#ifdef HAVE_GETCWD perror_with_name ("getcwd: ", ""); #else error ("getwd: %s", current_directory); @@ -1487,7 +1487,7 @@ log_working_directory (entering) if (getcwd (pwdbuf, GET_PATH_MAX) == 0) { -#ifndef GETCWD_MISSING +#ifdef HAVE_GETCWD perror_with_name ("getcwd: ", ""); #else error ("getwd: %s", pwdbuf); -- 2.7.4