summaryrefslogtreecommitdiff
path: root/elf/vismod2.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2003-03-29 03:46:03 +0000
committerRoland McGrath <roland@gnu.org>2003-03-29 03:46:03 +0000
commit8a3e01b9fb7b179be764d1c10cb0b33abd1e9f68 (patch)
treefc002e1e4b696dc4d8446406c7e12eb8b550e936 /elf/vismod2.c
parentdd731d53dcdbb24cd2a3f299a2ba4362505d3f55 (diff)
2003-03-26 H.J. Lu <hjl@gnu.org>
* elf/vismod.h (getvarlocal1): Return const char **. (getvarinmod1): Likewise. (getvaritcpt1): Likewise. (getvarlocal2): Likewise. (getvarinmod2): Likewise. (getvaritcpt2): Likewise. (getvaritcpt3): Likewise. * elf/vismain.c (do_test): Adjusted. * elf/vismod1.c (getvarlocal1): Return address. (getvarinmod1): Likewise. (getvaritcpt1): Likewise. * elf/vismod2.c (getvarlocal2): Likewise. (getvarinmod2): Likewise. (getvaritcpt2): Likewise. * elf/vismod3.c (getvaritcpt3): Likewise.
Diffstat (limited to 'elf/vismod2.c')
-rw-r--r--elf/vismod2.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/elf/vismod2.c b/elf/vismod2.c
index f2d5c22da6..5443e7c8a7 100644
--- a/elf/vismod2.c
+++ b/elf/vismod2.c
@@ -80,28 +80,28 @@ int
const char *protvarlocal = __FILE__;
asm (".protected protvarlocal");
-const char *
+const char **
getvarlocal2 (void)
{
- return protvarlocal;
+ return &protvarlocal;
}
const char *protvarinmod = __FILE__;
asm (".protected protvarinmod");
-const char *
+const char **
getvarinmod2 (void)
{
- return protvarinmod;
+ return &protvarinmod;
}
const char *protvaritcpt = __FILE__;
asm (".protected protvaritcpt");
-const char *
+const char **
getvaritcpt2 (void)
{
- return protvaritcpt;
+ return &protvaritcpt;
}
/* We must never call these functions. */
@@ -117,7 +117,7 @@ int
abort ();
}
-const char *
+const char **
getvaritcpt3 (void)
{
abort ();