diff options
author | Stu Grossman <grossman@cygnus> | 1992-09-15 06:27:18 +0000 |
---|---|---|
committer | Stu Grossman <grossman@cygnus> | 1992-09-15 06:27:18 +0000 |
commit | a8e033f2a2dca7a104e66ab1351c46fc2c2baf03 (patch) | |
tree | 2a65792c4fd0585c290d7bf8a2bebafbe4f237dc /gdb/utils.c | |
parent | b36e3a9b49aa9a2a24555e0a6a50f5cd3d5323b7 (diff) | |
download | gdb-a8e033f2a2dca7a104e66ab1351c46fc2c2baf03.zip gdb-a8e033f2a2dca7a104e66ab1351c46fc2c2baf03.tar.gz gdb-a8e033f2a2dca7a104e66ab1351c46fc2c2baf03.tar.bz2 |
* breakpoint.c, core.c, exec.c, language.c, main.c, printcmd.c,
symfile.c, target.c, valprint.c: Use _filtered form of *printf.
defs.h, utils.c: Make vfprintf_filtered global.
Diffstat (limited to 'gdb/utils.c')
-rw-r--r-- | gdb/utils.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/gdb/utils.c b/gdb/utils.c index b99e4f9..e61b3d6 100644 --- a/gdb/utils.c +++ b/gdb/utils.c @@ -52,9 +52,6 @@ prompt_for_continue PARAMS ((void)); static void set_width_command PARAMS ((char *, int, struct cmd_list_element *)); -static void -vfprintf_filtered PARAMS ((FILE *, char *, va_list)); - /* If this definition isn't overridden by the header files, assume that isatty and fileno exist on this system. */ #ifndef ISATTY @@ -1175,7 +1172,7 @@ fputs_demangled (linebuffer, stream, arg_mode) (since prompt_for_continue may do so) so this routine should not be called when cleanups are not in place. */ -static void +void vfprintf_filtered (stream, format, args) FILE *stream; char *format; |