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

Commit

Permalink
Add missing alias for c_long_double on Solaris.
Browse files Browse the repository at this point in the history
cc (sunpro) and gcc on Solaris use 80bit reals for the C `long double` data type.
  • Loading branch information
redstar committed Nov 21, 2014
1 parent 4ae1da4 commit be74ec8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/core/stdc/config.d
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,8 @@ version( DigitalMars )
alias real c_long_double;
else version( FreeBSD )
alias real c_long_double;
else version( Solaris )
alias real c_long_double;
else version( OSX )
alias real c_long_double;
}
Expand Down

0 comments on commit be74ec8

Please sign in to comment.