Skip to content
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.

Commit

Permalink
Keep _iobuf around until not needed in std.stdio
Browse files Browse the repository at this point in the history
  • Loading branch information
Joakim committed Feb 28, 2014
1 parent 233748d commit abe9b9a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/core/stdc/stdio.d
Expand Up @@ -244,6 +244,7 @@ else version( linux )
void* _lock;
}

alias _IO_FILE _iobuf; //remove later
alias shared(_IO_FILE) FILE;
}
else version( OSX )
Expand Down Expand Up @@ -278,6 +279,7 @@ else version( OSX )
fpos_t _offset;
}

alias __sFILE _iobuf; //remove later
alias shared(__sFILE) FILE;
}
else version( FreeBSD )
Expand Down Expand Up @@ -319,6 +321,7 @@ else version( FreeBSD )
__mbstate_t _mbstate;
}

alias __sFILE _iobuf; //remove later
alias shared(__sFILE) FILE;
}
else version (Solaris)
Expand Down Expand Up @@ -375,6 +378,7 @@ else version( Android )
fpos_t _offset;
}

alias __sFILE _iobuf; //remove later
alias shared(__sFILE) FILE;
}
else
Expand Down

0 comments on commit abe9b9a

Please sign in to comment.