catch_errors() takes PTR argument/func instead of char* argument/func.

Update breakpoint.c.
Fix (?) cover_target_enable_exception_callback().  Wasn't returning a
value.
This commit is contained in:
Andrew Cagney
1999-01-17 23:23:42 +00:00
parent 2bef607561
commit 6e45c399c1
3 changed files with 63 additions and 46 deletions

View File

@@ -516,7 +516,7 @@ return_to_top_level (reason)
int
catch_errors (func, args, errstring, mask)
int (*func) PARAMS ((char *));
catch_errors_ftype *func;
PTR args;
char *errstring;
return_mask mask;