summaryrefslogtreecommitdiff
path: root/gdb/gdbserver/server.h
diff options
context:
space:
mode:
authorSteve Ellcey <sje@cup.hp.com>2005-07-01 17:18:06 +0000
committerSteve Ellcey <sje@cup.hp.com>2005-07-01 17:18:06 +0000
commit5845d56d35da6d2a2d267c03f7fb97a052e4b8f3 (patch)
tree204935cb9d1534b2ea28be8672847be9f42a26c2 /gdb/gdbserver/server.h
parente28ef48da985519a098299c81dc46aa5b012fee0 (diff)
downloadgdb-5845d56d35da6d2a2d267c03f7fb97a052e4b8f3.tar.gz
* configure.ac (BFD_NEED_DECLARATION): Replace with AC_CHECK_DECLS.
* configure: Regenerate. * config.in: Regenerate. * server.h (NEED_DECLARATION_STRERROR): Replace with !HAVE_DECL_STRERROR.
Diffstat (limited to 'gdb/gdbserver/server.h')
-rw-r--r--gdb/gdbserver/server.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/gdbserver/server.h b/gdb/gdbserver/server.h
index 49161fb161e..4b146a1cb17 100644
--- a/gdb/gdbserver/server.h
+++ b/gdb/gdbserver/server.h
@@ -34,7 +34,7 @@
#include <string.h>
#endif
-#ifdef NEED_DECLARATION_STRERROR
+#if !HAVE_DECL_STRERROR
#ifndef strerror
extern char *strerror (int); /* X3.159-1989 4.11.6.2 */
#endif