xref: /freebsd/sys/x86/include/stdarg.h (revision 95ee2897)
15b2a5decSTijl Coosemans /*-
28ba749fbSPoul-Henning Kamp  * SPDX-License-Identifier: BSD-2-Clause
351369649SPedro F. Giffuni  *
48ba749fbSPoul-Henning Kamp  * Copyright (c) 2017 Poul-Henning Kamp.  All rights reserved.
55b2a5decSTijl Coosemans  *
65b2a5decSTijl Coosemans  * Redistribution and use in source and binary forms, with or without
75b2a5decSTijl Coosemans  * modification, are permitted provided that the following conditions
85b2a5decSTijl Coosemans  * are met:
95b2a5decSTijl Coosemans  * 1. Redistributions of source code must retain the above copyright
105b2a5decSTijl Coosemans  *    notice, this list of conditions and the following disclaimer.
115b2a5decSTijl Coosemans  * 2. Redistributions in binary form must reproduce the above copyright
125b2a5decSTijl Coosemans  *    notice, this list of conditions and the following disclaimer in the
135b2a5decSTijl Coosemans  *    documentation and/or other materials provided with the distribution.
145b2a5decSTijl Coosemans  *
155b2a5decSTijl Coosemans  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
165b2a5decSTijl Coosemans  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
175b2a5decSTijl Coosemans  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
185b2a5decSTijl Coosemans  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
195b2a5decSTijl Coosemans  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
205b2a5decSTijl Coosemans  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
215b2a5decSTijl Coosemans  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
225b2a5decSTijl Coosemans  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
235b2a5decSTijl Coosemans  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
245b2a5decSTijl Coosemans  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
255b2a5decSTijl Coosemans  * SUCH DAMAGE.
265b2a5decSTijl Coosemans  */
275b2a5decSTijl Coosemans 
285b2a5decSTijl Coosemans #ifndef _MACHINE_STDARG_H_
295b2a5decSTijl Coosemans #define	_MACHINE_STDARG_H_
305b2a5decSTijl Coosemans 
318ba749fbSPoul-Henning Kamp #include <sys/_stdarg.h>
325b2a5decSTijl Coosemans 
338ba749fbSPoul-Henning Kamp #ifndef va_start
345b2a5decSTijl Coosemans   #error this file needs to be ported to your compiler
355b2a5decSTijl Coosemans #endif
365b2a5decSTijl Coosemans 
375b2a5decSTijl Coosemans #endif /* !_MACHINE_STDARG_H_ */
38