mirror of
https://github.com/dlang/phobos.git
synced 2025-04-28 22:21:09 +03:00
14 lines
392 B
D
14 lines
392 B
D
// @@@DEPRECATED_2017-06@@@
|
|
|
|
/**
|
|
* $(RED Deprecated. Use $(D core.stdc.stdio) instead. This module will be
|
|
* removed in June 2017.)
|
|
*
|
|
* C's <stdio.h> for the D programming language
|
|
* Authors: Walter Bright, Digital Mars, http://www.digitalmars.com
|
|
* License: Public Domain
|
|
*/
|
|
deprecated("Import core.stdc.stdio instead")
|
|
module std.c.stdio;
|
|
|
|
public import core.stdc.stdio;
|