]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - ubuntu/vbox/include/iprt/stdarg.h
UBUNTU: vbox-update: Fix up KERN_DIR definitions
[mirror_ubuntu-bionic-kernel.git] / ubuntu / vbox / include / iprt / stdarg.h
CommitLineData
056a1eb7
SF
1/** @file
2 * IPRT - stdarg.h wrapper.
3 */
4
5/*
6 * Copyright (C) 2006-2016 Oracle Corporation
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License (GPL) as published by the Free Software
12 * Foundation, in version 2 as it comes in the "COPYING" file of the
13 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * The contents of this file may alternatively be used under the terms
17 * of the Common Development and Distribution License Version 1.0
18 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
19 * VirtualBox OSE distribution, in which case the provisions of the
20 * CDDL are applicable instead of those of the GPL.
21 *
22 * You may elect to license modified versions of this file under the
23 * terms and conditions of either the GPL or the CDDL or both.
24 */
25
26#ifndef ___iprt_stdarg_h
27#define ___iprt_stdarg_h
28
29#ifdef IPRT_NO_CRT
30# include <iprt/types.h>
31# include <iprt/nocrt/compiler/compiler.h>
32#else
33# include <iprt/cdefs.h>
34# if defined(RT_OS_FREEBSD) && defined(_KERNEL)
35# include <machine/stdarg.h>
36# elif defined(RT_OS_NETBSD) && defined(_KERNEL)
37# include <sys/stdarg.h>
38# elif defined(RT_OS_SOLARIS) && defined(_KERNEL) && defined(__GNUC__)
39# include <stdarg.h>
40# if __GNUC__ >= 4 /* System headers refers to __builtin_stdarg_start. */
41# define __builtin_stdarg_start __builtin_va_start
42# endif
43# else
44# include <stdarg.h>
45# endif
46#endif
47
48/*
49 * MSC doesn't implement va_copy.
50 */
51#ifndef va_copy
52# define va_copy(dst, src) do { (dst) = (src); } while (0) /** @todo check AMD64 */
53#endif
54
55#endif
56