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