OSDN Git Service

LDP: Update original to LDP v3.79
[linuxjm/LDP_man-pages.git] / original / man3 / intro.3
1 .\" Copyright (C) 2007 Michael Kerrisk <mtk.manpages@gmail.com>
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 .\" 2007-10-23 mtk, Nearly a complete rewrite of the earlier page.
26 .TH INTRO 3 2010-11-11 "Linux" "Linux Programmer's Manual"
27 .SH NAME
28 intro \- introduction to library functions
29 .SH DESCRIPTION
30 Section 3 of the manual describes all library functions excluding the library
31 functions (system call wrappers) described in Section 2,
32 which implement system calls.
33
34 Many of the functions described in the section are part of the
35 Standard C Library
36 .RI ( libc ).
37 Some functions are part of other libraries (e.g.,
38 the math library,
39 .IR libm ,
40 or the real-time library,
41 .IR librt )
42 in which case the manual page will indicate the linker
43 option needed to link against the required library
44 (e.g.,
45 .I \-lm
46 and
47 .IR \-lrt ,
48 respectively,
49 for the aforementioned libraries).
50
51 In some cases,
52 the programmer must define a feature test macro in order to obtain
53 the declaration of a function from the header file specified
54 in the man page SYNOPSIS section.
55 (Where required, these feature test macros must be defined before including
56 .I any
57 header files.)
58 In such cases, the required macro is described in the man page.
59 For further information on feature test macros, see
60 .BR feature_test_macros (7).
61 .\"
62 .\" There
63 .\" are various function groups which can be identified by a letter which
64 .\" is appended to the chapter number:
65 .\" .IP (3C)
66 .\" These functions, the functions from chapter 2 and from chapter 3S are
67 .\" contained in the C standard library libc, which will be used by
68 .\" .BR cc (1)
69 .\" by default.
70 .\" .IP (3S)
71 .\" These functions are parts of the
72 .\" .BR stdio (3)
73 .\" library.  They are contained in the standard C library libc.
74 .\" .IP (3M)
75 .\" These functions are contained in the arithmetic library libm.  They are
76 .\" used by the
77 .\" .BR f77 (1)
78 .\" FORTRAN compiler by default, but not by the
79 .\" .BR cc (1)
80 .\" C compiler, which needs the option \fI\-lm\fP.
81 .\" .IP (3F)
82 .\" These functions are part of the FORTRAN library libF77.  There are no
83 .\" special compiler flags needed to use these functions.
84 .\" .IP (3X)
85 .\" Various special libraries.  The manual pages documenting their functions
86 .\" specify the library names.
87 .SH CONFORMING TO
88 Certain terms and abbreviations are used to indicate UNIX variants
89 and standards to which calls in this section conform.
90 See
91 .BR standards (7).
92 .SH NOTES
93 .SS Authors and copyright conditions
94 Look at the header of the manual page source for the author(s) and copyright
95 conditions.
96 Note that these can be different from page to page!
97 .SH SEE ALSO
98 .BR intro (2),
99 .BR errno (3),
100 .BR capabilities (7),
101 .BR credentials (7),
102 .BR environ (7),
103 .BR feature_test_macros (7),
104 .BR libc (7),
105 .BR math_error (7),
106 .BR path_resolution (7),
107 .BR pthreads (7),
108 .BR signal (7),
109 .BR standards (7)
110 .SH COLOPHON
111 This page is part of release 3.79 of the Linux
112 .I man-pages
113 project.
114 A description of the project,
115 information about reporting bugs,
116 and the latest version of this page,
117 can be found at
118 \%http://www.kernel.org/doc/man\-pages/.