Fix a dumbass mistake. I had the 'set' and 'get' reversed in the

fpsetround/fpgetround macro pairs.
This commit is contained in:
Peter Wemm 2003-08-02 00:26:30 +00:00
parent 6e9a9b9f52
commit 59cc2230c6
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=118331

View File

@ -266,8 +266,8 @@ __fpsetsticky(fp_except_t _m)
#if !defined(__IEEEFP_NOINLINES__) && !defined(__cplusplus) && defined(__GNUC__)
#define fpsetround() __fpsetround()
#define fpgetround(_m) __fpgetround(_m)
#define fpgetround() __fpgetround()
#define fpsetround(_m) __fpsetround(_m)
#define fpgetprec() __fpgetprec()
#define fpsetprec(_m) __fpsetprec(_m)
#define fpgetmask() __fpgetmask()