aboutsummaryrefslogtreecommitdiff
path: root/elf
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1999-03-03 07:40:30 +0000
committerUlrich Drepper <drepper@redhat.com>1999-03-03 07:40:30 +0000
commita6291c3d510d03c9aa270bd71e469ab180fb6452 (patch)
tree0c0255585a582394e98e53351cf3adbc2e32113a /elf
parent171511ec73638cb8b5ce12c3d41f4dc016464f34 (diff)
downloadglibc-a6291c3d510d03c9aa270bd71e469ab180fb6452.zip
glibc-a6291c3d510d03c9aa270bd71e469ab180fb6452.tar.gz
glibc-a6291c3d510d03c9aa270bd71e469ab180fb6452.tar.bz2
(lose): Fix return type.
Diffstat (limited to 'elf')
-rw-r--r--elf/dl-load.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/elf/dl-load.c b/elf/dl-load.c
index b5e2ba9..e24a660 100644
--- a/elf/dl-load.c
+++ b/elf/dl-load.c
@@ -574,7 +574,7 @@ _dl_init_paths (const char *llp)
the compiled did so all the time. This increased the code size for
absolutely no good reason. */
#define LOSE(code, s) lose (code, fd, name, realname, l, s)
-static void volatile
+static void
__attribute__ ((noreturn))
lose (int code, int fd, const char *name, char *realname, struct link_map *l,
const char *msg)