* 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
This commit is contained in:
Jim Kingdon 1995-05-19 14:15:48 +00:00
parent 85c613aaa7
commit 73d3dbd4e6
8 changed files with 35 additions and 25 deletions

View file

@ -29,7 +29,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#include "target.h"
#include <tcl.h>
#include <tk.h>
#ifdef __STDC__
#ifdef ANSI_PROTOTYPES
#include <stdarg.h>
#else
#include <varargs.h>
@ -140,7 +140,7 @@ gdbtk_query (query, args)
}
static void
#ifdef __STDC__
#ifdef ANSI_PROTOTYPES
dsprintf_append_element (Tcl_DString *dsp, char *format, ...)
#else
dsprintf_append_element (va_alist)
@ -150,7 +150,7 @@ dsprintf_append_element (va_alist)
va_list args;
char buf[1024];
#ifdef __STDC__
#ifdef ANSI_PROTOTYPES
va_start (args, format);
#else
Tcl_DString *dsp;