1 /* Wrappers for error.h functions.  IEEE128 version.
2    Copyright (C) 2019-2022 Free Software Foundation, Inc.
3    This file is part of the GNU C Library.
4 
5    The GNU C Library is free software; you can redistribute it and/or
6    modify it under the terms of the GNU Lesser General Public
7    License as published by the Free Software Foundation; either
8    version 2.1 of the License, or (at your option) any later version.
9 
10    The GNU C Library is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13    Lesser General Public License for more details.
14 
15    You should have received a copy of the GNU Lesser General Public
16    License along with the GNU C Library; if not, see
17    <https://www.gnu.org/licenses/>.  */
18 
19 #include <error.h>
20 #include <stdarg.h>
21 #include <libio/libioP.h>
22 
23 #define IEEE128_ALIAS(name) \
24   strong_alias (___ieee128_##name, __##name##ieee128)
25 
26 #define IEEE128_DECL(name) ___ieee128_##name
27 
28 void
IEEE128_DECL(error)29 IEEE128_DECL (error) (int status, int errnum, const char *message, ...)
30 {
31   va_list ap;
32   va_start (ap, message);
33   __error_internal (status, errnum, message, ap,
34 		    PRINTF_LDBL_USES_FLOAT128);
35   va_end (ap);
36 }
IEEE128_ALIAS(error)37 IEEE128_ALIAS (error)
38 
39 void
40 IEEE128_DECL (error_at_line) (int status, int errnum,
41 			      const char *file_name,
42 			      unsigned int line_number,
43 			      const char *message, ...)
44 {
45   va_list ap;
46   va_start (ap, message);
47   __error_at_line_internal (status, errnum, file_name, line_number,
48 			    message, ap, PRINTF_LDBL_USES_FLOAT128);
49   va_end (ap);
50 }
51 IEEE128_ALIAS (error_at_line)
52