2017-05-23 05:16:08 +00:00
|
|
|
/* -*-comment-start: "//";comment-end:""-*-
|
2018-07-22 12:24:36 +00:00
|
|
|
* GNU Mes --- Maxwell Equations of Software
|
2019-03-03 09:04:33 +00:00
|
|
|
* Copyright © 2017,2018,2019 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
2021-04-04 11:24:36 +00:00
|
|
|
* Copyright © 2021 W. J. van der Laan <laanwj@protonmail.com>
|
2017-05-23 05:16:08 +00:00
|
|
|
*
|
2018-07-22 12:24:36 +00:00
|
|
|
* This file is part of GNU Mes.
|
2017-05-23 05:16:08 +00:00
|
|
|
*
|
2018-07-22 12:24:36 +00:00
|
|
|
* GNU Mes is free software; you can redistribute it and/or modify it
|
2017-05-23 05:16:08 +00:00
|
|
|
* under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
* your option) any later version.
|
|
|
|
*
|
2018-07-22 12:24:36 +00:00
|
|
|
* GNU Mes is distributed in the hope that it will be useful, but
|
2017-05-23 05:16:08 +00:00
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2018-07-22 12:24:36 +00:00
|
|
|
* along with GNU Mes. If not, see <http://www.gnu.org/licenses/>.
|
2017-05-23 05:16:08 +00:00
|
|
|
*/
|
|
|
|
#ifndef __MES_STDARG_H
|
|
|
|
#define __MES_STDARG_H 1
|
|
|
|
|
2019-05-29 14:15:12 +00:00
|
|
|
#if SYSTEM_LIBC
|
2017-07-23 13:49:03 +00:00
|
|
|
#undef __MES_STDARG_H
|
2017-05-23 05:16:08 +00:00
|
|
|
#include_next <stdarg.h>
|
2019-11-23 20:37:57 +00:00
|
|
|
|
|
|
|
#define va_arg8(ap, type) va_arg(ap, type)
|
|
|
|
|
2021-04-04 11:24:36 +00:00
|
|
|
#elif __GNUC__ && __riscv
|
|
|
|
|
|
|
|
// GCC on RISC-V always passes arguments in registers. Implementing
|
|
|
|
// these macros without the use of built-ins would be very involved.
|
|
|
|
typedef __builtin_va_list va_list;
|
|
|
|
|
|
|
|
#define va_start(v, l) __builtin_va_start (v, l)
|
|
|
|
#define va_end(v) __builtin_va_end (v)
|
|
|
|
#define va_arg(v, l) __builtin_va_arg (v, l)
|
|
|
|
#define va_arg8(ap, type) va_arg (ap, type)
|
|
|
|
#define va_copy(d, s) __builtin_va_copy (d, s)
|
|
|
|
|
|
|
|
#else // ! SYSTEM_LIBC && ! __riscv
|
2017-07-09 07:24:07 +00:00
|
|
|
|
2018-06-19 18:23:38 +00:00
|
|
|
#include <sys/types.h>
|
2017-07-24 16:47:09 +00:00
|
|
|
|
2018-08-15 16:26:55 +00:00
|
|
|
#if __GNUC__ && __x86_64__
|
|
|
|
#define __FOO_VARARGS 1
|
|
|
|
#endif
|
2017-07-09 07:24:07 +00:00
|
|
|
|
2019-03-03 09:04:33 +00:00
|
|
|
typedef char *va_list;
|
2018-08-15 16:26:55 +00:00
|
|
|
#define va_start(ap, last) (void)((ap) = (char*)(&(last) + 1))
|
|
|
|
#define va_arg(ap, type) (type)(((long*)((ap) = ((ap) + sizeof (void*))))[-1])
|
2019-08-27 03:49:22 +00:00
|
|
|
#define va_align(ap, alignment) ((char*)((((unsigned long) (ap)) + (alignment) - 1) &~ ((alignment) - 1)))
|
2019-08-27 02:04:56 +00:00
|
|
|
#define va_arg8(ap, type) (type)(((double*)((ap) = (va_align((ap), 8) + sizeof(double))))[-1])
|
2017-07-05 16:48:08 +00:00
|
|
|
#define va_end(ap) (void)((ap) = 0)
|
|
|
|
#define va_copy(dest, src) dest = src
|
2017-05-23 05:16:08 +00:00
|
|
|
|
2019-06-08 13:36:22 +00:00
|
|
|
int vexec (char const *file_name, va_list ap);
|
2019-05-18 11:27:42 +00:00
|
|
|
int vfprintf (FILE * stream, char const *template, va_list ap);
|
2019-09-06 17:04:50 +00:00
|
|
|
int vfscanf (FILE * stream, char const *template, va_list ap);
|
2019-05-18 11:27:42 +00:00
|
|
|
int vprintf (char const *format, va_list ap);
|
2017-08-12 15:38:44 +00:00
|
|
|
int vsprintf (char *str, char const *format, va_list ap);
|
2017-07-24 16:47:09 +00:00
|
|
|
int vsnprintf (char *str, size_t size, char const *format, va_list ap);
|
2018-05-30 19:49:40 +00:00
|
|
|
int vsscanf (char const *s, char const *template, va_list ap);
|
2017-07-05 16:48:08 +00:00
|
|
|
|
2019-05-29 14:15:12 +00:00
|
|
|
#endif // ! SYSTEM_LIBC
|
2017-05-23 05:16:08 +00:00
|
|
|
|
2017-07-05 16:48:08 +00:00
|
|
|
#endif // __MES_STDARG_H
|