diff options
Diffstat (limited to 'math/bits/mathcalls.h')
-rw-r--r-- | math/bits/mathcalls.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/math/bits/mathcalls.h b/math/bits/mathcalls.h index 566a422..10f6027 100644 --- a/math/bits/mathcalls.h +++ b/math/bits/mathcalls.h @@ -195,6 +195,9 @@ __MATHCALL (pown,, (_Mdouble_ __x, long long int __y)); /* Return X to the Y power. */ __MATHCALL (powr,, (_Mdouble_ __x, _Mdouble_ __y)); +/* Return the Yth root of X. */ +__MATHCALL (rootn,, (_Mdouble_ __x, long long int __y)); + /* Return the reciprocal of the square root of X. */ __MATHCALL (rsqrt,, (_Mdouble_ __x)); #endif |