1f9bac91bSBenno Rice /*- 2*33e959abSWarner Losh * SPDX-License-Identifier: BSD-2-Clause 351369649SPedro F. Giffuni * 4*33e959abSWarner Losh * Copyright (c) 2017 Poul-Henning Kamp. All rights reserved. 5f9bac91bSBenno Rice * 6f9bac91bSBenno Rice * Redistribution and use in source and binary forms, with or without 7f9bac91bSBenno Rice * modification, are permitted provided that the following conditions 8f9bac91bSBenno Rice * are met: 9f9bac91bSBenno Rice * 1. Redistributions of source code must retain the above copyright 10f9bac91bSBenno Rice * notice, this list of conditions and the following disclaimer. 11f9bac91bSBenno Rice * 2. Redistributions in binary form must reproduce the above copyright 12f9bac91bSBenno Rice * notice, this list of conditions and the following disclaimer in the 13f9bac91bSBenno Rice * documentation and/or other materials provided with the distribution. 14f9bac91bSBenno Rice * 15*33e959abSWarner Losh * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 16*33e959abSWarner Losh * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 17*33e959abSWarner Losh * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 18*33e959abSWarner Losh * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 19*33e959abSWarner Losh * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 20*33e959abSWarner Losh * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 21*33e959abSWarner Losh * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 22*33e959abSWarner Losh * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 23*33e959abSWarner Losh * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 24*33e959abSWarner Losh * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 25*33e959abSWarner Losh * SUCH DAMAGE. 26f9bac91bSBenno Rice */ 27f9bac91bSBenno Rice 280b058e3cSMike Barcroft #ifndef _MACHINE_STDARG_H_ 290b058e3cSMike Barcroft #define _MACHINE_STDARG_H_ 30f9bac91bSBenno Rice 31*33e959abSWarner Losh #include <sys/_stdarg.h> 32f9bac91bSBenno Rice 33*33e959abSWarner Losh #ifndef va_start 34*33e959abSWarner Losh #error this file needs to be ported to your compiler 350b058e3cSMike Barcroft #endif 36f9bac91bSBenno Rice 37*33e959abSWarner Losh #endif /* !_MACHINE_STDARG_H_ */ 38