1. Add csqrt{,f}(3).

2. Put carg{,f}(3) under the FBSD_1.1 namespace where it belongs
   (requested by kan@)
This commit is contained in:
David Schultz 2007-12-15 08:39:03 +00:00
parent aaf70b2314
commit 3c27af2a44
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=174618

View File

@ -1,6 +1,8 @@
/*
* $FreeBSD$
*/
/* 7.0-CURRENT */
FBSD_1.0 {
__fe_dfl_env;
tgamma;
@ -60,8 +62,6 @@ FBSD_1.0 {
asinhf;
atan;
atanf;
carg;
cargf;
cbrt;
cbrtf;
ceil;
@ -183,3 +183,11 @@ FBSD_1.0 {
drem;
dremf;
};
/* First added in 8.0-CURRENT */
FBSD_1.1 {
carg;
cargf;
csqrt;
csqrtf;
};