aboutsummaryrefslogtreecommitdiff
path: root/gdb/remote-mips.c
diff options
context:
space:
mode:
authorJim Kingdon <jkingdon@engr.sgi.com>1995-05-19 14:15:48 +0000
committerJim Kingdon <jkingdon@engr.sgi.com>1995-05-19 14:15:48 +0000
commit73d3dbd4e6ab70e29986e6d706b548cdc39c3531 (patch)
treee92f2ef9b4f6876084444922f3c5668832617f09 /gdb/remote-mips.c
parent85c613aaa7092f8dfc8ce0c475e0ef210685bc16 (diff)
downloadfsf-binutils-gdb-73d3dbd4e6ab70e29986e6d706b548cdc39c3531.zip
fsf-binutils-gdb-73d3dbd4e6ab70e29986e6d706b548cdc39c3531.tar.gz
fsf-binutils-gdb-73d3dbd4e6ab70e29986e6d706b548cdc39c3531.tar.bz2
* utils.c, complaints.c, language.c, monitor.c, remote-array.c,
remote-mips.c, remote-os9k.c, remote-st.c: Conditionalize use of stdarg rather than varargs on ANSI_PROTOTYPES not __STDC__; it must match the definition of PARAMS. start-sanitize-gdbtk * gdbtk.c: Likewise. end-sanitize-gdbtk
Diffstat (limited to 'gdb/remote-mips.c')
-rw-r--r--gdb/remote-mips.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/remote-mips.c b/gdb/remote-mips.c
index 568694c..170a6ba 100644
--- a/gdb/remote-mips.c
+++ b/gdb/remote-mips.c
@@ -31,7 +31,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#include "remote-utils.h"
#include <signal.h>
-#ifdef __STDC__
+#ifdef ANSI_PROTOTYPES
#include <stdarg.h>
#else
#include <varargs.h>
@@ -275,7 +275,7 @@ static serial_t mips_desc;
inconsistent state. */
static NORETURN void
-#ifdef __STDC__
+#ifdef ANSI_PROTOTYPES
mips_error (char *string, ...)
#else
mips_error (va_alist)
@@ -284,7 +284,7 @@ mips_error (va_alist)
{
va_list args;
-#ifdef __STDC__
+#ifdef ANSI_PROTOTYPES
va_start (args, string);
#else
char *string;