glibc/sysdeps/ieee754/ldbl-128ibm-compat/test-syslog-ldbl-compat.c
Gabriel F. T. Gomes 381b76d7a3 ldbl-128ibm-compat: Add syslog functions
Similarly to __vfprintf_internal and __vfscanf_internal, the internal
implementation of syslog functions (__vsyslog_internal) takes a
'mode_flags' parameter used to select the format of long double
parameters.  This patch adds variants of the syslog functions that set
'mode_flags' to PRINTF_LDBL_USES_FLOAT128, thus enabling the correct
printing of long double values on powerpc64le, when long double has IEEE
binary128 format (-mabi=ieeelongdouble).

Tested for powerpc64le.

Reviewed-by: Florian Weimer <fweimer@redhat.com>
Reviewed-by: Joseph Myers <joseph@codesourcery.com>
Reviewed-by: Paul E. Murphy <murphyp@linux.ibm.com>
2019-11-27 15:52:41 -03:00

7 lines
249 B
C

#define _FORTIFY_SOURCE 0
#define SYSLOG_FUNCTION syslog
#define SYSLOG_FUNCTION_PARAMS (LOG_DEBUG, "%Lf\n", ld)
#define VSYSLOG_FUNCTION vsyslog
#define VSYSLOG_FUNCTION_PARAMS (LOG_DEBUG, "%Lf\n", ap)
#include <test-syslog-ldbl-compat-template.c>