From fad3d64efc959d8073d8367a2c253290825e2942 Mon Sep 17 00:00:00 2001 From: Michael Kerrisk Date: Sun, 15 Mar 2015 09:04:31 +0100 Subject: [PATCH] dlopen.3: Reformat text on RTLD_DEFAULT and RTLD_NEXT Signed-off-by: Michael Kerrisk --- man3/dlopen.3 | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/man3/dlopen.3 b/man3/dlopen.3 index ccfbf0a58..936102213 100644 --- a/man3/dlopen.3 +++ b/man3/dlopen.3 @@ -263,14 +263,14 @@ and then call again, saving its return value into a variable, and check whether this saved value is not NULL. .PP -There are two special pseudo-handles, +There are two special pseudo-handles: +.TP .B RTLD_DEFAULT -and -.BR RTLD_NEXT . -The former will find the first occurrence of the desired symbol +Find the first occurrence of the desired symbol using the default library search order. -The latter -will find the next occurrence of a function in the search order +.TP +.BR RTLD_NEXT +Find the next occurrence of a function in the search order after the current library. This allows one to provide a wrapper around a function in another shared library.