aboutsummaryrefslogtreecommitdiff
path: root/gdb/complaints.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/complaints.c
parent85c613aaa7092f8dfc8ce0c475e0ef210685bc16 (diff)
downloadgdb-73d3dbd4e6ab70e29986e6d706b548cdc39c3531.zip
gdb-73d3dbd4e6ab70e29986e6d706b548cdc39c3531.tar.gz
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/complaints.c')
-rw-r--r--gdb/complaints.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/complaints.c b/gdb/complaints.c
index b551143..72a7d33 100644
--- a/gdb/complaints.c
+++ b/gdb/complaints.c
@@ -20,7 +20,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#include "defs.h"
#include "complaints.h"
#include "gdbcmd.h"
-#ifdef __STDC__
+#ifdef ANSI_PROTOTYPES
#include <stdarg.h>
#else
#include <varargs.h>
@@ -63,7 +63,7 @@ extern int info_verbose;
/* VARARGS */
void
-#ifdef __STDC__
+#ifdef ANSI_PROTOTYPES
complain (struct complaint *complaint, ...)
#else
complain (va_alist)
@@ -71,7 +71,7 @@ complain (va_alist)
#endif
{
va_list args;
-#ifdef __STDC__
+#ifdef ANSI_PROTOTYPES
va_start (args, complaint);
#else
struct complaint *complaint;