aboutsummaryrefslogtreecommitdiff
path: root/gdb/remote-st.c
diff options
context:
space:
mode:
authorJ.T. Conklin <jtc@acorntoolworks.com>1995-05-18 23:45:31 +0000
committerJ.T. Conklin <jtc@acorntoolworks.com>1995-05-18 23:45:31 +0000
commit85c613aaa7092f8dfc8ce0c475e0ef210685bc16 (patch)
tree782eeb1652f743b8539d33cdd299772f15fb5de0 /gdb/remote-st.c
parentff15324f6383f5532d167eba6f4e80f67d94a84a (diff)
downloadfsf-binutils-gdb-85c613aaa7092f8dfc8ce0c475e0ef210685bc16.zip
fsf-binutils-gdb-85c613aaa7092f8dfc8ce0c475e0ef210685bc16.tar.gz
fsf-binutils-gdb-85c613aaa7092f8dfc8ce0c475e0ef210685bc16.tar.bz2
* utils.c (fprintf_filtered, fprintf_unfiltered, fprintfi_filtered,
printf_filtered, printf_unfiltered, printfi_filtered, query, warning, error, fatal, fatal_dump_core): Use stdarg.h macros when compiling with an ANSI compiler. * complain.c (complain): Likewise. * language.c (type_error, range_error): Likewise. * monitor.c (monitor_printf, monitor_printf_noecho): Likewise. * remote-array.c (printf_monitor, debuglogs): Likewise. * remote-mips.c (mips_error): Likewise. * remote-os9k.c (printf_monitor): Likewise. * remote-st.c (printf_stdebug): Likewise. * gdbtk.c (gdbtk_query): Likewise. * defs.h, complain.h, language.h, monitor.h: Add prototypes to match above changes. * printcmd.c: Remove uneeded #include <varargs.h>. * remote-e7000.c: Likewise. * f-typeprint.c (f_type_print_base): Fix typo found by above changes.
Diffstat (limited to 'gdb/remote-st.c')
-rw-r--r--gdb/remote-st.c17
1 files changed, 15 insertions, 2 deletions
diff --git a/gdb/remote-st.c b/gdb/remote-st.c
index 8bec2f5..b74ba13 100644
--- a/gdb/remote-st.c
+++ b/gdb/remote-st.c
@@ -38,7 +38,11 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#include "gdbcore.h"
#include "target.h"
#include "wait.h"
+#ifdef __STDC__
+#include <stdarg.h>
+#else
#include <varargs.h>
+#endif
#include <signal.h>
#include <string.h>
#include <sys/types.h>
@@ -66,18 +70,27 @@ static serial_t st2000_desc;
/* Send data to stdebug. Works just like printf. */
static void
+#ifdef __STDC__
+printf_stdebug(char *pattern, ...)
+#else
printf_stdebug(va_alist)
va_dcl
+#endif
{
va_list args;
- char *pattern;
char buf[200];
+#ifdef __STDC__
+ va_start(args, pattern);
+#else
+ char *pattern;
va_start(args);
-
pattern = va_arg(args, char *);
+#endif
vsprintf(buf, pattern, args);
+ va_end(args);
+
if (SERIAL_WRITE(st2000_desc, buf, strlen(buf)))
fprintf(stderr, "SERIAL_WRITE failed: %s\n", safe_strerror(errno));
}