diff options
author | Ulrich Drepper <drepper@redhat.com> | 2004-11-15 22:00:25 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2004-11-15 22:00:25 +0000 |
commit | f895670da2fd403aed20dcbe156eaa6e75171fbb (patch) | |
tree | 1ec0f23b56eb428736327fa5f2125b2c151a290f /include/stdio.h | |
parent | 4f27c49622ee24022f567c23ce0366cc01e14283 (diff) | |
download | glibc-f895670da2fd403aed20dcbe156eaa6e75171fbb.tar glibc-f895670da2fd403aed20dcbe156eaa6e75171fbb.tar.gz glibc-f895670da2fd403aed20dcbe156eaa6e75171fbb.tar.bz2 glibc-f895670da2fd403aed20dcbe156eaa6e75171fbb.zip |
2004-11-15 Jakub Jelinek <jakub@redhat.com>
* posix/bug-regex24.c: Include string.h.
* nis/nis_clone_obj.c (nis_clone_object): Rename out3 label to out2
and out2 to out. Remove out label. Formatting.
2004-11-15 Ulrich Drepper <drepper@redhat.com>
* include/stdio.h: Do not mark __libc_message as noreturn.
* sysdeps/unix/sysv/linux/libc_fatal.c (__libc_fatal): Add loop to
fool gcc. Include <stdbool.h>.
* sysdeps/posix/libc_fatal.c (__libc_fatal): Add loop to fool gcc.
(__libc_message): Fix typo.
Diffstat (limited to 'include/stdio.h')
-rw-r--r-- | include/stdio.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/stdio.h b/include/stdio.h index ad8f157829..0c1e8fca10 100644 --- a/include/stdio.h +++ b/include/stdio.h @@ -62,8 +62,7 @@ extern int __gen_tempname (char *__tmpl, int __kind); /* Print out MESSAGE on the error output and abort. */ extern void __libc_fatal (__const char *__message) __attribute__ ((__noreturn__)); -extern void __libc_message (int do_abort, __const char *__fnt, ...) - __attribute__ ((__noreturn__)); +extern void __libc_message (int do_abort, __const char *__fnt, ...); /* Acquire ownership of STREAM. */ extern void __flockfile (FILE *__stream); |