summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorGabriel F. T. Gomes <gabriel@inconstante.eti.br>2018-08-08 09:58:36 -0300
committerGabriel F. T. Gomes <gabriel@inconstante.eti.br>2019-03-01 15:24:51 -0300
commit90188e7d1adc5d8743d7933c9ed1bf95f91dda62 (patch)
treeb95a92a1f310ed52f9340a905bf1da7835106a3d /include
parentea2d89d01c2be3e87eced8bb51ce5dc66d09ac35 (diff)
downloadglibc-90188e7d1adc5d8743d7933c9ed1bf95f91dda62.tar.gz
ldbl-opt: Add err, errx, verr, verrx, warn, warnx, vwarn, and vwarnx (bug 23984)
When support for long double format with 128-bits (-mlong-double-128) was added for platforms where long double had the same format as double, such as powerpc, compatibility versions for the functions listed in the commit title were missed. Since the older format of long double can still be used (with -mlong-double-64), using these functions with a format string that requests the printing of long double variables will produce wrong outputs. This patch adds the missing compatibility functions and header magic to redirect calls to them when -mlong-double-64 is in use. Tested for powerpc, powerpc64 and powerpc64le.
Diffstat (limited to 'include')
-rw-r--r--include/bits/err-ldbl.h1
-rw-r--r--include/err.h9
2 files changed, 10 insertions, 0 deletions
diff --git a/include/bits/err-ldbl.h b/include/bits/err-ldbl.h
new file mode 100644
index 0000000000..aa04305eae
--- /dev/null
+++ b/include/bits/err-ldbl.h
@@ -0,0 +1 @@
+#include <misc/bits/err-ldbl.h>
diff --git a/include/err.h b/include/err.h
index 382855938e..7c05cd1dbb 100644
--- a/include/err.h
+++ b/include/err.h
@@ -1,6 +1,15 @@
#ifndef _ERR_H
#include <misc/err.h>
+/* Prototypes for internal err.h functions. */
+void
+__vwarnx_internal (const char *format, __gnuc_va_list ap,
+ unsigned int mode_flags);
+
+void
+__vwarn_internal (const char *format, __gnuc_va_list ap,
+ unsigned int mode_flags);
+
# ifndef _ISOMAC
libc_hidden_proto (warn)