aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/ia64/dl-lookupcfg.h
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2003-03-03 09:45:09 +0000
committerRoland McGrath <roland@gnu.org>2003-03-03 09:45:09 +0000
commit958528b013e8cef95565105d5bd06f36826448b0 (patch)
tree679872c5d0a64d8eaf3de3464826472821fcca28 /sysdeps/ia64/dl-lookupcfg.h
parente9104e55305a1b896474684299839f12681923a7 (diff)
downloadglibc-958528b013e8cef95565105d5bd06f36826448b0.tar
glibc-958528b013e8cef95565105d5bd06f36826448b0.tar.gz
glibc-958528b013e8cef95565105d5bd06f36826448b0.tar.bz2
glibc-958528b013e8cef95565105d5bd06f36826448b0.zip
2003-03-03 Roland McGrath <roland@redhat.com>
* sysdeps/ia64/dl-fptr.c (__ia64_make_fptr): Revert last change. * sysdeps/ia64/dl-machine.h: Likewise. * sysdeps/ia64/dl-symaddr.c (_dl_symbol_address): Remove const from argument type. * sysdeps/ia64/dl-lookupcfg.h: Update decl.
Diffstat (limited to 'sysdeps/ia64/dl-lookupcfg.h')
-rw-r--r--sysdeps/ia64/dl-lookupcfg.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/sysdeps/ia64/dl-lookupcfg.h b/sysdeps/ia64/dl-lookupcfg.h
index 0beb7dda59..2b15420cab 100644
--- a/sysdeps/ia64/dl-lookupcfg.h
+++ b/sysdeps/ia64/dl-lookupcfg.h
@@ -1,5 +1,5 @@
/* Configuration of lookup functions.
- Copyright (C) 2000, 2001 Free Software Foundation, Inc.
+ Copyright (C) 2000, 2001, 2003 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
@@ -26,8 +26,7 @@
/* Forward declaration. */
struct link_map;
-extern void *_dl_symbol_address (const struct link_map *map,
- const Elf64_Sym *ref);
+extern void *_dl_symbol_address (struct link_map *map, const Elf64_Sym *ref);
#define DL_SYMBOL_ADDRESS(map, ref) _dl_symbol_address(map, ref)