OSDN Git Service

LDP: Update original to LDP v3.68
[linuxjm/LDP_man-pages.git] / original / man3 / pow10.3
1 .\" Copyright 2004 Andries Brouwer (aeb@cwi.nl)
2 .\"
3 .\" %%%LICENSE_START(VERBATIM)
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.
12 .\"
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.
20 .\"
21 .\" Formatted or processed versions of this manual, if unaccompanied by
22 .\" the source, must acknowledge the copyright and authors of this work.
23 .\" %%%LICENSE_END
24 .\"
25 .TH POW10 3  2008-08-11 "" "Linux Programmer's Manual"
26 .SH NAME
27 pow10, pow10f, pow10l \- base-10 power functions
28 .SH SYNOPSIS
29 .nf
30 .BR "#define _GNU_SOURCE" "         /* See feature_test_macros(7) */"
31 .B #include <math.h>
32 .sp
33 .BI "double pow10(double " x );
34 .br
35 .BI "float pow10f(float " x );
36 .br
37 .BI "long double pow10l(long double " x );
38 .fi
39 .sp
40 Link with \fI\-lm\fP.
41 .SH DESCRIPTION
42 The
43 .BR pow10 ()
44 function returns the value of 10 raised to the
45 power
46 .IR x .
47 .SH VERSIONS
48 These functions first appeared in glibc in version 2.1.
49 .SH CONFORMING TO
50 This is a GNU extension.
51 .SH NOTES
52 These functions are identical to the functions listed under
53 .BR exp10 (3).
54 .SH SEE ALSO
55 .BR exp10 (3),
56 .BR pow (3)
57 .SH COLOPHON
58 This page is part of release 3.68 of the Linux
59 .I man-pages
60 project.
61 A description of the project,
62 information about reporting bugs,
63 and the latest version of this page,
64 can be found at
65 \%http://www.kernel.org/doc/man\-pages/.