mirror of
https://github.com/dlang/phobos.git
synced 2025-04-28 14:10:30 +03:00
21 lines
334 B
D
21 lines
334 B
D
|
|
/**
|
|
* 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
|
|
*/
|
|
|
|
|
|
|
|
module std.c.stdio;
|
|
|
|
public import core.stdc.stdio;
|
|
|
|
extern (C):
|
|
|
|
version (Windows)
|
|
{
|
|
extern shared ubyte[_NFILE] __fhnd_info;
|
|
}
|