Commit 759af044 by Kaveh R. Ghazi Committed by Kaveh Ghazi

system.h (strsignal): Don't check HAVE_STRSIGNAL when determining whether to provide a prototype.

        * system.h (strsignal): Don't check HAVE_STRSIGNAL when
        determining whether to provide a prototype.  Remove the
        sys_siglist clause in the conditional.

From-SVN: r31100
parent c43406a7
1999-12-27 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* system.h (strsignal): Don't check HAVE_STRSIGNAL when
determining whether to provide a prototype. Remove the
sys_siglist clause in the conditional.
1999-12-23 Martin v. Lwis <loewis@informatik.hu-berlin.de> 1999-12-23 Martin v. Lwis <loewis@informatik.hu-berlin.de>
* fold-const.c (operand_equal_p): Use memcmp to compare string * fold-const.c (operand_equal_p): Use memcmp to compare string
......
...@@ -397,19 +397,13 @@ extern int sys_nerr; ...@@ -397,19 +397,13 @@ extern int sys_nerr;
extern char *sys_errlist[]; extern char *sys_errlist[];
#endif /* HAVE_STRERROR */ #endif /* HAVE_STRERROR */
#ifdef HAVE_STRSIGNAL /* If the system doesn't provide strsignal, we get it defined in
# ifdef NEED_DECLARATION_STRSIGNAL libiberty but no declaration is supplied. */
# ifndef strsignal #ifdef NEED_DECLARATION_STRSIGNAL
extern char * strsignal (); # ifndef strsignal
# endif extern const char *strsignal PARAMS ((int));
# endif
#else /* ! HAVE_STRSIGNAL */
# ifndef SYS_SIGLIST_DECLARED
# ifndef NO_SYS_SIGLIST
extern char * sys_siglist[];
# endif
# endif # endif
#endif /* HAVE_STRSIGNAL */ #endif
#ifdef HAVE_GETRLIMIT #ifdef HAVE_GETRLIMIT
# ifdef NEED_DECLARATION_GETRLIMIT # ifdef NEED_DECLARATION_GETRLIMIT
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment