diff options
author | Daniel Jacobowitz <drow@false.org> | 2003-11-06 18:35:05 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2003-11-06 18:35:05 +0000 |
commit | 26bb91f3005ca817c833dcfae48f3d830c9749eb (patch) | |
tree | 08e19bae5f59782dd17d8569e1f008f9b4d93c68 /gdb/breakpoint.c | |
parent | 0bde7532f1e2f1ecc0585b4edbaeeeccdfb55b94 (diff) | |
download | binutils-26bb91f3005ca817c833dcfae48f3d830c9749eb.zip binutils-26bb91f3005ca817c833dcfae48f3d830c9749eb.tar.gz binutils-26bb91f3005ca817c833dcfae48f3d830c9749eb.tar.bz2 |
* breakpoint.c (insert_bp_location, allocate_bp_location): Make
static.
Diffstat (limited to 'gdb/breakpoint.c')
-rw-r--r-- | gdb/breakpoint.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c index b683c2a..962f83a 100644 --- a/gdb/breakpoint.c +++ b/gdb/breakpoint.c @@ -747,11 +747,11 @@ insert_catchpoint (struct ui_out *uo, void *args) NOTE drow/2003-09-09: This routine could be broken down to an object-style method for each breakpoint or catchpoint type. */ -int +static int insert_bp_location (struct bp_location *bpt, - struct ui_file *tmp_error_stream, - int *disabled_breaks, int *process_warning, - int *hw_breakpoint_error) + struct ui_file *tmp_error_stream, + int *disabled_breaks, int *process_warning, + int *hw_breakpoint_error) { int val = 0; @@ -3936,7 +3936,7 @@ adjust_breakpoint_address (CORE_ADDR bpaddr) /* Allocate a struct bp_location. */ -struct bp_location * +static struct bp_location * allocate_bp_location (struct breakpoint *bpt, enum bptype bp_type) { struct bp_location *loc, *loc_p; |