mirror of
https://github.com/dlang/phobos.git
synced 2025-04-29 22:50:38 +03:00
17 lines
460 B
D
17 lines
460 B
D
|
|
/**
|
|
* $(RED Deprecated. Please use $(D core.stdc.stdio) instead. This module will
|
|
* be removed in December 2015.)
|
|
* C's <stdio.h> for the D programming language
|
|
* Authors: Walter Bright, Digital Mars, http://www.digitalmars.com
|
|
* License: Public Domain
|
|
* Macros:
|
|
* WIKI=Phobos/StdCStdio
|
|
*/
|
|
|
|
|
|
|
|
/// Please import core.stdc.stdio instead. This module will be deprecated in DMD 2.068.
|
|
module std.c.stdio;
|
|
|
|
public import core.stdc.stdio;
|