phobos/std/c/stdarg.d
Vladimir Panteleev d1f2b64b0d Temporarily replace new deprecations with comments
Removes deprecations added in 093d636de4
2015-01-04 15:52:05 +00:00

17 lines
505 B
D

/**
* $(RED Deprecated. Please use $(D core.stdc.stdarg) instead. This module will
* be removed in December 2015.)
* C's <stdarg.h>
* Authors: Hauke Duden and Walter Bright, Digital Mars, www.digitalmars.com
* License: Public Domain
* Macros:
* WIKI=Phobos/StdCStdarg
*/
/* This is for use with extern(C) variable argument lists. */
/// Please import core.stdc.stdarg instead. This module will be deprecated in DMD 2.068.
module std.c.stdarg;
public import core.stdc.stdarg;