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