diff options
Diffstat (limited to 'math/tgmath.h')
-rw-r--r-- | math/tgmath.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/math/tgmath.h b/math/tgmath.h index eefff96..cc525e4 100644 --- a/math/tgmath.h +++ b/math/tgmath.h @@ -925,6 +925,9 @@ #if __GLIBC_USE (IEC_60559_FUNCS_EXT_C23) /* Return X to the Y power. */ +# define pown(Val1, Val2) __TGMATH_BINARY_FIRST_REAL_ONLY (Val1, Val2, pown) + +/* Return X to the Y power. */ # define powr(Val1, Val2) __TGMATH_BINARY_REAL_ONLY (Val1, Val2, powr) /* Return 1/sqrt(X). */ |