1*d91cf060SJean-Sébastien Pédron /*- 2*d91cf060SJean-Sébastien Pédron * SPDX-License-Identifier: BSD-2-Clause-FreeBSD 3*d91cf060SJean-Sébastien Pédron * 4*d91cf060SJean-Sébastien Pédron * Copyright (c) 2021 Vladimir Kondratyev <wulf@FreeBSD.org> 5*d91cf060SJean-Sébastien Pédron * 6*d91cf060SJean-Sébastien Pédron * Redistribution and use in source and binary forms, with or without 7*d91cf060SJean-Sébastien Pédron * modification, are permitted provided that the following conditions 8*d91cf060SJean-Sébastien Pédron * are met: 9*d91cf060SJean-Sébastien Pédron * 1. Redistributions of source code must retain the above copyright 10*d91cf060SJean-Sébastien Pédron * notice unmodified, this list of conditions, and the following 11*d91cf060SJean-Sébastien Pédron * disclaimer. 12*d91cf060SJean-Sébastien Pédron * 2. Redistributions in binary form must reproduce the above copyright 13*d91cf060SJean-Sébastien Pédron * notice, this list of conditions and the following disclaimer in the 14*d91cf060SJean-Sébastien Pédron * documentation and/or other materials provided with the distribution. 15*d91cf060SJean-Sébastien Pédron * 16*d91cf060SJean-Sébastien Pédron * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 17*d91cf060SJean-Sébastien Pédron * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 18*d91cf060SJean-Sébastien Pédron * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 19*d91cf060SJean-Sébastien Pédron * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 20*d91cf060SJean-Sébastien Pédron * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 21*d91cf060SJean-Sébastien Pédron * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 22*d91cf060SJean-Sébastien Pédron * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 23*d91cf060SJean-Sébastien Pédron * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 24*d91cf060SJean-Sébastien Pédron * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 25*d91cf060SJean-Sébastien Pédron * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 26*d91cf060SJean-Sébastien Pédron */ 27*d91cf060SJean-Sébastien Pédron 28*d91cf060SJean-Sébastien Pédron #ifndef _LINUXKPI_STDARG_H_ 29*d91cf060SJean-Sébastien Pédron #define _LINUXKPI_STDARG_H_ 30*d91cf060SJean-Sébastien Pédron 31*d91cf060SJean-Sébastien Pédron #include <machine/stdarg.h> 32*d91cf060SJean-Sébastien Pédron 33*d91cf060SJean-Sébastien Pédron #endif /* _LINUXKPI_STDARG_H_ */ 34