diff options
Diffstat (limited to 'dlfcn/dlvsym.c')
-rw-r--r-- | dlfcn/dlvsym.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dlfcn/dlvsym.c b/dlfcn/dlvsym.c index e316cb53e0..a46fc8cddf 100644 --- a/dlfcn/dlvsym.c +++ b/dlfcn/dlvsym.c @@ -1,5 +1,5 @@ /* Look up a versioned symbol in a shared object loaded by `dlopen'. - Copyright (C) 1995, 1996, 1997, 1998, 1999 Free Software Foundation, Inc. + Copyright (C) 1995, 96, 97, 98, 99, 2000 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -48,7 +48,7 @@ __dlvsym (void *handle, const char *name, const char *version_str) args.handle = handle; args.name = name; - args.who = __builtin_return_address (0); + args.who = RETURN_ADDRESS (0); args.version = version_str; return (_dlerror_run (dlvsym_doit, &args) ? NULL : args.sym); |