Rename insert_breakpoint to insert_breakpoint_at
diff --git a/breakpoint.h b/breakpoint.h
index 963cc66..0ec1b37 100644
--- a/breakpoint.h
+++ b/breakpoint.h
@@ -110,8 +110,8 @@
  * added as well as preexisting breakpoints, it then calls
  * BREAKPOINT_TURN_ON.  If anything fails, it cleans up and returns
  * NULL.  Otherwise it returns the breakpoint for ADDR.  */
-struct breakpoint *insert_breakpoint(struct process *proc, void *addr,
-				     struct library_symbol *libsym);
+struct breakpoint *insert_breakpoint_at(struct process *proc, arch_addr_t addr,
+					struct library_symbol *libsym);
 
 /* Name of a symbol associated with BP.  May be NULL.  */
 const char *breakpoint_name(const struct breakpoint *bp);