Commit 0a18ddf9 by Andreas Schwab Committed by Andreas Schwab

system.h: Don't declare strsignal if the decl test hasn't been run yet.

	* system.h: Don't declare strsignal if the decl test hasn't been
	run yet.

From-SVN: r61505
parent 827452ae
2003-01-20 Andreas Schwab <schwab@suse.de>
* system.h: Don't declare strsignal if the decl test hasn't been
run yet.
2003-01-20 Kazu Hirata <kazu@cs.umass.edu> 2003-01-20 Kazu Hirata <kazu@cs.umass.edu>
* config/h8300/h8300.c (notice_update_cc): Don't assume that * config/h8300/h8300.c (notice_update_cc): Don't assume that
......
/* Get common system includes and various definitions and declarations based /* Get common system includes and various definitions and declarations based
on autoconf macros. on autoconf macros.
Copyright (C) 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc. Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
This file is part of GCC. This file is part of GCC.
...@@ -321,7 +321,8 @@ extern PTR realloc PARAMS ((PTR, size_t)); ...@@ -321,7 +321,8 @@ extern PTR realloc PARAMS ((PTR, size_t));
/* If the system doesn't provide strsignal, we get it defined in /* If the system doesn't provide strsignal, we get it defined in
libiberty but no declaration is supplied. */ libiberty but no declaration is supplied. */
#if !defined (HAVE_STRSIGNAL) || !HAVE_DECL_STRSIGNAL #if !defined (HAVE_STRSIGNAL) \
|| (defined (HAVE_DECL_STRSIGNAL) && !HAVE_DECL_STRSIGNAL)
# ifndef strsignal # ifndef strsignal
extern const char *strsignal PARAMS ((int)); extern const char *strsignal PARAMS ((int));
# endif # endif
......
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