From: Ulrich Drepper Date: Wed, 3 Mar 1999 07:40:30 +0000 (+0000) Subject: (lose): Fix return type. X-Git-Tag: cvs/libc-as-990315~35 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a6291c3d510d03c9aa270bd71e469ab180fb6452;p=platform%2Fupstream%2Fglibc.git (lose): Fix return type. --- diff --git a/elf/dl-load.c b/elf/dl-load.c index b5e2ba9990..e24a660035 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)