summaryrefslogtreecommitdiff
path: root/gdb/defs.h
diff options
context:
space:
mode:
authorAlexandre Oliva <aoliva@redhat.com>2002-03-19 19:00:04 +0000
committerAlexandre Oliva <aoliva@redhat.com>2002-03-19 19:00:04 +0000
commit6516eab7d0ef45dc94e9ac7a21af276d3c4e6efa (patch)
treed48902c5417b40772d5c40de3ddc89d99e55a571 /gdb/defs.h
parent7cd78c53b92bf04c9618963038d0379964048915 (diff)
downloadgdb-6516eab7d0ef45dc94e9ac7a21af276d3c4e6efa.tar.gz
* coffread.c: Remove redundant static declarations. Replace
occurrences of `PTR' with `void *'. * elfread.c, mdebugread.c, minsyms.c, mipsread.c: Likewise. * top.h (quit_cover): Likewise. * defs.h (catch_errors): Likewise.
Diffstat (limited to 'gdb/defs.h')
-rw-r--r--gdb/defs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/defs.h b/gdb/defs.h
index 455eb661e15..a3ee3348ab9 100644
--- a/gdb/defs.h
+++ b/gdb/defs.h
@@ -953,7 +953,7 @@ extern int catch_exceptions (struct ui_out *uiout,
This function is superseeded by catch_exceptions(). */
typedef int (catch_errors_ftype) (PTR);
-extern int catch_errors (catch_errors_ftype *, PTR, char *, return_mask);
+extern int catch_errors (catch_errors_ftype *, void *, char *, return_mask);
/* Template to catch_errors() that wraps calls to command
functions. */