From 0824e46a719c2d90158b8ad0ebe720948213dd9e Mon Sep 17 00:00:00 2001 From: John Polstra Date: Mon, 18 Sep 2000 20:40:32 +0000 Subject: Update the prototype for "r_brk" to correspond with the change in "src/libexec/rtld-elf/rtld.c" revision 1.48. This eliminates a warning when building the dynamic linker, and it doesn't seem to hurt anything else. --- include/link.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'include') diff --git a/include/link.h b/include/link.h index 3acb86a3b3d6..2339aeeade36 100644 --- a/include/link.h +++ b/include/link.h @@ -58,7 +58,8 @@ struct link_map { struct r_debug { int r_version; /* not used */ struct link_map *r_map; /* list of loaded images */ - void (*r_brk)(void); /* pointer to break point */ + void (*r_brk)(struct r_debug *, struct link_map *); + /* pointer to break point */ enum { RT_CONSISTENT, /* things are stable */ RT_ADD, /* adding a shared library */ -- cgit v1.2.3