diff options
author | J.T. Conklin <jtc@acorntoolworks.com> | 1995-05-18 23:45:31 +0000 |
---|---|---|
committer | J.T. Conklin <jtc@acorntoolworks.com> | 1995-05-18 23:45:31 +0000 |
commit | 85c613aaa7092f8dfc8ce0c475e0ef210685bc16 (patch) | |
tree | 782eeb1652f743b8539d33cdd299772f15fb5de0 /gdb/remote-array.c | |
parent | ff15324f6383f5532d167eba6f4e80f67d94a84a (diff) | |
download | gdb-85c613aaa7092f8dfc8ce0c475e0ef210685bc16.zip gdb-85c613aaa7092f8dfc8ce0c475e0ef210685bc16.tar.gz 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-array.c')
-rw-r--r-- | gdb/remote-array.c | 36 |
1 files changed, 28 insertions, 8 deletions
diff --git a/gdb/remote-array.c b/gdb/remote-array.c index 7f381cd..dc1c464 100644 --- a/gdb/remote-array.c +++ b/gdb/remote-array.c @@ -28,7 +28,11 @@ #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> @@ -62,7 +66,7 @@ static char *hex2mem(); } \ while (0) -static void debuglogs(); +static void debuglogs PARAMS((int, char *, ...)); static void array_open(); static void array_close(); static void array_detach(); @@ -169,17 +173,24 @@ Specify the serial device it is connected to (e.g. /dev/ttya).", * printf_monitor -- send data to monitor. Works just like printf. */ static void +#ifdef __STDC__ +printf_monitor(char *pattern, ...) +#else printf_monitor(va_alist) va_dcl +#endif { va_list args; - char *pattern; char buf[PBUFSIZ]; int i; +#ifdef __STDC__ + va_start(args, pattern); +#else + char *pattern; va_start(args); - pattern = va_arg(args, char *); +#endif vsprintf(buf, pattern, args); @@ -213,25 +224,34 @@ write_monitor(data, len) * to be formatted and printed. A CR is added after each string is printed. */ static void +#ifdef __STDC__ +debuglogs(int level, char *pattern, ...) +#else debuglogs(va_alist) va_dcl +#endif { va_list args; - char *pattern, *p; + char *p; unsigned char buf[PBUFSIZ]; char newbuf[PBUFSIZ]; - int level, i; + int i; +#ifdef __STDC__ + va_start(args, pattern); +#else + char *pattern; + int level; va_start(args); - level = va_arg(args, int); /* get the debug level */ + pattern = va_arg(args, char *); /* get the printf style pattern */ +#endif + if ((level <0) || (level > 100)) { error ("Bad argument passed to debuglogs(), needs debug level"); return; } - pattern = va_arg(args, char *); /* get the printf style pattern */ - vsprintf(buf, pattern, args); /* format the string */ /* convert some characters so it'll look right in the log */ |