VirtualBox

source: vbox/trunk/include/iprt/stdarg.h@ 73768

Last change on this file since 73768 was 69105, checked in by vboxsync, 7 years ago

include/iprt/: (C) year

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.0 KB
Line 
1/** @file
2 * IPRT - stdarg.h wrapper.
3 */
4
5/*
6 * Copyright (C) 2006-2017 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 * Older MSC versions doesn't implement va_copy. Newer (12.0+?) ones does
50 * implement it like below, but for now it's easier to continue like for the
51 * older ones so we can more easily handle R0, RC and other weird contexts.
52 */
53#if !defined(va_copy) || defined(_MSC_VER)
54# undef va_copy
55# define va_copy(dst, src) do { (dst) = (src); } while (0) /** @todo check AMD64 */
56#endif
57
58#endif
59
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use