summaryrefslogtreecommitdiffstats
path: root/include/stdio.h
diff options
context:
space:
mode:
author"Steven J. Hill" <sjhill@realitydiluted.com>2005-07-31 03:06:25 +0000
committer"Steven J. Hill" <sjhill@realitydiluted.com>2005-07-31 03:06:25 +0000
commit1519ca07371be42969c02044d2bf28fcb90adbbd (patch)
treea306c673f706985d1380595486cbcca9a9c88c64 /include/stdio.h
parentceec7a232c0719f1e36e60e8f2f7edb2af9d79c9 (diff)
downloaduClibc-alpine-1519ca07371be42969c02044d2bf28fcb90adbbd.tar.bz2
uClibc-alpine-1519ca07371be42969c02044d2bf28fcb90adbbd.tar.xz
Add function '__libc_fatal' for NPTL.
Diffstat (limited to 'include/stdio.h')
-rw-r--r--include/stdio.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/stdio.h b/include/stdio.h
index 54997f8c4..049126d9b 100644
--- a/include/stdio.h
+++ b/include/stdio.h
@@ -807,6 +807,10 @@ extern int obstack_vprintf (struct obstack *__restrict __obstack,
#if defined __USE_POSIX || defined __USE_MISC
/* These are defined in POSIX.1:1996. */
+/* Print out MESSAGE on the error output and abort. */
+extern void __libc_fatal (__const char *__message)
+ __attribute__ ((__noreturn__));
+
/* Acquire ownership of STREAM. */
extern void flockfile (FILE *__stream) __THROW;