mirror of
https://github.com/dlang/phobos.git
synced 2025-04-28 06:00:35 +03:00
21 lines
715 B
D
21 lines
715 B
D
// Written in the D programming language.
|
|
|
|
/**
|
|
* This is for use with variable argument lists with extern(D) linkage.
|
|
*
|
|
* Copyright: Copyright Hauke Duden 2004 - 2009.
|
|
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
|
|
* Authors: Hauke Duden, $(WEB digitalmars.com, Walter Bright)
|
|
* Source: $(PHOBOSSRC std/_stdarg.d)
|
|
*/
|
|
/* Copyright Hauke Duden 2004 - 2009.
|
|
* Distributed under the Boost Software License, Version 1.0.
|
|
* (See accompanying file LICENSE_1_0.txt or copy at
|
|
* http://www.boost.org/LICENSE_1_0.txt)
|
|
*/
|
|
module std.stdarg;
|
|
|
|
pragma(msg, "std.stdarg is deprecated. You should import core.vararg instead.");
|
|
|
|
public import core.vararg;
|
|
|