1 /**
2  * The vararg module is intended to facilitate vararg manipulation in D.
3  * It should be interface compatible with the C module "stdarg," and the
4  * two modules may share a common implementation if possible (as is done
5  * here).
6  * Copyright: Copyright Digital Mars 2000 - 2009.
7  * License:   $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0)
8  * Authors:   Walter Bright, Hauke Duden
9  * Source:    $(DRUNTIMESRC core/_vararg.d)
10  */
11 
12 /*          Copyright Digital Mars 2000 - 2009.
13  * Distributed under the Boost Software License, Version 1.0.
14  *    (See accompanying file LICENSE or copy at
15  *          http://www.boost.org/LICENSE_1_0.txt)
16  */
17 module core.vararg;
18 
19 public import core.stdc.stdarg;
20