This is the mail archive of the gdb-patches@sources.redhat.com mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[patch] remove warning_begin() declaration


FYI,

(same problem)

This removes a stray warning_begin() declaration.

Andrew
2002-02-07  Andrew Cagney  <ac131313@redhat.com>

	* defs.h (warning_begin): Delete declaration.

***************
*** 429,435 ****
  2002-01-30  Andrew Cagney  <ac131313@redhat.com>
  
  	* defs.h (vwarning): Declare.
- 	(warning_begin): Delete declaration.
  	* utils.c (vwarning): New function.
  	(warning): Call vwarning.
  	(warning_begin): Delete function.
--- 431,436 ----
Index: defs.h
===================================================================
RCS file: /cvs/src/src/gdb/defs.h,v
retrieving revision 1.75
diff -p -r1.75 defs.h
*** defs.h	2002/02/02 03:42:58	1.75
--- defs.h	2002/02/08 00:49:20
*************** extern int catch_errors (catch_errors_ft
*** 1166,1173 ****
  typedef void (catch_command_errors_ftype) (char *, int);
  extern int catch_command_errors (catch_command_errors_ftype *func, char *command, int from_tty, return_mask);
  
- extern void warning_begin (void);
- 
  extern void warning (const char *, ...) ATTR_FORMAT (printf, 1, 2);
  
  extern void vwarning (const char *, va_list args);
--- 1166,1171 ----

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]