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

Commit

Permalink
Fix: FP_FAST_* to match /usr/include/math.h (Review @driusan)
Browse files Browse the repository at this point in the history
  • Loading branch information
dkgroot committed Dec 22, 2017
1 parent 7eb5e2a commit 96ba97c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/core/stdc/stdio.d
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@ else version( DragonFlyBSD )
alias off_t fpos_t;

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

alias __sFILE _iobuf;
alias shared(__sFILE) FILE;
alias __FILE_public _iobuf;
alias shared(__FILE_public) FILE;
}
else version (Solaris)
{
Expand Down

0 comments on commit 96ba97c

Please sign in to comment.