Skip to content
This repository was archived by the owner on Feb 8, 2024. It is now read-only.

Commit 96ba97c

Browse files
committed
Fix: FP_FAST_* to match /usr/include/math.h (Review @driusan)
Reference: dlang#1999 (comment)
1 parent 7eb5e2a commit 96ba97c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/core/stdc/stdio.d

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -457,7 +457,7 @@ else version( DragonFlyBSD )
457457
alias off_t fpos_t;
458458

459459
/// See /usr/include/stdio.h
460-
struct __sFILE
460+
struct __FILE_public
461461
{
462462
ubyte* *_p; /* current position in (some) buffer */
463463
int _flags; /* flags, below; this FILE is free if 0 */
@@ -467,8 +467,8 @@ else version( DragonFlyBSD )
467467
ssize_t _lbfsize; /* 0 or -_bf._size, for inline putc */
468468
}
469469

470-
alias __sFILE _iobuf;
471-
alias shared(__sFILE) FILE;
470+
alias __FILE_public _iobuf;
471+
alias shared(__FILE_public) FILE;
472472
}
473473
else version (Solaris)
474474
{

0 commit comments

Comments
 (0)