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

Commit

Permalink
Merge pull request #684 from ibuclaw/iofile
Browse files Browse the repository at this point in the history
extern(C++) compatibility with FILE*
  • Loading branch information
yebblies committed Dec 9, 2013
2 parents 8171553 + 76c1a48 commit 2649883
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/core/stdc/stdio.d
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,9 @@ else version( Win64 )
}
else version( linux )
{
align(1) struct _iobuf
alias _iobuf = _IO_FILE;

align(1) struct _IO_FILE
{
int _flags;
char* _read_ptr;
Expand Down

0 comments on commit 2649883

Please sign in to comment.