xref: /freebsd/sys/arm/include/stdarg.h (revision 95ee2897e98f5d444f26ed2334cc7c439f9c16c6)
16fc729afSOlivier Houchard /*-
2*8ba749fbSPoul-Henning Kamp  * SPDX-License-Identifier: BSD-2-Clause
351369649SPedro F. Giffuni  *
4*8ba749fbSPoul-Henning Kamp  * Copyright (c) 2017 Poul-Henning Kamp.  All rights reserved.
56fc729afSOlivier Houchard  *
66fc729afSOlivier Houchard  * Redistribution and use in source and binary forms, with or without
76fc729afSOlivier Houchard  * modification, are permitted provided that the following conditions
86fc729afSOlivier Houchard  * are met:
96fc729afSOlivier Houchard  * 1. Redistributions of source code must retain the above copyright
106fc729afSOlivier Houchard  *    notice, this list of conditions and the following disclaimer.
116fc729afSOlivier Houchard  * 2. Redistributions in binary form must reproduce the above copyright
126fc729afSOlivier Houchard  *    notice, this list of conditions and the following disclaimer in the
136fc729afSOlivier Houchard  *    documentation and/or other materials provided with the distribution.
146fc729afSOlivier Houchard  *
15*8ba749fbSPoul-Henning Kamp  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
166fc729afSOlivier Houchard  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
176fc729afSOlivier Houchard  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18*8ba749fbSPoul-Henning Kamp  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
196fc729afSOlivier Houchard  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
206fc729afSOlivier Houchard  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
216fc729afSOlivier Houchard  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
226fc729afSOlivier Houchard  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
236fc729afSOlivier Houchard  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
246fc729afSOlivier Houchard  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
256fc729afSOlivier Houchard  * SUCH DAMAGE.
266fc729afSOlivier Houchard  */
276fc729afSOlivier Houchard 
286fc729afSOlivier Houchard #ifndef _MACHINE_STDARG_H_
296fc729afSOlivier Houchard #define	_MACHINE_STDARG_H_
306fc729afSOlivier Houchard 
31*8ba749fbSPoul-Henning Kamp #include <sys/_stdarg.h>
326fc729afSOlivier Houchard 
33*8ba749fbSPoul-Henning Kamp #ifndef va_start
34*8ba749fbSPoul-Henning Kamp   #error this file needs to be ported to your compiler
356fc729afSOlivier Houchard #endif
366fc729afSOlivier Houchard 
376fc729afSOlivier Houchard #endif /* !_MACHINE_STDARG_H_ */
38