]> git.ipfire.org Git - thirdparty/man-pages.git/blob - man3/intro.3
Rename ftm.7 to feature_test_macros.7
[thirdparty/man-pages.git] / man3 / intro.3
1 .\" Copyright (c) 1993 Michael Haardt (michael@moria.de), Fri Apr 2 11:32:09 MET DST 1993
2 .\"
3 .\" This is free documentation; you can redistribute it and/or
4 .\" modify it under the terms of the GNU General Public License as
5 .\" published by the Free Software Foundation; either version 2 of
6 .\" the License, or (at your option) any later version.
7 .\"
8 .\" The GNU General Public License's references to "object code"
9 .\" and "executables" are to be interpreted as the output of any
10 .\" document formatting or typesetting system, including
11 .\" intermediate and printed output.
12 .\"
13 .\" This manual is distributed in the hope that it will be useful,
14 .\" but WITHOUT ANY WARRANTY; without even the implied warranty of
15 .\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 .\" GNU General Public License for more details.
17 .\"
18 .\" You should have received a copy of the GNU General Public
19 .\" License along with this manual; if not, write to the Free
20 .\" Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111,
21 .\" USA.
22 .\"
23 .\" Modified Sat Jul 24 17:37:50 1993 by Rik Faith (faith@cs.unc.edu)
24 .\" Modified Wed Apr 27 13:33:53 MET DST 1994 by Michael Haardt.
25 .TH INTRO 3 1995-12-13 "Linux" "Linux Programmer's Manual"
26 .SH NAME
27 intro \- Introduction to library functions
28 .SH DESCRIPTION
29 This chapter describes all library functions excluding the library
30 functions described in chapter 2, which implement system calls. There
31 are various function groups which can be identified by a letter which
32 is appended to the chapter number:
33 .IP (3C)
34 These functions, the functions from chapter 2 and from chapter 3S are
35 contained in the C standard library libc, which will be used by
36 .BR cc (1)
37 by default.
38 .IP (3S)
39 These functions are parts of the
40 .BR stdio (3)
41 library. They are contained in the standard C library libc.
42 .IP (3M)
43 These functions are contained in the arithmetic library libm. They are
44 used by the
45 .BR f77 (1)
46 FORTRAN compiler by default, but not by the
47 .BR cc (1)
48 C compiler, which needs the option \fI\-lm\fP.
49 .IP (3F)
50 These functions are part of the FORTRAN library libF77. There are no
51 special compiler flags needed to use these functions.
52 .IP (3X)
53 Various special libraries. The manual pages documenting their functions
54 specify the library names.
55 .SH AUTHORS
56 Look at the header of the manual page for the author(s) and copyright
57 conditions. Note that these can be different from page to page!
58 .SH "SEE ALSO"
59 .BR errno (3),
60 .BR feature_test_macros (7)