]> git.ipfire.org Git - thirdparty/man-pages.git/blame - man3/pow10.3
man*/: srcfix (Use .P instead of .PP or .LP)
[thirdparty/man-pages.git] / man3 / pow10.3
CommitLineData
a1eaacb1 1'\" t
fea681da
MK
2.\" Copyright 2004 Andries Brouwer (aeb@cwi.nl)
3.\"
5fbde956 4.\" SPDX-License-Identifier: Linux-man-pages-copyleft
fea681da 5.\"
4c1c5274 6.TH pow10 3 (date) "Linux man-pages (unreleased)"
fea681da
MK
7.SH NAME
8pow10, pow10f, pow10l \- base-10 power functions
cff6fed8
AC
9.SH LIBRARY
10Math library
8fc3b2cf 11.RI ( libm ", " \-lm )
fea681da
MK
12.SH SYNOPSIS
13.nf
b80f966b 14.BR "#define _GNU_SOURCE" " /* See feature_test_macros(7) */"
fea681da 15.B #include <math.h>
c6d039a3 16.P
fea681da 17.BI "double pow10(double " x );
fea681da 18.BI "float pow10f(float " x );
fea681da
MK
19.BI "long double pow10l(long double " x );
20.fi
fea681da 21.SH DESCRIPTION
5600f73a 22These functions return the value of 10 raised to the power
c6fa0841 23.IR x .
c6d039a3 24.P
6354e662
MK
25.BR "Note well" :
26These functions perform exactly the same task as the functions described in
27.BR exp10 (3),
28with the difference that the latter functions are now standardized
8a3f19c3 29in TS\ 18661-4:2015.
6354e662
MK
30Those latter functions should be used in preference
31to the functions described in this page.
d285b5b9
MS
32.SH ATTRIBUTES
33For an explanation of the terms used in this section, see
34.BR attributes (7).
35.TS
36allbox;
c466875e 37lbx lb lb
d285b5b9
MS
38l l l.
39Interface Attribute Value
40T{
9e54434e
BR
41.na
42.nh
d285b5b9
MS
43.BR pow10 (),
44.BR pow10f (),
45.BR pow10l ()
46T} Thread safety MT-Safe
47.TE
4131356c
AC
48.SH STANDARDS
49GNU.
196224f7 50.SH VERSIONS
4131356c
AC
51glibc 2.1.
52Removed in glibc 2.27.
196224f7 53.\" glibc commit 5a80d39d0d2587e9bd8e72f19e92eeb2a66fbe9e
47297adb 54.SH SEE ALSO
fea681da 55.BR exp10 (3),
0a4f8b7b 56.BR pow (3)