phobos/std/c/stdarg.d
Jonathan M Davis 0899d9403f Move deprecations along.
This includes deprecating std.c.*, which apparently was marked as
scheduled for deprecation in 2.068 but never actually deprecated (though
it looks like it was previously removed from the documentation build,
since it doesn't show up on dlang.org).
2015-12-30 00:18:53 -08:00

16 lines
417 B
D

// @@@DEPRECATED_2017-06@@@
/**
* $(RED Deprecated. Use $(D core.stdc.stdarg) instead. This module will be
* removed in June 2017.)
*
* C's <stdarg.h>
* Authors: Hauke Duden and Walter Bright, Digital Mars, www.digitalmars.com
* License: Public Domain
* Macros:
* WIKI=Phobos/StdCStdarg
*/
deprecated("Import core.stdc.stdarg instead")
module std.c.stdarg;
public import core.stdc.stdarg;