diff options
author | trasz <trasz@FreeBSD.org> | 2016-06-09 20:49:26 +0000 |
---|---|---|
committer | trasz <trasz@FreeBSD.org> | 2016-06-09 20:49:26 +0000 |
commit | 28e76ab1691f7e8cdeb5b787fce595633d1be976 (patch) | |
tree | f28c5e2ea820f8a8a34a798ba4e86bf04e9f9d87 /lib/msun/src | |
parent | 786e18e2983525384b47757362dc5a8c151f650a (diff) | |
download | FreeBSD-src-28e76ab1691f7e8cdeb5b787fce595633d1be976.zip FreeBSD-src-28e76ab1691f7e8cdeb5b787fce595633d1be976.tar.gz |
Fix frexpl() declaration to not include the field name.
MFC after: 1 month
Diffstat (limited to 'lib/msun/src')
-rw-r--r-- | lib/msun/src/math.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/msun/src/math.h b/lib/msun/src/math.h index 2ff1731..2214c07 100644 --- a/lib/msun/src/math.h +++ b/lib/msun/src/math.h @@ -461,7 +461,7 @@ long double fmal(long double, long double, long double); long double fmaxl(long double, long double) __pure2; long double fminl(long double, long double) __pure2; long double fmodl(long double, long double); -long double frexpl(long double value, int *); /* fundamentally !__pure2 */ +long double frexpl(long double, int *); /* fundamentally !__pure2 */ long double hypotl(long double, long double); int ilogbl(long double) __pure2; long double ldexpl(long double, int); |