]> git.ipfire.org Git - thirdparty/man-pages.git/blame - man3/pow10.3
pow10.3: Minor rewording
[thirdparty/man-pages.git] / man3 / pow10.3
CommitLineData
fea681da
MK
1.\" Copyright 2004 Andries Brouwer (aeb@cwi.nl)
2.\"
93015253 3.\" %%%LICENSE_START(VERBATIM)
fea681da
MK
4.\" Permission is granted to make and distribute verbatim copies of this
5.\" manual provided the copyright notice and this permission notice are
6.\" preserved on all copies.
7.\"
8.\" Permission is granted to copy and distribute modified versions of this
9.\" manual under the conditions for verbatim copying, provided that the
10.\" entire resulting derived work is distributed under the terms of a
11.\" permission notice identical to this one.
c13182ef 12.\"
fea681da
MK
13.\" Since the Linux kernel and libraries are constantly changing, this
14.\" manual page may be incorrect or out-of-date. The author(s) assume no
15.\" responsibility for errors or omissions, or for damages resulting from
16.\" the use of the information contained herein. The author(s) may not
17.\" have taken the same level of care in the production of this manual,
18.\" which is licensed free of charge, as they might when working
19.\" professionally.
c13182ef 20.\"
fea681da
MK
21.\" Formatted or processed versions of this manual, if unaccompanied by
22.\" the source, must acknowledge the copyright and authors of this work.
4b72fb64 23.\" %%%LICENSE_END
fea681da 24.\"
fe0fefbf 25.TH POW10 3 2015-03-02 "" "Linux Programmer's Manual"
fea681da
MK
26.SH NAME
27pow10, pow10f, pow10l \- base-10 power functions
28.SH SYNOPSIS
29.nf
b80f966b 30.BR "#define _GNU_SOURCE" " /* See feature_test_macros(7) */"
fea681da 31.B #include <math.h>
68e4db0a 32.PP
fea681da 33.BI "double pow10(double " x );
fea681da 34.BI "float pow10f(float " x );
fea681da
MK
35.BI "long double pow10l(long double " x );
36.fi
68e4db0a 37.PP
20c58d70 38Link with \fI\-lm\fP.
fea681da 39.SH DESCRIPTION
5600f73a 40These functions return the value of 10 raised to the power
c6fa0841 41.IR x .
f0d7ce1d
MK
42.SH VERSIONS
43These functions first appeared in glibc in version 2.1.
d285b5b9
MS
44.SH ATTRIBUTES
45For an explanation of the terms used in this section, see
46.BR attributes (7).
47.TS
48allbox;
49lbw28 lb lb
50l l l.
51Interface Attribute Value
52T{
53.BR pow10 (),
54.BR pow10f (),
55.BR pow10l ()
56T} Thread safety MT-Safe
57.TE
47297adb 58.SH CONFORMING TO
b9f5883b 59This functions are nonstandard GNU extensions.
19c98696 60.SH NOTES
fea681da
MK
61These functions are identical to the functions listed under
62.BR exp10 (3).
47297adb 63.SH SEE ALSO
fea681da 64.BR exp10 (3),
0a4f8b7b 65.BR pow (3)