Skip to content
This repository was archived by the owner on Oct 12, 2022. It is now read-only.
/ druntime Public archive
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions src/core/stdc/stdio.d
Original file line number Diff line number Diff line change
Expand Up @@ -705,15 +705,15 @@ version( CRuntime_DigitalMars )
private extern shared FILE[_NFILE] _iob;

///
shared stdin = &_iob[0];
enum stdin = &_iob[0];
///
shared stdout = &_iob[1];
enum stdout = &_iob[1];
///
shared stderr = &_iob[2];
enum stderr = &_iob[2];
///
shared stdaux = &_iob[3];
enum stdaux = &_iob[3];
///
shared stdprn = &_iob[4];
enum stdprn = &_iob[4];
}
else version( CRuntime_Microsoft )
{
Expand Down