* serial.h (SERIAL_SET_TTY_STATE): Comment return value.
[deliverable/binutils-gdb.git] / gdb / defs.h
index 8508f271a26138894233ae2b61fb38120f61a38c..4fce2e0f0ebb3eb1897d2f688f5713dd15940d2a 100644 (file)
@@ -296,6 +296,9 @@ n_spaces PARAMS ((int));
 extern void
 gdb_printchar PARAMS ((int, GDB_FILE *, int));
 
+/* Print a host address.  */
+extern void gdb_print_address PARAMS ((void *, GDB_FILE *));
+
 extern void
 fprintf_symbol_filtered PARAMS ((GDB_FILE *, char *, enum language, int));
 
@@ -345,6 +348,9 @@ set_next_address PARAMS ((CORE_ADDR));
 extern void
 print_address_symbolic PARAMS ((CORE_ADDR, GDB_FILE *, int, char *));
 
+extern void
+print_address_numeric PARAMS ((CORE_ADDR, GDB_FILE *));
+
 extern void
 print_address PARAMS ((CORE_ADDR, GDB_FILE *));
 
@@ -596,6 +602,14 @@ parse_escape PARAMS ((char **));
 
 extern const char * const reg_names[];
 
+/* Message to be printed before the error message, when an error occurs.  */
+
+extern char *error_pre_print;
+
+/* Message to be printed before the warning message, when a warning occurs.  */
+
+extern char *warning_pre_print;
+
 extern NORETURN void                   /* Does not return to the caller.  */
 error ();
 
@@ -893,13 +907,8 @@ void store_floating PARAMS ((void *, int, double));
 extern CORE_ADDR
 push_bytes PARAMS ((CORE_ADDR, char *, int));
 
-/* In some modules, we don't have a definition of REGISTER_TYPE yet, so we
-   must avoid prototyping this function for now.  FIXME.  Should be:
-extern CORE_ADDR
-push_word PARAMS ((CORE_ADDR, REGISTER_TYPE));
- */
 extern CORE_ADDR
-push_word ();
+push_word PARAMS ((CORE_ADDR, unsigned LONGEST));
 
 /* Some parts of gdb might be considered optional, in the sense that they
    are not essential for being able to build a working, usable debugger
This page took 0.023141 seconds and 4 git commands to generate.