diff options
author | Roland McGrath <roland@redhat.com> | 1992-07-05 00:52:48 +0000 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 1992-07-05 00:52:48 +0000 |
commit | 517a17b6d981c344c3cf1666ef603d524425a9e8 (patch) | |
tree | e53148886c7921de1e8770a342ef30f93de60350 | |
parent | 9d3d0c6b7910f68d97d1aa7d303668096b89f753 (diff) | |
download | gunmake-517a17b6d981c344c3cf1666ef603d524425a9e8.tar.gz |
Formerly main.c.~51~
-rw-r--r-- | main.c | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -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); |