Manual: improve out-of-memory documentation.
[gnulib.git] / doc / gnulib.texi
1 \input texinfo   @c -*-texinfo-*-
2 @comment %**start of header
3 @setfilename gnulib.info
4 @settitle GNU Gnulib
5 @c Define a new index for the magic constants in regex.texi.
6 @defcodeindex cn
7 @syncodeindex fn cp
8 @syncodeindex ky cp
9 @syncodeindex pg cp
10 @syncodeindex tp cp
11 @syncodeindex vr cp
12 @syncodeindex cn cp
13 @ifclear texi2html
14 @firstparagraphindent insert
15 @end ifclear
16 @comment %**end of header
17
18 @comment Defines the UPDATED variable.
19 @include updated-stamp
20
21 @copying
22 This manual is for GNU Gnulib (updated @value{UPDATED}),
23 which is a library of common routines intended to be shared at the
24 source level.
25
26 Copyright @copyright{} 2004-2010 Free Software Foundation, Inc.
27
28 Permission is granted to copy, distribute and/or modify this document
29 under the terms of the GNU Free Documentation License, Version 1.3 or
30 any later version published by the Free Software Foundation; with no
31 Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.  A
32 copy of the license is included in the section entitled ``GNU Free
33 Documentation License''.
34 @end copying
35
36 @dircategory Software development
37 @direntry
38 * Gnulib: (gnulib).             Source files to share among distributions.
39 @end direntry
40
41 @titlepage
42 @title GNU Gnulib
43 @subtitle updated @value{UPDATED}
44 @author @email{bug-gnulib@@gnu.org}
45 @page
46 @vskip 0pt plus 1filll
47 @insertcopying
48 @end titlepage
49
50 @contents
51
52 @ifnottex
53 @node Top
54 @top GNU Gnulib
55
56 @insertcopying
57 @end ifnottex
58
59 @menu
60 * Introduction::
61 * Invoking gnulib-tool::
62 * Writing modules::
63 * Extending Gnulib::
64 * Miscellaneous Notes::
65 * POSIX Substitutes Library::       Building as a separate substitutes library.
66 * Header File Substitutes::         Overriding system headers.
67 * Function Substitutes::            Replacing system functions.
68 * Legacy Function Substitutes::     Replacing system functions.
69 * Glibc Header File Substitutes::   Overriding system headers.
70 * Glibc Function Substitutes::      Replacing system functions.
71 * Particular Modules::              Documentation of individual modules.
72 * Regular expressions::             The regex module.
73 * GNU Free Documentation License::  Copying and sharing this manual.
74 * Index::
75 @end menu
76
77 @c This is used at the beginning of four chapters.
78 @macro nosuchmodulenote{thing}
79 The notation ``Gnulib module: ---'' means that Gnulib does not provide a
80 module providing a substitute for the \thing\.  When the list
81 ``Portability problems not fixed by Gnulib'' is empty, such a module is
82 not needed: No portability problems are known.  Otherwise, it indicates
83 that such a module would be useful but is not available: No one so far
84 found this \thing\ important enough to contribute a substitute for it.
85 If you need this particular \thing\, you may write to
86 @w{@code{<bug-gnulib at gnu dot org>}}.
87 @end macro
88
89
90 @node Introduction
91 @chapter Introduction
92
93 Gnulib is a source code library. It provides basic functionalities to
94 programs and libraries.  Currently (as of October 2006) more than 30
95 packages make use of Gnulib.
96
97 Resources:
98
99 @itemize
100 @item Gnulib is hosted at Savannah:
101       @url{http://savannah.gnu.org/projects/gnulib}.  Get the sources
102       through Git or CVS from there.
103 @item The Gnulib home page:
104       @url{http://www.gnu.org/software/gnulib/}.
105 @end itemize
106
107 @menu
108 * Benefits::
109 * Library vs Reusable Code::
110 * Portability and Application Code::
111 * Modules::
112 * Various Kinds of Modules::
113 * Collaborative Development::
114 * Copyright::
115 * Steady Development::
116 * Openness::
117 @end menu
118
119 @include gnulib-intro.texi
120
121
122 @include gnulib-tool.texi
123
124
125 @node Writing modules
126 @chapter Writing modules
127
128 This chapter explains how to write modules of your own, either to
129 extend Gnulib for your own package (@pxref{Extending Gnulib}), or for
130 inclusion in gnulib proper.
131
132 The guidelines in this chapter do not necessarily need to be followed for
133 using @code{gnulib-tool}.  They merely represent a set of good practices.
134 Following them will result in a good structure of your modules and in
135 consistency with gnulib.
136
137 @menu
138 * Source code files::
139 * Header files::
140 * Implementation files::
141 * Specification::
142 * Module description::
143 * Autoconf macros::
144 * Unit test modules::
145 * Incompatible changes::
146 @end menu
147
148
149 @node Source code files
150 @section Source code files
151
152 Every API (C functions or variables) provided should be declared in a header
153 file (.h file) and implemented in one or more implementation files (.c files).
154 The separation has the effect that users of your module need to read only
155 the contents of the .h file and the module description in order to understand
156 what the module is about and how to use it - not the entire implementation.
157 Furthermore, users of your module don't need to repeat the declarations of
158 the functions in their code, and are likely to receive notification through
159 compiler errors if you make incompatible changes to the API (like, adding a
160 parameter or changing the return type of a function).
161
162
163 @node Header files
164 @section Header files
165
166 The .h file should declare the C functions and variables that the module
167 provides.
168
169 The .h file should be stand-alone.  That is, it does not require other .h files
170 to be included before.  Rather, it includes all necessary .h files by itself.
171
172 @cindex double inclusion of header files
173 @cindex header file include protection
174 It is a tradition to use CPP tricks to avoid parsing the same header
175 file more than once, which might cause warnings.  The trick is to wrap
176 the content of the header file (say, @file{foo.h}) in a block, as in:
177
178 @example
179 #ifndef FOO_H
180 # define FOO_H
181 ...
182 body of header file goes here
183 ...
184 #endif /* FOO_H */
185 @end example
186
187 Whether to use @code{FOO_H} or @code{_FOO_H} is a matter of taste and
188 style.  The C89 and C99 standards reserve all identifiers that begin with an
189 underscore and either an uppercase letter or another underscore, for
190 any use.  Thus, in theory, an application might not safely assume that
191 @code{_FOO_H} has not already been defined by a library.  On the other
192 hand, using @code{FOO_H} will likely lead the higher risk of
193 collisions with other symbols (e.g., @code{KEY_H}, @code{XK_H}, @code{BPF_H},
194 which are CPP macro constants, or @code{COFF_LONG_H}, which is a CPP
195 macro function).  Your preference may depend on whether you consider
196 the header file under discussion as part of the application (which has
197 its own namespace for CPP symbols) or a supporting library (that
198 shouldn't interfere with the application's CPP symbol namespace).
199
200 @cindex C++ header files
201 @cindex Header files and C++
202 Adapting C header files for use in C++ applications can use another
203 CPP trick, as in:
204
205 @example
206 # ifdef __cplusplus
207 extern "C"
208 @{
209 # endif
210 ...
211 body of header file goes here
212 ...
213 # ifdef __cplusplus
214 @}
215 # endif
216 @end example
217
218 The idea here is that @code{__cplusplus} is defined only by C++
219 implementations, which will wrap the header file in an @samp{extern "C"}
220 block.  Again, whether to use this trick is a matter of taste and
221 style.  While the above can be seen as harmless, it could be argued
222 that the header file is written in C, and any C++ application using it
223 should explicitly use the @samp{extern "C"} block itself.  Your
224 preference might depend on whether you consider the API exported by
225 your header file as something available for C programs only, or for C
226 and C++ programs alike.
227
228 Note that putting a @code{#include} in an @code{extern "C" @{ ... @}}
229 block yields a syntax error in C++ mode on some platforms (e.g., glibc
230 systems with g++ v3.3 to v4.2, AIX, OSF/1, IRIX).  For this reason, it
231 is recommended to place the @code{#include} before the @code{extern
232 "C"} block.
233
234 @node Implementation files
235 @section Implementation files
236
237 The .c file or files implement the functions and variables declared in the
238 .h file.
239
240 @subheading Include ordering
241
242 Every implementation file must start with @samp{#include <config.h>}.
243 This is necessary for activating the preprocessor macros that are defined
244 on behalf of the Autoconf macros.  Some of these preprocessor macros,
245 such as @code{_GNU_SOURCE}, would have no effect if defined after a system
246 header file has already been included.
247
248 Then comes the @samp{#include "..."} specifying the header file that is
249 being implemented.  Putting this right after @samp{#include <config.h>}
250 has the effect that it verifies that the header file is self-contained.
251
252 Then come the system and application headers. It is customary to put all the
253 system headers before all application headers, so as to minimize the risk
254 that a preprocessor macro defined in an application header confuses the system
255 headers on some platforms.
256
257 In summary:
258
259 @itemize
260 @item
261 First comes #include <config.h>.
262 @item
263 Second comes the #include "..." specifying the module being implemented.
264 @item
265 Then come all the #include <...> of system or system-replacement headers,
266 in arbitrary order.
267 @item
268 Then come all the #include "..." of gnulib and application headers, in
269 arbitrary order.
270 @end itemize
271
272
273 @node Specification
274 @section Specification
275
276 The specification of a function should answer at least the following
277 questions:
278 @itemize
279 @item
280 What is the purpose of the function?
281 @item
282 What are the arguments?
283 @item
284 What is the return value?
285 @item
286 What happens in case of failure? (Exit? A specific return value? Errno set?)
287 @item
288 Memory allocation policy: If pointers to memory are returned, are they freshly
289 allocated and supposed to be freed by the caller?
290 @end itemize
291
292 @cindex specification
293 @cindex comments describing functions
294 @cindex describing functions, locating
295 Where to put the specification describing exported functions? Three practices
296 are used in gnulib:
297
298 @itemize
299 @item
300 The specification can be as comments in the header file, just above the
301 function declaration.
302 @item
303 The specification can be as comments in the implementation file, just above
304 the function definition.
305 @item
306 The specification can be in texinfo format, so that it gets included in the
307 gnulib manual.
308 @end itemize
309
310 In any case, the specification should appear in just one place, unless you can
311 ensure that the multiple copies will always remain identical.
312
313 The advantage of putting it in the header file is that the user only has to
314 read the include file normally never needs to peek into the implementation
315 file(s).
316
317 The advantage of putting it in the implementation file is that when reviewing
318 or changing the implementation, you have both elements side by side.
319
320 The advantage of texinfo formatted documentation is that it is easily
321 published in HTML or Info format.
322
323 Currently (as of 2010), half of gnulib uses the first practice, nearly half
324 of gnulib uses the second practice, and a small minority uses the texinfo
325 practice.
326
327
328 @node Module description
329 @section Module description
330
331 For the module description, you can start from an existing module's
332 description, or from a blank one: @file{module/TEMPLATE} for a normal module,
333 or @file{module/TEMPLATE-TESTS} for a unit test module.  Some more fields
334 are possible but rarely used.  Use @file{module/TEMPLATE-EXTENDED} if you
335 want to use one of them.
336
337 Module descriptions have the following fields.  Absent fields are equivalent
338 to fields with empty contents.
339
340 @table @asis
341 @item Description
342 This field should contain a concise description of the module's functionality.
343 One sentence is enough.  For example, if it defines a single function
344 @samp{frob}, the description can be @samp{frob() function: frobnication.}
345 Gnulib's documentation generator will automatically convert the first part
346 to a hyperlink when it has this form.
347
348 @item Status
349 This field is either empty/absent, or contains the word @samp{obsolete}.  In
350 the latter case, @command{gnulib-tool} will, unless the option
351 @code{--with-obsolete} is given, omit it when it used as a dependency.  It is
352 good practice to also notify the user about an obsolete module.  This is done
353 by putting into the @samp{Notice} section (see below) text like
354 @samp{This module is obsolete.}
355
356 @item Notice
357 This field contains text that @command{gnulib-tool} will show to the user
358 when the module is used.  This can be a status indicator like
359 @samp{This module is obsolete.} or additional advice.  Do not abuse this
360 field.
361
362 @item Applicability
363 This field is either empty/absent, or contains the word @samp{all}.  It
364 describes to which @code{Makefile.am} the module is applied.  By default,
365 a normal module is applied to @code{@var{source_base}/Makefile.am}
366 (normally @code{lib/Makefile.am}), whereas a module ending in @code{-tests}
367 is applied to @code{@var{tests_base}/Makefile.am} (normally
368 @code{tests/Makefile.am}).  If this field is @samp{all}, it is applied to
369 both @code{Makefile.am}s.  This is useful for modules which provide
370 Makefile.am macros rather than compiled source code.
371
372 @item Files
373 This field contains a newline separated list of the files that are part of
374 the module.  @code{gnulib-tool} copies these files into the package that
375 uses the module.
376
377 This list is typically ordered by importance: First comes the header file,
378 then the implementation files, then other files.
379
380 It is possible to have the same file mentioned in multiple modules.  That is,
381 if the maintainers of that module agree on the purpose and future of said
382 file.
383
384 @item Depends-on
385 This field contains a newline separated list of the modules that are required
386 for the proper working of this module.  @code{gnulib-tool} includes each
387 required module automatically, unless it is specified with option
388 @code{--avoid} or it is marked as obsolete and the option
389 @code{--with-obsolete} is not given.
390
391 A test modules @code{foo-tests} implicity depends on the corresponding non-test
392 module @code{foo}.  @code{foo} implicitly depends on @code{foo-tests} if the
393 latter exists and if the option @code{--with-tests} has been given.
394
395 Tests modules can depend on non-tests modules.  Non-tests modules should not
396 depend on tests modules. (Recall that tests modules are built in a separate
397 directory.)
398
399 @item configure.ac-early
400 This field contains @file{configure.ac} stuff (Autoconf macro invocations and
401 shell statements) that are logically placed early in the @file{configure.ac}
402 file: right after the @code{AC_PROG_CC} invocation.  This section is adequate
403 for statements that modify @code{CPPFLAGS}, as these can affect the results of
404 other Autoconf macros.
405
406 @item configure.ac
407 This field contains @file{configure.ac} stuff (Autoconf macro invocations and
408 shell statements).
409
410 It is forbidden to add items to the @code{CPPFLAGS} variable here, other than
411 temporarily, as these could affect the results of other Autoconf macros.
412
413 We avoid adding items to the @code{LIBS} variable, other than temporarily.
414 Instead, the module can export an Autoconf-substituted variable that contains
415 link options.  The user of the module can then decide to which executables
416 to apply which link options.  Recall that a package can build executables of
417 different kinds and purposes; having all executables link against all
418 libraries is inappropriate.
419
420 If the statements in this section grow larger than a couple of lines, we
421 recommend moving them to a @code{.m4} file of their own.
422
423 @item Makefile.am
424 This field contains @code{Makefile.am} statements.  Variables like
425 @code{lib_SOURCES} are transformed to match the name of the library
426 being built in that directory.  For example, @code{lib_SOURCES} may become
427 @code{libgnu_a_SOURCES} (for a plain library) or @code{libgnu_la_SOURCES}
428 (for a libtool library).  Therefore, the normal way of having an
429 implementation file @code{lib/foo.c} compiled unconditionally is to write
430 @smallexample
431 lib_SOURCES += foo.c
432 @end smallexample
433
434 @item Include
435 This field contains the preprocessor statements that users of the module
436 need to add to their source code files.  Typically it's a single include
437 statement.  A shorthand is allowed: You don't need to write the word
438 ``#include'', just the name of the include file in the way it will appear
439 in an include statement.  Example:
440 @smallexample
441 "foo.h"
442 @end smallexample
443
444 @item Link
445 This field contains the set of libraries that are needed when linking
446 libraries or executables that use this module.  Often this will be
447 written as a reference to a Makefile variable.  Please write them
448 one per line, so that @command{gnulib-tool} can remove duplicates
449 when presenting a summary to the user.
450 Example:
451 @smallexample
452 $(POW_LIBM)
453 $(LTLIBICONV) when linking with libtool, $(LIBICONV) otherwise
454 @end smallexample
455
456 @item License
457 This field specifies the license that governs the source code parts of
458 this module.  See @ref{Copyright} for details.
459
460 @item Maintainer
461 This field specifies the persons who have a definitive say about proposed
462 changes to this module.  You don't need to mention email addresses here:
463 they can be inferred from the @code{ChangeLog} file.
464
465 Please put at least one person here.  We don't like unmaintained modules.
466 @end table
467
468
469 @node Autoconf macros
470 @section Autoconf macros
471
472 For a module @code{foo}, an Autoconf macro file @file{m4/foo.m4} is typically
473 created when the Autoconf macro invocations for the module are longer than
474 one or two lines.
475
476 The name of the main entry point into this Autoconf macro file is typically
477 @code{gl_FOO}.  For modules outside Gnulib that are not likely to be moved
478 into Gnulib, please use a prefix specific to your package: @code{gt_} for
479 GNU gettext, @code{cu_} for GNU coreutils, etc.
480
481 For modules that define a function @code{foo}, the entry point is called
482 @code{gl_FUNC_FOO} instead of @code{gl_FOO}.  For modules that provide a
483 header file with multiple functions, say @code{foo.h}, the entry point is
484 called @code{gl_FOO_H} or @code{gl_HEADER_FOO_H}.  This convention is useful
485 because sometimes a header and a function name coincide (for example,
486 @code{fcntl} and @code{fcntl.h}).
487
488 For modules that provide a replacement, it is useful to split the Autoconf
489 macro into two macro definitions: one that detects whether the replacement
490 is needed and requests the replacement using @code{AC_LIBOBJ} (this is the
491 entry point, say @code{gl_FUNC_FOO}), and one that arranges for the macros
492 needed by the replacement code @code{lib/foo.c} (typically called
493 @code{gl_PREREQ_FOO}).  The reason of this separation is
494 @enumerate
495 @item
496 to make it easy to update the Autoconf macros when you have modified the
497 source code file: after changing @code{lib/foo.c}, all you have to review
498 is the @code{Depends-on} section of the module description and the
499 @code{gl_PREREQ_FOO} macro in the Autoconf macro file.
500 @item
501 The Autoconf macros are often large enough that splitting them eases
502 maintenance.
503 @end enumerate
504
505
506 @node Unit test modules
507 @section Unit test modules
508
509 A unit test that is a simple C program usually has a module description as
510 simple as this:
511
512 @smallexample
513 Files:
514 tests/test-foo.c
515 tests/macros.h
516
517 Depends-on:
518
519 configure.ac:
520
521 Makefile.am:
522 TESTS += test-foo
523 check_PROGRAMS += test-foo
524 @end smallexample
525
526 The test program @file{tests/test-foo.c} often has the following structure:
527
528 @itemize
529 @item
530 First comes the obligatory @samp{#include <config.h>}.
531
532 @item
533 Second comes the include of the header file that declares the API being tested.
534 Including it here verifies that said header file is self-contained.
535
536 @item
537 Then come other includes.  In particular, the file @file{macros.h} is often
538 used here.  It contains a convenient @code{ASSERT} macro.
539 @end itemize
540
541 The body of the test, then, contains many @code{ASSERT} invocations.  When
542 a test fails, the @code{ASSERT} macro prints the line number of the failing
543 statement, thus giving you as a developer a idea which part of the test
544 failed, even when you don't have access to the machine where the test failed
545 and the reporting user cannot run a debugger.
546
547 Sometimes it is convenient to write part of the test as a shell script.
548 (For example, in areas related to process control or interprocess
549 communication, or when different locales should be tried.) In these cases,
550 the typical module description is like this:
551
552 @smallexample
553 Files:
554 tests/test-foo.sh
555 tests/test-foo.c
556 tests/macros.h
557
558 Depends-on:
559
560 configure.ac:
561
562 Makefile.am:
563 TESTS += test-foo.sh
564 TESTS_ENVIRONMENT += FOO_BAR='@@FOO_BAR@@'
565 check_PROGRAMS += test-foo
566 @end smallexample
567
568 Here, the @code{TESTS_ENVIRONMENT} variable can be used to pass values
569 determined by @code{configure} or by the @code{Makefile} to the shell
570 script, as environment variables.  The values of @code{EXEEXT} and of
571 @code{srcdir}, from Autoconf and Automake, are already provided as
572 environment variables, through an initial value of @code{TESTS_ENVIRONMENT}
573 that @code{gnulib-tool} puts in place.
574
575 Regardless of the specific form of the unit test, the following guidelines
576 should be respected:
577
578 @itemize
579 @item
580 A test indicates success by exiting with exit code 0.  It should normally
581 not produce output in this case.  (Output to temporary files that are
582 cleaned up at the end of the test are possible, of course.)
583 @item
584 A test indicates failure by exiting with an exit code different from 0 and 77,
585 typically 1.  It is useful to print a message about the failure in this case.
586 The @code{ASSERT} macro already does so.
587 @item
588 A test indicates "skip", that is, that most of its interesting functionality
589 could not be performed, through a return code of 77.  A test should also
590 print a message to stdout or stderr about the reason for skipping.
591 For example:
592 @smallexample
593   fputs ("Skipping test: multithreading not enabled\n", stderr);
594   return 77;
595 @end smallexample
596 Such a message helps detecting bugs in the autoconf macros: A simple message
597 @samp{SKIP: test-foo} does not sufficiently catch the attention of the user.
598 @end itemize
599
600
601 @node Incompatible changes
602 @section Incompatible changes
603
604 Incompatible changes to Gnulib modules should be mentioned in Gnulib's
605 @file{NEWS} file.  Incompatible changes here mean that existing source code
606 may not compile or work any more.
607
608 We don't mean changes in the binary interface (ABI), since
609 @enumerate
610 @item
611 Gnulib code is used in source-code form.
612 @item
613 The user who distributes libraries that contain Gnulib code is supposed to
614 bump the version number in the way described in the Libtool documentation
615 before every release.
616 @end enumerate
617
618
619 @node Extending Gnulib
620 @chapter Extending Gnulib
621
622 Gnulib modules are intended to be suitable for widespread use.  Most
623 problems with Gnulib can and should be fixed in a generic way, so that
624 all of Gnulib's users can benefit from the change.  But occasionally a
625 problem arises that is difficult or undesirable to fix generically, or
626 a project that uses Gnulib may need to work around an issue before the
627 Gnulib maintainers commit a final fix.  Maintainers may also want to
628 add their own pools of modules to projects as Gnulib ``staging
629 areas.''
630
631 The obvious way to make local changes to Gnulib modules is to use
632 @command{gnulib-tool} to check out pristine modules, then to modify
633 the results in-place.  This works well enough for short-lived
634 experiments.  It is harder to keep modified versions of Gnulib modules
635 for a long time, even though Git (or another distributed version
636 control systems) can help out a lot with this during the development
637 process.
638
639 Git, however, doesn't address the distribution issue.  When a package
640 ``foobar'' needs a modified version of, say, @file{stdint.in.h}, it
641 either has to put a comment into @file{foobar/autogen.sh} saying
642 ``Attention! This doesn't work with a pristine Gnulib, you need this
643 and that patch after checking out Gnulib,'' or it has to use the
644 @samp{--avoid=stdint} option and provide the modified @code{stdint}
645 module in a different directory.
646
647 The @option{--local-dir} option to @command{gnulib-tool} solves this
648 problem.  It allows the package to override or augment Gnulib.  This
649 means:
650
651 @itemize @bullet
652 @item
653 You can store files that are to override Gnulib files or modules.
654
655 @item
656 You can store context diffs to be applied to Gnulib files.
657
658 @item
659 You can add modules of your own, that are not (yet) in Gnulib.
660
661 @item
662 You can also add unstructured amounts of code to the library, by
663 grouping the non-Gnulib files of the library in a single kitchen-sink
664 ``module.''  (This kind of kitchen-sink module is not needed when you
665 use the @command{gnulib-tool} option @samp{--makefile-name}.)
666 @end itemize
667
668 In a release tarball, you can distribute the contents of this
669 @option{--local-dir} directory that will be combinable with newer
670 versions of Gnulib, barring incompatible changes to Gnulib.
671
672 If the @samp{--local-dir=@var{directory}} option is specified, then
673 @command{gnulib-tool} looks in @file{@var{directory}} whenever it
674 reads a file from the Gnulib directory.  Suppose @command{gnulib-tool}
675 is looking for @var{file}.  Then:
676
677 @itemize @bullet
678 @item
679 If @file{@var{directory}/@var{file}} exists, then @samp{gnulib-tool} uses
680 it instead of the file included in Gnulib.
681
682 @item
683 Otherwise, if @file{@var{directory}/@var{file}.diff} exists, then
684 @command{gnulib-tool} uses the file from Gnulib after applying the diff
685 using the @command{patch} program.
686
687 @item
688 Otherwise, @command{gnulib-tool} uses the file included in Gnulib.
689 @end itemize
690
691 Please make wise use of this option.  It also allows you to easily
692 hold back modifications you make to Gnulib macros in cases it may be
693 better to share them.
694
695
696
697 @node Miscellaneous Notes
698 @chapter Miscellaneous Notes
699
700 @menu
701 * Out of memory handling::
702 * Obsolete modules::
703 * Extra tests modules::
704 * A C++ namespace for gnulib::      A different way of using Gnulib in C++
705 * Library version handling::
706 * Windows sockets::
707 * Libtool and Windows::
708 * License Texinfo sources::
709 * Build robot for gnulib::
710 @end menu
711
712
713 @node Out of memory handling
714 @section Out of memory handling
715
716 @cindex Out of Memory handling
717 @cindex Memory allocation failure
718 The gnulib API does not have a standard error code for the out of memory
719 error condition.  Instead of adding a non-standard error code, gnulib
720 has chosen to adopt a different strategy.  Out of memory handling
721 happens in rare situations, but performing the out of memory error
722 handling after almost all API function invocations pollute your source
723 code and might make it harder to spot more serious problems.  The
724 strategy chosen improves code readability and robustness.
725
726 @cindex Aborting execution
727 For most applications, aborting the application with an error message
728 when the out of memory situation occurs is the best that can be wished
729 for.  This is how the library behaves by default (using
730 the @samp{xalloc-die} module).
731
732 @vindex xalloc_die
733 However, we realize that some applications may not want to abort
734 execution in any situation.  Gnulib supports a hook to let the
735 application regain control and perform its own cleanups when an out of
736 memory situation has occurred.  The application can define a function
737 (having a @code{void} prototype, i.e., no return value and no
738 parameters) and set the library variable
739 @code{xalloc_die} to that function.  The variable should be
740 declared as follows.
741
742 @example
743 extern void (*xalloc_die) (void);
744 @end example
745
746 Gnulib will invoke this function if an out of memory error occurs.  Note
747 that the function should not return.  Of course, care must be taken to
748 not allocate more memory, as that will likely also fail.
749
750
751 @node Obsolete modules
752 @section Obsolete modules
753
754 @cindex Obsolete modules
755 Modules can be marked obsolete.  This means that the problems they fix
756 don't occur any more on the platforms that are reasonable porting targets
757 now.  @code{gnulib-tool} warns when obsolete modules are mentioned on the
758 command line, and by default ignores dependencies from modules to obsolete
759 modules.  When you pass the option @code{--with-obsolete} to
760 @code{gnulib-tool}, dependencies to obsolete modules will be included,
761 however, unless blocked through an @code{--avoid} option.  This option
762 is useful if your package should be portable even to very old platforms.
763
764 In order to mark a module obsolete, you need to add this to the module
765 description:
766
767 @example
768 Status:
769 obsolete
770
771 Notice:
772 This module is obsolete.
773 @end example
774
775
776 @node Extra tests modules
777 @section Extra tests modules
778
779 @cindex Extra tests modules
780 @cindex C++ tests modules
781 @cindex tests modules, C++
782 @cindex long-running tests modules
783 @cindex tests modules, long-running
784 @cindex privileged tests modules
785 @cindex tests modules, privileged
786 @cindex unportable tests modules
787 @cindex tests modules, unportable
788 Test modules can be marked with some special status attributes.  When a
789 test module has such an attribute, @code{gnulib-tool --import} will not
790 include it by default.
791
792 The supported status attributes are:
793
794 @table @code
795 @item c++-test
796 Indicates that the test is testing C++ interoperability.  Such a test is
797 useful in a C++ or mixed C/C++ package, but is useless in a C package.
798
799 @item longrunning-test
800 Indicates that the test takes a long time to compile or execute (more
801 than five minutes or so).  Such a test is better avoided in a release
802 that is made for the general public.
803
804 @item privileged-test
805 Indicates that the test will request special privileges, for example,
806 ask for the superuser password.  Such a test may hang when run
807 non-interactively and is therefore better avoided in a release that is
808 made for the general public.
809
810 @item unportable-test
811 Indicates that the test is known to fail on some systems, and that
812 there is no workaround about it.  Such a test is better avoided in a
813 release that is made for the general public.
814 @end table
815
816 @code{gnulib-tool --import} will not include tests marked with these
817 attributes by default.  When @code{gnulib-tool} is invoked with one
818 of the options @code{--with-c++-tests}, @code{--with-longrunning-tests},
819 @code{--with-privileged-tests}, @code{--with-unportable-tests}, it
820 will include tests despite the corresponding special status attribute.
821 When @code{gnulib-tool} receives the option @code{--with-all-tests},
822 it will include all tests regardless of their status attributes.
823
824 @code{gnulib-tool --create-testdir} and
825 @code{gnulib-tool --create-megatestdir} by default include all tests of
826 modules specified on the command line, regardless of their status
827 attributes.  Tests of modules occurring as dependencies are not included
828 by default if they have one of these status attributes.  The options
829 @code{--with-c++-tests}, @code{--with-longrunning-tests},
830 @code{--with-privileged-tests}, @code{--with-unportable-tests} are
831 recognized here as well.  Additionally, @code{gnulib-tool} also
832 understands the options @code{--without-c++-tests},
833 @code{--without-longrunning-tests}, @code{--without-privileged-tests},
834 @code{--without-unportable-tests}.
835
836 In order to mark a module with a status attribute, you need to add it
837 to the module description, like this:
838
839 @example
840 Status:
841 longrunning-test
842 @end example
843
844 If only a part of a test deserves a particular status attribute, you
845 can split the module into a primary and a secondary test module,
846 say @code{foo-tests} and @code{foo-extra-tests}.  Then add a dependency
847 from @code{foo-tests} to @code{foo-extra-tests}, and mark the
848 @code{foo-extra-tests} with the particular status attribute.
849
850
851 @node A C++ namespace for gnulib
852 @section A C++ namespace for gnulib
853
854 The function definitions provided by Gnulib (@code{.c} code) are meant
855 to be compiled by a C compiler.  The header files (@code{.h} files),
856 on the other hand, can be used in either C or C++.
857
858 By default, when used in a C++ compilation unit, the @code{.h} files
859 declare the same symbols and overrides as in C mode, except that functions
860 defined by Gnulib or by the system are declared as @samp{extern "C"}.
861
862 It is also possible to indicate to Gnulib to provide many of its symbols
863 in a dedicated C++ namespace.  If you define the macro
864 @code{GNULIB_NAMESPACE} to an identifier, many functions will be defined
865 in the namespace specified by the identifier instead of the global
866 namespace.  For example, after you have defined
867 @smallexample
868 #define GNULIB_NAMESPACE gnulib
869 @end smallexample
870 @noindent
871 at the beginning of a compilation unit, Gnulib's @code{<fcntl.h>} header
872 file will make available the @code{open} function as @code{gnulib::open}.
873 The symbol @code{open} will still refer to the system's @code{open} function,
874 with its platform specific bugs and limitations.
875
876 The symbols provided in the Gnulib namespace are those for which the
877 corresponding header file contains a @code{_GL_CXXALIAS_RPL} or
878 @code{_GL_CXXALIAS_SYS} macro invocation.
879
880 The benefits of this namespace mode are:
881 @itemize
882 @item
883 Gnulib defines fewer symbols as preprocessor macros.  For example, on a
884 platform where @code{open} has to be overridden, Gnulib normally does
885 @code{#define open rpl_open}.  If your package has a class with a member
886 @code{open}, for example a class @code{foo} with a method @code{foo::open},
887 then if you define this member in a compilation unit that includes
888 @code{<fcntl.h>} and use it in a compilation unit that does not include
889 @code{<fcntl.h>}, or vice versa, you will get a link error.  Worse: You
890 will not notice this problem on the platform where the system's @code{open}
891 function works fine.  This problem goes away in namespace mode.
892
893 @item
894 It provides a safety check whether the set of modules your package requests
895 from Gnulib is sufficient.  For example, if you use the function
896 @code{gnulib::open} in your code, and you forgot to request the module
897 @samp{open} from Gnulib, you will get a compilation error (regardless of
898 the platform).
899 @end itemize
900
901 The drawback of this namespace mode is that the system provided symbols in
902 the global namespace are still present, even when they contain bugs that
903 Gnulib fixes.  For example, if you call @code{open (...)} in your code,
904 it will invoke the possibly buggy system function, even if you have
905 requested the module @samp{open} from gnulib-tool.
906
907 You can turn on the namespace mode in some compilation units and keep it
908 turned off in others.  This can be useful if your package consists of
909 an application layer that does not need to invoke POSIX functions and
910 an operating system interface layer that contains all the OS function
911 calls.  In such a situation, you will want to turn on the namespace mode
912 for the application layer --- to avoid many preprocessor macro
913 definitions --- and turn it off for the OS interface layer --- to avoid
914 the drawback of the namespace mode, mentioned above.
915
916
917 @node Library version handling
918 @section Library version handling
919
920 The module @samp{check-version} can be useful when your gnulib
921 application is a system library.  You will typically wrap the call to
922 the @code{check_version} function through a library API, your library
923 header file may contain:
924
925 @example
926 #define STRINGPREP_VERSION "0.5.18"
927 ...
928   extern const char *stringprep_check_version (const char *req_version);
929 @end example
930
931 To avoid ELF symbol collisions with other libraries that use the
932 @samp{check-version} module, add to @file{config.h} through a
933 AC_DEFINE something like:
934
935 @example
936 AC_DEFINE(check_version, stringprep_check_version,
937           [Rename check_version.])
938 @end example
939
940 The @code{stringprep_check_version} function will thus be implemented
941 by the @code{check_version} module.
942
943 There are two uses of the interface.  The first is a way to provide
944 for applications to find out the version number of the library it
945 uses.  The application may contain diagnostic code such as:
946
947 @example
948   printf ("Stringprep version: header %s library %s",
949           STRINGPREP_VERSION,
950           stringprep_check_version (NULL));
951 @end example
952
953 Separating the library and header file version can be useful when
954 searching for version mismatch related problems.
955
956 The second uses is as a rudimentary test of proper library version, by
957 making sure the application get a library version that is the same, or
958 newer, than the header file used when building the application.  This
959 doesn't catch all problems, libraries may change backwards incompatibly
960 in later versions, but enable applications to require a certain
961 minimum version before it may proceed.
962
963 Typical uses look like:
964
965 @example
966        /* Check version of libgcrypt. */
967        if (!gcry_check_version (GCRYPT_VERSION))
968          die ("version mismatch\n");
969 @end example
970
971
972 @node Windows sockets
973 @section Windows sockets
974
975 There are several issues when building applications that should work
976 under Windows.  The most problematic part is for applications that use
977 sockets.
978
979 Hopefully, we can add helpful notes to this section that will help you
980 port your application to Windows using gnulib.
981
982 @subsection Getaddrinfo and WINVER
983
984 This was written for the getaddrinfo module, but may be applicable to
985 other functions too.
986
987 The getaddrinfo function exists in ws2tcpip.h and -lws2_32 on Windows
988 XP.  The function declaration is present if @code{WINVER >= 0x0501}.
989 Windows 2000 does not have getaddrinfo in its @file{WS2_32.DLL}.
990
991 Thus, if you want to assume Windows XP or later, you can add
992 AC_DEFINE(WINVER, 0x0501) to avoid compiling to (partial) getaddrinfo
993 implementation.
994
995 If you want to support Windows 2000, don't do anything.  The
996 replacement function will open @file{WS2_32.DLL} during run-time to
997 see if there is a getaddrinfo function available, and use it when
998 available.
999
1000 @node Libtool and Windows
1001 @section Libtool and Windows
1002
1003 If you want it to be possible to cross-compile your program to MinGW
1004 and you use Libtool, you need to put:
1005
1006 @example
1007 AC_LIBTOOL_WIN32_DLL
1008 @end example
1009
1010 in your @file{configure.ac}.  This sets the correct names for the
1011 @code{OBJDUMP}, @code{DLLTOOL}, and @code{AS} tools for the build.
1012
1013 If you are building a library, you will also need to pass
1014 @code{-no-undefined} to make sure Libtool produces a DLL for your
1015 library.  From a @file{Makefile.am}:
1016
1017 @example
1018 libgsasl_la_LDFLAGS += -no-undefined
1019 @end example
1020
1021
1022 @node License Texinfo sources
1023 @section License Texinfo sources
1024
1025 Gnulib provides copies of the GNU GPL, GNU LGPL, and GNU FDL licenses
1026 in Texinfo form.  (The master location is
1027 @url{http://www.gnu.org/licenses/}).  These Texinfo documents do not
1028 have any node names and structures built into them; for your manual,
1029 you should @code{@@include} them in an appropriate @code{@@node}.
1030
1031 The conventional name for the GPL node is @samp{Copying} and for the FDL
1032 @samp{GNU Free Documentation License}.  The LGPL doesn't seem to have
1033 a conventional node name.
1034
1035 Of course the license texts themselves should not be changed at all.
1036
1037
1038 @node Build robot for gnulib
1039 @section Build robot for gnulib
1040
1041 To simplify testing on a wide set of platforms, gnulib is built on
1042 many platforms every day and the results are uploaded to:
1043
1044 @url{http://autobuild.josefsson.org/gnulib/}
1045
1046 If you wish to help the gnulib development effort with build logs for
1047 your favorite platform, you may perform these steps:
1048
1049 @enumerate
1050
1051 @item Create gnulib directory
1052
1053 On a machine with recent automake, autoconf, m4 installed and with a
1054 gnulib git or cvs checkout (typically a Linux machine), use
1055
1056 @example
1057 gnulib-tool --create-megatestdir --with-tests --dir=...
1058 @end example
1059
1060 Note: The created directory uses ca. 512 MB on disk.
1061
1062 @item Transfer gnulib directory
1063
1064 Transfer this directory to a build machine (HP-UX, Cygwin, or
1065 whatever).  Often it is easier to transfer one file, and this can be
1066 achieved by running, inside the directory the following commands:
1067
1068 @example
1069 ./configure
1070 make dist
1071 @end example
1072
1073 And then transferring the @file{dummy-0.tar.gz} file.
1074
1075 @item Build modules
1076
1077 On the build machine, run ./do-autobuild (or "nohup ./do-autobuild").
1078 It creates a directory 'logs/' with a log file for each module.
1079
1080 @item Submit build logs
1081
1082 Submit each log file to Simon's site, either through a
1083
1084 @example
1085 mail `echo gnulib__at__autobuild.josefsson.org | sed -e s/__at__/@@/`
1086 @end example
1087
1088 or through netcat
1089
1090 @example
1091 autobuild-submit logs/*
1092 @end example
1093
1094 @end enumerate
1095
1096 @node POSIX Substitutes Library
1097 @chapter Building the ISO C and POSIX Substitutes
1098
1099 This section shows a radically different way to use Gnulib.
1100
1101 You can extract the ISO C / POSIX substitutes part of gnulib by running
1102 the command
1103 @smallexample
1104 gnulib-tool --create-testdir --source-base=lib \
1105             --dir=/tmp/posixlib `posix-modules`
1106 @end smallexample
1107
1108 @noindent
1109 The command @samp{posix-modules} is found in the same directory as
1110 @code{gnulib-tool}.
1111
1112 The resulting directory can be built on a particular platform,
1113 independently of the program being ported.  Then you can configure and
1114 build any program, by setting @code{CPPFLAGS} and @code{LDFLAGS} at
1115 configure time accordingly: set @code{CPPFLAGS="-I.../posixlib/lib"}, plus
1116 any essential type definitions and flags that you find in
1117 @code{.../posixlib/config.h}, and set
1118 @code{LDFLAGS=".../posixlib/lib/libgnu.a"}.
1119
1120 This way of using Gnulib is useful when you don't want to modify the program's
1121 source code, or when the program uses a mix between C and C++ sources
1122 (requiring separate builds of the @code{posixlib} for the C compiler and
1123 for the C++ compiler).
1124
1125 @node Header File Substitutes
1126 @chapter ISO C and POSIX Header File Substitutes
1127
1128 This chapter describes which header files specified by ISO C or POSIX are
1129 substituted by Gnulib, which portability pitfalls are fixed by Gnulib, and
1130 which (known) portability problems are not worked around by Gnulib.
1131
1132 @nosuchmodulenote header file
1133
1134 @menu
1135 * aio.h::
1136 * arpa/inet.h::
1137 * assert.h::
1138 * complex.h::
1139 * cpio.h::
1140 * ctype.h::
1141 * dirent.h::
1142 * dlfcn.h::
1143 * errno.h::
1144 * fcntl.h::
1145 * fenv.h::
1146 * float.h::
1147 * fmtmsg.h::
1148 * fnmatch.h::
1149 * ftw.h::
1150 * glob.h::
1151 * grp.h::
1152 * iconv.h::
1153 * inttypes.h::
1154 * iso646.h::
1155 * langinfo.h::
1156 * libgen.h::
1157 * limits.h::
1158 * locale.h::
1159 * math.h::
1160 * monetary.h::
1161 * mqueue.h::
1162 * ndbm.h::
1163 * net/if.h::
1164 * netdb.h::
1165 * netinet/in.h::
1166 * netinet/tcp.h::
1167 * nl_types.h::
1168 * poll.h::
1169 * pthread.h::
1170 * pwd.h::
1171 * regex.h::
1172 * sched.h::
1173 * search.h::
1174 * semaphore.h::
1175 * setjmp.h::
1176 * signal.h::
1177 * spawn.h::
1178 * stdarg.h::
1179 * stdbool.h::
1180 * stddef.h::
1181 * stdint.h::
1182 * stdio.h::
1183 * stdlib.h::
1184 * string.h::
1185 * strings.h::
1186 * stropts.h::
1187 * sys/ipc.h::
1188 * sys/mman.h::
1189 * sys/msg.h::
1190 * sys/resource.h::
1191 * sys/select.h::
1192 * sys/sem.h::
1193 * sys/shm.h::
1194 * sys/socket.h::
1195 * sys/stat.h::
1196 * sys/statvfs.h::
1197 * sys/time.h::
1198 * sys/timeb.h::
1199 * sys/times.h::
1200 * sys/types.h::
1201 * sys/uio.h::
1202 * sys/un.h::
1203 * sys/utsname.h::
1204 * sys/wait.h::
1205 * syslog.h::
1206 * tar.h::
1207 * termios.h::
1208 * tgmath.h::
1209 * time.h::
1210 * trace.h::
1211 * ucontext.h::
1212 * ulimit.h::
1213 * unistd.h::
1214 * utime.h::
1215 * utmpx.h::
1216 * wchar.h::
1217 * wctype.h::
1218 * wordexp.h::
1219 @end menu
1220
1221 @include posix-headers/aio.texi
1222 @include posix-headers/arpa_inet.texi
1223 @include posix-headers/assert.texi
1224 @include posix-headers/complex.texi
1225 @include posix-headers/cpio.texi
1226 @include posix-headers/ctype.texi
1227 @include posix-headers/dirent.texi
1228 @include posix-headers/dlfcn.texi
1229 @include posix-headers/errno.texi
1230 @include posix-headers/fcntl.texi
1231 @include posix-headers/fenv.texi
1232 @include posix-headers/float.texi
1233 @include posix-headers/fmtmsg.texi
1234 @include posix-headers/fnmatch.texi
1235 @include posix-headers/ftw.texi
1236 @include posix-headers/glob.texi
1237 @include posix-headers/grp.texi
1238 @include posix-headers/iconv.texi
1239 @include posix-headers/inttypes.texi
1240 @include posix-headers/iso646.texi
1241 @include posix-headers/langinfo.texi
1242 @include posix-headers/libgen.texi
1243 @include posix-headers/limits.texi
1244 @include posix-headers/locale.texi
1245 @include posix-headers/math.texi
1246 @include posix-headers/monetary.texi
1247 @include posix-headers/mqueue.texi
1248 @include posix-headers/ndbm.texi
1249 @include posix-headers/net_if.texi
1250 @include posix-headers/netdb.texi
1251 @include posix-headers/netinet_in.texi
1252 @include posix-headers/netinet_tcp.texi
1253 @include posix-headers/nl_types.texi
1254 @include posix-headers/poll.texi
1255 @include posix-headers/pthread.texi
1256 @include posix-headers/pwd.texi
1257 @include posix-headers/regex.texi
1258 @include posix-headers/sched.texi
1259 @include posix-headers/search.texi
1260 @include posix-headers/semaphore.texi
1261 @include posix-headers/setjmp.texi
1262 @include posix-headers/signal.texi
1263 @include posix-headers/spawn.texi
1264 @include posix-headers/stdarg.texi
1265 @include posix-headers/stdbool.texi
1266 @include posix-headers/stddef.texi
1267 @include posix-headers/stdint.texi
1268 @include posix-headers/stdio.texi
1269 @include posix-headers/stdlib.texi
1270 @include posix-headers/string.texi
1271 @include posix-headers/strings.texi
1272 @include posix-headers/stropts.texi
1273 @include posix-headers/sys_ipc.texi
1274 @include posix-headers/sys_mman.texi
1275 @include posix-headers/sys_msg.texi
1276 @include posix-headers/sys_resource.texi
1277 @include posix-headers/sys_select.texi
1278 @include posix-headers/sys_sem.texi
1279 @include posix-headers/sys_shm.texi
1280 @include posix-headers/sys_socket.texi
1281 @include posix-headers/sys_stat.texi
1282 @include posix-headers/sys_statvfs.texi
1283 @include posix-headers/sys_time.texi
1284 @include posix-headers/sys_timeb.texi
1285 @include posix-headers/sys_times.texi
1286 @include posix-headers/sys_types.texi
1287 @include posix-headers/sys_uio.texi
1288 @include posix-headers/sys_un.texi
1289 @include posix-headers/sys_utsname.texi
1290 @include posix-headers/sys_wait.texi
1291 @include posix-headers/syslog.texi
1292 @include posix-headers/tar.texi
1293 @include posix-headers/termios.texi
1294 @include posix-headers/tgmath.texi
1295 @include posix-headers/time.texi
1296 @include posix-headers/trace.texi
1297 @include posix-headers/ucontext.texi
1298 @include posix-headers/ulimit.texi
1299 @include posix-headers/unistd.texi
1300 @include posix-headers/utime.texi
1301 @include posix-headers/utmpx.texi
1302 @include posix-headers/wchar.texi
1303 @include posix-headers/wctype.texi
1304 @include posix-headers/wordexp.texi
1305
1306 @node Function Substitutes
1307 @chapter ISO C and POSIX Function Substitutes
1308
1309 This chapter describes which functions and function-like macros specified by
1310 ISO C or POSIX are substituted by Gnulib, which portability pitfalls are
1311 fixed by Gnulib, and which (known) portability problems are not worked around
1312 by Gnulib.
1313
1314 @nosuchmodulenote function
1315
1316 @menu
1317 * FD_CLR::
1318 * FD_ISSET::
1319 * FD_SET::
1320 * FD_ZERO::
1321 * _Exit::
1322 * _exit::
1323 * _longjmp::
1324 * _setjmp::
1325 * _tolower::
1326 * _toupper::
1327 * a64l::
1328 * abort::
1329 * abs::
1330 * accept::
1331 * access::
1332 * acos::
1333 * acosf::
1334 * acosh::
1335 * acoshf::
1336 * acoshl::
1337 * acosl::
1338 * aio_cancel::
1339 * aio_error::
1340 * aio_fsync::
1341 * aio_read::
1342 * aio_return::
1343 * aio_suspend::
1344 * aio_write::
1345 * alarm::
1346 * alphasort::
1347 * asctime::
1348 * asctime_r::
1349 * asin::
1350 * asinf::
1351 * asinh::
1352 * asinhf::
1353 * asinhl::
1354 * asinl::
1355 * assert::
1356 * atan::
1357 * atan2::
1358 * atan2f::
1359 * atan2l::
1360 * atanf::
1361 * atanh::
1362 * atanhf::
1363 * atanhl::
1364 * atanl::
1365 * atexit::
1366 * atof::
1367 * atoi::
1368 * atol::
1369 * atoll::
1370 * basename::
1371 * bind::
1372 * bsearch::
1373 * btowc::
1374 * cabs::
1375 * cabsf::
1376 * cabsl::
1377 * cacos::
1378 * cacosf::
1379 * cacosh::
1380 * cacoshf::
1381 * cacoshl::
1382 * cacosl::
1383 * calloc::
1384 * carg::
1385 * cargf::
1386 * cargl::
1387 * casin::
1388 * casinf::
1389 * casinh::
1390 * casinhf::
1391 * casinhl::
1392 * casinl::
1393 * catan::
1394 * catanf::
1395 * catanh::
1396 * catanhf::
1397 * catanhl::
1398 * catanl::
1399 * catclose::
1400 * catgets::
1401 * catopen::
1402 * cbrt::
1403 * cbrtf::
1404 * cbrtl::
1405 * ccos::
1406 * ccosf::
1407 * ccosh::
1408 * ccoshf::
1409 * ccoshl::
1410 * ccosl::
1411 * ceil::
1412 * ceilf::
1413 * ceill::
1414 * cexp::
1415 * cexpf::
1416 * cexpl::
1417 * cfgetispeed::
1418 * cfgetospeed::
1419 * cfsetispeed::
1420 * cfsetospeed::
1421 * chdir::
1422 * chmod::
1423 * chown::
1424 * cimag::
1425 * cimagf::
1426 * cimagl::
1427 * clearerr::
1428 * clock::
1429 * clock_getcpuclockid::
1430 * clock_getres::
1431 * clock_gettime::
1432 * clock_nanosleep::
1433 * clock_settime::
1434 * clog::
1435 * clogf::
1436 * clogl::
1437 * close::
1438 * closedir::
1439 * closelog::
1440 * confstr::
1441 * conj::
1442 * conjf::
1443 * conjl::
1444 * connect::
1445 * copysign::
1446 * copysignf::
1447 * copysignl::
1448 * cos::
1449 * cosf::
1450 * cosh::
1451 * coshf::
1452 * coshl::
1453 * cosl::
1454 * cpow::
1455 * cpowf::
1456 * cpowl::
1457 * cproj::
1458 * cprojf::
1459 * cprojl::
1460 * creal::
1461 * crealf::
1462 * creall::
1463 * creat::
1464 * crypt::
1465 * csin::
1466 * csinf::
1467 * csinh::
1468 * csinhf::
1469 * csinhl::
1470 * csinl::
1471 * csqrt::
1472 * csqrtf::
1473 * csqrtl::
1474 * ctan::
1475 * ctanf::
1476 * ctanh::
1477 * ctanhf::
1478 * ctanhl::
1479 * ctanl::
1480 * ctermid::
1481 * ctime::
1482 * ctime_r::
1483 * daylight::
1484 * dbm_clearerr::
1485 * dbm_close::
1486 * dbm_delete::
1487 * dbm_error::
1488 * dbm_fetch::
1489 * dbm_firstkey::
1490 * dbm_nextkey::
1491 * dbm_open::
1492 * dbm_store::
1493 * difftime::
1494 * dirfd::
1495 * dirname::
1496 * div::
1497 * dlclose::
1498 * dlerror::
1499 * dlopen::
1500 * dlsym::
1501 * dprintf::
1502 * drand48::
1503 * dup::
1504 * dup2::
1505 * duplocale::
1506 * encrypt::
1507 * endgrent::
1508 * endhostent::
1509 * endnetent::
1510 * endprotoent::
1511 * endpwent::
1512 * endservent::
1513 * endutxent::
1514 * environ::
1515 * erand48::
1516 * erf::
1517 * erfc::
1518 * erfcf::
1519 * erfcl::
1520 * erff::
1521 * erfl::
1522 * errno::
1523 * execl::
1524 * execle::
1525 * execlp::
1526 * execv::
1527 * execve::
1528 * execvp::
1529 * exit::
1530 * exp::
1531 * exp2::
1532 * exp2f::
1533 * exp2l::
1534 * expf::
1535 * expl::
1536 * expm1::
1537 * expm1f::
1538 * expm1l::
1539 * fabs::
1540 * fabsf::
1541 * fabsl::
1542 * faccessat::
1543 * fattach::
1544 * fchdir::
1545 * fchmod::
1546 * fchmodat::
1547 * fchown::
1548 * fchownat::
1549 * fclose::
1550 * fcntl::
1551 * fdatasync::
1552 * fdetach::
1553 * fdim::
1554 * fdimf::
1555 * fdiml::
1556 * fdopen::
1557 * fdopendir::
1558 * feclearexcept::
1559 * fegetenv::
1560 * fegetexceptflag::
1561 * fegetround::
1562 * feholdexcept::
1563 * feof::
1564 * feraiseexcept::
1565 * ferror::
1566 * fesetenv::
1567 * fesetexceptflag::
1568 * fesetround::
1569 * fetestexcept::
1570 * feupdateenv::
1571 * fexecve::
1572 * fflush::
1573 * ffs::
1574 * fgetc::
1575 * fgetpos::
1576 * fgets::
1577 * fgetwc::
1578 * fgetws::
1579 * fileno::
1580 * flockfile::
1581 * floor::
1582 * floorf::
1583 * floorl::
1584 * fma::
1585 * fmaf::
1586 * fmal::
1587 * fmax::
1588 * fmaxf::
1589 * fmaxl::
1590 * fmemopen::
1591 * fmin::
1592 * fminf::
1593 * fminl::
1594 * fmod::
1595 * fmodf::
1596 * fmodl::
1597 * fmtmsg::
1598 * fnmatch::
1599 * fopen::
1600 * fork::
1601 * fpathconf::
1602 * fpclassify::
1603 * fprintf::
1604 * fputc::
1605 * fputs::
1606 * fputwc::
1607 * fputws::
1608 * fread::
1609 * free::
1610 * freeaddrinfo::
1611 * freelocale::
1612 * freopen::
1613 * frexp::
1614 * frexpf::
1615 * frexpl::
1616 * fscanf::
1617 * fseek::
1618 * fseeko::
1619 * fsetpos::
1620 * fstat::
1621 * fstatat::
1622 * fstatvfs::
1623 * fsync::
1624 * ftell::
1625 * ftello::
1626 * ftok::
1627 * ftruncate::
1628 * ftrylockfile::
1629 * ftw::
1630 * funlockfile::
1631 * futimens::
1632 * fwide::
1633 * fwprintf::
1634 * fwrite::
1635 * fwscanf::
1636 * gai_strerror::
1637 * getaddrinfo::
1638 * getc::
1639 * getc_unlocked::
1640 * getchar::
1641 * getchar_unlocked::
1642 * getcwd::
1643 * getdate::
1644 * getdate_err::
1645 * getdelim::
1646 * getegid::
1647 * getenv::
1648 * geteuid::
1649 * getgid::
1650 * getgrent::
1651 * getgrgid::
1652 * getgrgid_r::
1653 * getgrnam::
1654 * getgrnam_r::
1655 * getgroups::
1656 * gethostent::
1657 * gethostid::
1658 * gethostname::
1659 * getitimer::
1660 * getline::
1661 * getlogin::
1662 * getlogin_r::
1663 * getmsg::
1664 * getnameinfo::
1665 * getnetbyaddr::
1666 * getnetbyname::
1667 * getnetent::
1668 * getopt::
1669 * getpeername::
1670 * getpgid::
1671 * getpgrp::
1672 * getpid::
1673 * getpmsg::
1674 * getppid::
1675 * getpriority::
1676 * getprotobyname::
1677 * getprotobynumber::
1678 * getprotoent::
1679 * getpwent::
1680 * getpwnam::
1681 * getpwnam_r::
1682 * getpwuid::
1683 * getpwuid_r::
1684 * getrlimit::
1685 * getrusage::
1686 * gets::
1687 * getservbyname::
1688 * getservbyport::
1689 * getservent::
1690 * getsid::
1691 * getsockname::
1692 * getsockopt::
1693 * getsubopt::
1694 * gettimeofday::
1695 * getuid::
1696 * getutxent::
1697 * getutxid::
1698 * getutxline::
1699 * getwc::
1700 * getwchar::
1701 * glob::
1702 * globfree::
1703 * gmtime::
1704 * gmtime_r::
1705 * grantpt::
1706 * hcreate::
1707 * hdestroy::
1708 * hsearch::
1709 * htonl::
1710 * htons::
1711 * hypot::
1712 * hypotf::
1713 * hypotl::
1714 * iconv::
1715 * iconv_close::
1716 * iconv_open::
1717 * if_freenameindex::
1718 * if_indextoname::
1719 * if_nameindex::
1720 * if_nametoindex::
1721 * ilogb::
1722 * ilogbf::
1723 * ilogbl::
1724 * imaxabs::
1725 * imaxdiv::
1726 * inet_addr::
1727 * inet_ntoa::
1728 * inet_ntop::
1729 * inet_pton::
1730 * initstate::
1731 * insque::
1732 * ioctl::
1733 * isalnum::
1734 * isalnum_l::
1735 * isalpha::
1736 * isalpha_l::
1737 * isascii::
1738 * isastream::
1739 * isatty::
1740 * isblank::
1741 * isblank_l::
1742 * iscntrl::
1743 * iscntrl_l::
1744 * isdigit::
1745 * isdigit_l::
1746 * isfinite::
1747 * isgraph::
1748 * isgraph_l::
1749 * isgreater::
1750 * isgreaterequal::
1751 * isinf::
1752 * isless::
1753 * islessequal::
1754 * islessgreater::
1755 * islower::
1756 * islower_l::
1757 * isnan::
1758 * isnormal::
1759 * isprint::
1760 * isprint_l::
1761 * ispunct::
1762 * ispunct_l::
1763 * isspace::
1764 * isspace_l::
1765 * isunordered::
1766 * isupper::
1767 * isupper_l::
1768 * iswalnum::
1769 * iswalnum_l::
1770 * iswalpha::
1771 * iswalpha_l::
1772 * iswblank::
1773 * iswblank_l::
1774 * iswcntrl::
1775 * iswcntrl_l::
1776 * iswctype::
1777 * iswctype_l::
1778 * iswdigit::
1779 * iswdigit_l::
1780 * iswgraph::
1781 * iswgraph_l::
1782 * iswlower::
1783 * iswlower_l::
1784 * iswprint::
1785 * iswprint_l::
1786 * iswpunct::
1787 * iswpunct_l::
1788 * iswspace::
1789 * iswspace_l::
1790 * iswupper::
1791 * iswupper_l::
1792 * iswxdigit::
1793 * iswxdigit_l::
1794 * isxdigit::
1795 * isxdigit_l::
1796 * j0::
1797 * j1::
1798 * jn::
1799 * jrand48::
1800 * kill::
1801 * killpg::
1802 * l64a::
1803 * labs::
1804 * lchown::
1805 * lcong48::
1806 * ldexp::
1807 * ldexpf::
1808 * ldexpl::
1809 * ldiv::
1810 * lfind::
1811 * lgamma::
1812 * lgammaf::
1813 * lgammal::
1814 * link::
1815 * linkat::
1816 * lio_listio::
1817 * listen::
1818 * llabs::
1819 * lldiv::
1820 * llrint::
1821 * llrintf::
1822 * llrintl::
1823 * llround::
1824 * llroundf::
1825 * llroundl::
1826 * localeconv::
1827 * localtime::
1828 * localtime_r::
1829 * lockf::
1830 * log::
1831 * log10::
1832 * log10f::
1833 * log10l::
1834 * log1p::
1835 * log1pf::
1836 * log1pl::
1837 * log2::
1838 * log2f::
1839 * log2l::
1840 * logb::
1841 * logbf::
1842 * logbl::
1843 * logf::
1844 * logl::
1845 * longjmp::
1846 * lrand48::
1847 * lrint::
1848 * lrintf::
1849 * lrintl::
1850 * lround::
1851 * lroundf::
1852 * lroundl::
1853 * lsearch::
1854 * lseek::
1855 * lstat::
1856 * malloc::
1857 * mblen::
1858 * mbrlen::
1859 * mbrtowc::
1860 * mbsinit::
1861 * mbsnrtowcs::
1862 * mbsrtowcs::
1863 * mbstowcs::
1864 * mbtowc::
1865 * memccpy::
1866 * memchr::
1867 * memcmp::
1868 * memcpy::
1869 * memmove::
1870 * memset::
1871 * mkdir::
1872 * mkdirat::
1873 * mkdtemp::
1874 * mkfifo::
1875 * mkfifoat::
1876 * mknod::
1877 * mknodat::
1878 * mkstemp::
1879 * mktime::
1880 * mlock::
1881 * mlockall::
1882 * mmap::
1883 * modf::
1884 * modff::
1885 * modfl::
1886 * mprotect::
1887 * mq_close::
1888 * mq_getattr::
1889 * mq_notify::
1890 * mq_open::
1891 * mq_receive::
1892 * mq_send::
1893 * mq_setattr::
1894 * mq_timedreceive::
1895 * mq_timedsend::
1896 * mq_unlink::
1897 * mrand48::
1898 * msgctl::
1899 * msgget::
1900 * msgrcv::
1901 * msgsnd::
1902 * msync::
1903 * munlock::
1904 * munlockall::
1905 * munmap::
1906 * nan::
1907 * nanf::
1908 * nanl::
1909 * nanosleep::
1910 * nearbyint::
1911 * nearbyintf::
1912 * nearbyintl::
1913 * newlocale::
1914 * nextafter::
1915 * nextafterf::
1916 * nextafterl::
1917 * nexttoward::
1918 * nexttowardf::
1919 * nexttowardl::
1920 * nftw::
1921 * nice::
1922 * nl_langinfo::
1923 * nl_langinfo_l::
1924 * nrand48::
1925 * ntohl::
1926 * ntohs::
1927 * open::
1928 * openat::
1929 * opendir::
1930 * openlog::
1931 * open_memstream::
1932 * open_wmemstream::
1933 * optarg::
1934 * opterr::
1935 * optind::
1936 * optopt::
1937 * pathconf::
1938 * pause::
1939 * pclose::
1940 * perror::
1941 * pipe::
1942 * poll::
1943 * popen::
1944 * posix_fadvise::
1945 * posix_fallocate::
1946 * posix_madvise::
1947 * posix_mem_offset::
1948 * posix_memalign::
1949 * posix_openpt::
1950 * posix_spawn::
1951 * posix_spawn_file_actions_addclose::
1952 * posix_spawn_file_actions_adddup2::
1953 * posix_spawn_file_actions_addopen::
1954 * posix_spawn_file_actions_destroy::
1955 * posix_spawn_file_actions_init::
1956 * posix_spawnattr_destroy::
1957 * posix_spawnattr_getflags::
1958 * posix_spawnattr_getpgroup::
1959 * posix_spawnattr_getschedparam::
1960 * posix_spawnattr_getschedpolicy::
1961 * posix_spawnattr_getsigdefault::
1962 * posix_spawnattr_getsigmask::
1963 * posix_spawnattr_init::
1964 * posix_spawnattr_setflags::
1965 * posix_spawnattr_setpgroup::
1966 * posix_spawnattr_setschedparam::
1967 * posix_spawnattr_setschedpolicy::
1968 * posix_spawnattr_setsigdefault::
1969 * posix_spawnattr_setsigmask::
1970 * posix_spawnp::
1971 * posix_trace_attr_destroy::
1972 * posix_trace_attr_getclockres::
1973 * posix_trace_attr_getcreatetime::
1974 * posix_trace_attr_getgenversion::
1975 * posix_trace_attr_getinherited::
1976 * posix_trace_attr_getlogfullpolicy::
1977 * posix_trace_attr_getlogsize::
1978 * posix_trace_attr_getmaxdatasize::
1979 * posix_trace_attr_getmaxsystemeventsize::
1980 * posix_trace_attr_getmaxusereventsize::
1981 * posix_trace_attr_getname::
1982 * posix_trace_attr_getstreamfullpolicy::
1983 * posix_trace_attr_getstreamsize::
1984 * posix_trace_attr_init::
1985 * posix_trace_attr_setinherited::
1986 * posix_trace_attr_setlogfullpolicy::
1987 * posix_trace_attr_setlogsize::
1988 * posix_trace_attr_setmaxdatasize::
1989 * posix_trace_attr_setname::
1990 * posix_trace_attr_setstreamfullpolicy::
1991 * posix_trace_attr_setstreamsize::
1992 * posix_trace_clear::
1993 * posix_trace_close::
1994 * posix_trace_create::
1995 * posix_trace_create_withlog::
1996 * posix_trace_event::
1997 * posix_trace_eventid_equal::
1998 * posix_trace_eventid_get_name::
1999 * posix_trace_eventid_open::
2000 * posix_trace_eventset_add::
2001 * posix_trace_eventset_del::
2002 * posix_trace_eventset_empty::
2003 * posix_trace_eventset_fill::
2004 * posix_trace_eventset_ismember::
2005 * posix_trace_eventtypelist_getnext_id::
2006 * posix_trace_eventtypelist_rewind::
2007 * posix_trace_flush::
2008 * posix_trace_get_attr::
2009 * posix_trace_get_filter::
2010 * posix_trace_get_status::
2011 * posix_trace_getnext_event::
2012 * posix_trace_open::
2013 * posix_trace_rewind::
2014 * posix_trace_set_filter::
2015 * posix_trace_shutdown::
2016 * posix_trace_start::
2017 * posix_trace_stop::
2018 * posix_trace_timedgetnext_event::
2019 * posix_trace_trid_eventid_open::
2020 * posix_trace_trygetnext_event::
2021 * posix_typed_mem_get_info::
2022 * posix_typed_mem_open::
2023 * pow::
2024 * powf::
2025 * powl::
2026 * pread::
2027 * printf::
2028 * pselect::
2029 * psiginfo::
2030 * psignal::
2031 * pthread_atfork::
2032 * pthread_attr_destroy::
2033 * pthread_attr_getdetachstate::
2034 * pthread_attr_getguardsize::
2035 * pthread_attr_getinheritsched::
2036 * pthread_attr_getschedparam::
2037 * pthread_attr_getschedpolicy::
2038 * pthread_attr_getscope::
2039 * pthread_attr_getstack::
2040 * pthread_attr_getstacksize::
2041 * pthread_attr_init::
2042 * pthread_attr_setdetachstate::
2043 * pthread_attr_setguardsize::
2044 * pthread_attr_setinheritsched::
2045 * pthread_attr_setschedparam::
2046 * pthread_attr_setschedpolicy::
2047 * pthread_attr_setscope::
2048 * pthread_attr_setstack::
2049 * pthread_attr_setstacksize::
2050 * pthread_barrier_destroy::
2051 * pthread_barrier_init::
2052 * pthread_barrier_wait::
2053 * pthread_barrierattr_destroy::
2054 * pthread_barrierattr_getpshared::
2055 * pthread_barrierattr_init::
2056 * pthread_barrierattr_setpshared::
2057 * pthread_cancel::
2058 * pthread_cleanup_pop::
2059 * pthread_cleanup_push::
2060 * pthread_cond_broadcast::
2061 * pthread_cond_destroy::
2062 * pthread_cond_init::
2063 * pthread_cond_signal::
2064 * pthread_cond_timedwait::
2065 * pthread_cond_wait::
2066 * pthread_condattr_destroy::
2067 * pthread_condattr_getclock::
2068 * pthread_condattr_getpshared::
2069 * pthread_condattr_init::
2070 * pthread_condattr_setclock::
2071 * pthread_condattr_setpshared::
2072 * pthread_create::
2073 * pthread_detach::
2074 * pthread_equal::
2075 * pthread_exit::
2076 * pthread_getconcurrency::
2077 * pthread_getcpuclockid::
2078 * pthread_getschedparam::
2079 * pthread_getspecific::
2080 * pthread_join::
2081 * pthread_key_create::
2082 * pthread_key_delete::
2083 * pthread_kill::
2084 * pthread_mutex_consistent::
2085 * pthread_mutex_destroy::
2086 * pthread_mutex_getprioceiling::
2087 * pthread_mutex_init::
2088 * pthread_mutex_lock::
2089 * pthread_mutex_setprioceiling::
2090 * pthread_mutex_timedlock::
2091 * pthread_mutex_trylock::
2092 * pthread_mutex_unlock::
2093 * pthread_mutexattr_destroy::
2094 * pthread_mutexattr_getprioceiling::
2095 * pthread_mutexattr_getprotocol::
2096 * pthread_mutexattr_getpshared::
2097 * pthread_mutexattr_getrobust::
2098 * pthread_mutexattr_gettype::
2099 * pthread_mutexattr_init::
2100 * pthread_mutexattr_setprioceiling::
2101 * pthread_mutexattr_setprotocol::
2102 * pthread_mutexattr_setpshared::
2103 * pthread_mutexattr_setrobust::
2104 * pthread_mutexattr_settype::
2105 * pthread_once::
2106 * pthread_rwlock_destroy::
2107 * pthread_rwlock_init::
2108 * pthread_rwlock_rdlock::
2109 * pthread_rwlock_timedrdlock::
2110 * pthread_rwlock_timedwrlock::
2111 * pthread_rwlock_tryrdlock::
2112 * pthread_rwlock_trywrlock::
2113 * pthread_rwlock_unlock::
2114 * pthread_rwlock_wrlock::
2115 * pthread_rwlockattr_destroy::
2116 * pthread_rwlockattr_getpshared::
2117 * pthread_rwlockattr_init::
2118 * pthread_rwlockattr_setpshared::
2119 * pthread_self::
2120 * pthread_setcancelstate::
2121 * pthread_setcanceltype::
2122 * pthread_setconcurrency::
2123 * pthread_setschedparam::
2124 * pthread_setschedprio::
2125 * pthread_setspecific::
2126 * pthread_sigmask::
2127 * pthread_spin_destroy::
2128 * pthread_spin_init::
2129 * pthread_spin_lock::
2130 * pthread_spin_trylock::
2131 * pthread_spin_unlock::
2132 * pthread_testcancel::
2133 * ptsname::
2134 * putc::
2135 * putc_unlocked::
2136 * putchar::
2137 * putchar_unlocked::
2138 * putenv::
2139 * putmsg::
2140 * putpmsg::
2141 * puts::
2142 * pututxline::
2143 * putwc::
2144 * putwchar::
2145 * pwrite::
2146 * qsort::
2147 * raise::
2148 * rand::
2149 * rand_r::
2150 * random::
2151 * read::
2152 * readdir::
2153 * readdir_r::
2154 * readlink::
2155 * readlinkat::
2156 * readv::
2157 * realloc::
2158 * realpath::
2159 * recv::
2160 * recvfrom::
2161 * recvmsg::
2162 * regcomp::
2163 * regerror::
2164 * regexec::
2165 * regfree::
2166 * remainder::
2167 * remainderf::
2168 * remainderl::
2169 * remove::
2170 * remque::
2171 * remquo::
2172 * remquof::
2173 * remquol::
2174 * rename::
2175 * renameat::
2176 * rewind::
2177 * rewinddir::
2178 * rint::
2179 * rintf::
2180 * rintl::
2181 * rmdir::
2182 * round::
2183 * roundf::
2184 * roundl::
2185 * scalbln::
2186 * scalblnf::
2187 * scalblnl::
2188 * scalbn::
2189 * scalbnf::
2190 * scalbnl::
2191 * scandir::
2192 * scanf::
2193 * sched_get_priority_max::
2194 * sched_get_priority_min::
2195 * sched_getparam::
2196 * sched_getscheduler::
2197 * sched_rr_get_interval::
2198 * sched_setparam::
2199 * sched_setscheduler::
2200 * sched_yield::
2201 * seed48::
2202 * seekdir::
2203 * select::
2204 * sem_close::
2205 * sem_destroy::
2206 * sem_getvalue::
2207 * sem_init::
2208 * sem_open::
2209 * sem_post::
2210 * sem_timedwait::
2211 * sem_trywait::
2212 * sem_unlink::
2213 * sem_wait::
2214 * semctl::
2215 * semget::
2216 * semop::
2217 * send::
2218 * sendmsg::
2219 * sendto::
2220 * setbuf::
2221 * setegid::
2222 * setenv::
2223 * seteuid::
2224 * setgid::
2225 * setgrent::
2226 * sethostent::
2227 * setitimer::
2228 * setjmp::
2229 * setkey::
2230 * setlocale::
2231 * setlogmask::
2232 * setnetent::
2233 * setpgid::
2234 * setpgrp::
2235 * setpriority::
2236 * setprotoent::
2237 * setpwent::
2238 * setregid::
2239 * setreuid::
2240 * setrlimit::
2241 * setservent::
2242 * setsid::
2243 * setsockopt::
2244 * setstate::
2245 * setuid::
2246 * setutxent::
2247 * setvbuf::
2248 * shm_open::
2249 * shm_unlink::
2250 * shmat::
2251 * shmctl::
2252 * shmdt::
2253 * shmget::
2254 * shutdown::
2255 * sigaction::
2256 * sigaddset::
2257 * sigaltstack::
2258 * sigdelset::
2259 * sigemptyset::
2260 * sigfillset::
2261 * sighold::
2262 * sigignore::
2263 * siginterrupt::
2264 * sigismember::
2265 * siglongjmp::
2266 * signal::
2267 * signbit::
2268 * signgam::
2269 * sigpause::
2270 * sigpending::
2271 * sigprocmask::
2272 * sigqueue::
2273 * sigrelse::
2274 * sigset::
2275 * sigsetjmp::
2276 * sigsuspend::
2277 * sigtimedwait::
2278 * sigwait::
2279 * sigwaitinfo::
2280 * sin::
2281 * sinf::
2282 * sinh::
2283 * sinhf::
2284 * sinhl::
2285 * sinl::
2286 * sleep::
2287 * snprintf::
2288 * sockatmark::
2289 * socket::
2290 * socketpair::
2291 * sprintf::
2292 * sqrt::
2293 * sqrtf::
2294 * sqrtl::
2295 * srand::
2296 * srand48::
2297 * srandom::
2298 * sscanf::
2299 * stat::
2300 * statvfs::
2301 * stderr::
2302 * stdin::
2303 * stdout::
2304 * stpcpy::
2305 * stpncpy::
2306 * strcasecmp::
2307 * strcasecmp_l::
2308 * strcat::
2309 * strchr::
2310 * strcmp::
2311 * strcoll::
2312 * strcoll_l::
2313 * strcpy::
2314 * strcspn::
2315 * strdup::
2316 * strerror::
2317 * strerror_l::
2318 * strerror_r::
2319 * strfmon::
2320 * strfmon_l::
2321 * strftime::
2322 * strftime_l::
2323 * strlen::
2324 * strncasecmp::
2325 * strncasecmp_l::
2326 * strncat::
2327 * strncmp::
2328 * strncpy::
2329 * strndup::
2330 * strnlen::
2331 * strpbrk::
2332 * strptime::
2333 * strrchr::
2334 * strsignal::
2335 * strspn::
2336 * strstr::
2337 * strtod::
2338 * strtof::
2339 * strtoimax::
2340 * strtok::
2341 * strtok_r::
2342 * strtol::
2343 * strtold::
2344 * strtoll::
2345 * strtoul::
2346 * strtoull::
2347 * strtoumax::
2348 * strxfrm::
2349 * strxfrm_l::
2350 * swab::
2351 * swprintf::
2352 * swscanf::
2353 * symlink::
2354 * symlinkat::
2355 * sync::
2356 * sysconf::
2357 * syslog::
2358 * system::
2359 * tan::
2360 * tanf::
2361 * tanh::
2362 * tanhf::
2363 * tanhl::
2364 * tanl::
2365 * tcdrain::
2366 * tcflow::
2367 * tcflush::
2368 * tcgetattr::
2369 * tcgetpgrp::
2370 * tcgetsid::
2371 * tcsendbreak::
2372 * tcsetattr::
2373 * tcsetpgrp::
2374 * tdelete::
2375 * telldir::
2376 * tempnam::
2377 * tfind::
2378 * tgamma::
2379 * tgammaf::
2380 * tgammal::
2381 * time::
2382 * timer_create::
2383 * timer_delete::
2384 * timer_getoverrun::
2385 * timer_gettime::
2386 * timer_settime::
2387 * times::
2388 * timezone::
2389 * tmpfile::
2390 * tmpnam::
2391 * toascii::
2392 * tolower::
2393 * tolower_l::
2394 * toupper::
2395 * toupper_l::
2396 * towctrans::
2397 * towctrans_l::
2398 * towlower::
2399 * towlower_l::
2400 * towupper::
2401 * towupper_l::
2402 * trunc::
2403 * truncate::
2404 * truncf::
2405 * truncl::
2406 * tsearch::
2407 * ttyname::
2408 * ttyname_r::
2409 * twalk::
2410 * tzname::
2411 * tzset::
2412 * ulimit::
2413 * umask::
2414 * uname::
2415 * ungetc::
2416 * ungetwc::
2417 * unlink::
2418 * unlinkat::
2419 * unlockpt::
2420 * unsetenv::
2421 * uselocale::
2422 * utime::
2423 * utimensat::
2424 * utimes::
2425 * va_arg::
2426 * va_copy::
2427 * va_end::
2428 * va_start::
2429 * vdprintf::
2430 * vfprintf::
2431 * vfscanf::
2432 * vfwprintf::
2433 * vfwscanf::
2434 * vprintf::
2435 * vscanf::
2436 * vsnprintf::
2437 * vsprintf::
2438 * vsscanf::
2439 * vswprintf::
2440 * vswscanf::
2441 * vwprintf::
2442 * vwscanf::
2443 * wait::
2444 * waitid::
2445 * waitpid::
2446 * wcpcpy::
2447 * wcpncpy::
2448 * wcrtomb::
2449 * wcscasecmp::
2450 * wcscasecmp_l::
2451 * wcscat::
2452 * wcschr::
2453 * wcscmp::
2454 * wcscoll::
2455 * wcscoll_l::
2456 * wcscpy::
2457 * wcscspn::
2458 * wcsdup::
2459 * wcsftime::
2460 * wcslen::
2461 * wcsncasecmp::
2462 * wcsncasecmp_l::
2463 * wcsncat::
2464 * wcsncmp::
2465 * wcsncpy::
2466 * wcsnlen::
2467 * wcsnrtombs::
2468 * wcspbrk::
2469 * wcsrchr::
2470 * wcsrtombs::
2471 * wcsspn::
2472 * wcsstr::
2473 * wcstod::
2474 * wcstof::
2475 * wcstoimax::
2476 * wcstok::
2477 * wcstol::
2478 * wcstold::
2479 * wcstoll::
2480 * wcstombs::
2481 * wcstoul::
2482 * wcstoull::
2483 * wcstoumax::
2484 * wcswidth::
2485 * wcsxfrm::
2486 * wcsxfrm_l::
2487 * wctob::
2488 * wctomb::
2489 * wctrans::
2490 * wctrans_l::
2491 * wctype::
2492 * wctype_l::
2493 * wcwidth::
2494 * wmemchr::
2495 * wmemcmp::
2496 * wmemcpy::
2497 * wmemmove::
2498 * wmemset::
2499 * wordexp::
2500 * wordfree::
2501 * wprintf::
2502 * write::
2503 * writev::
2504 * wscanf::
2505 * y0::
2506 * y1::
2507 * yn::
2508 @end menu
2509
2510 @include posix-functions/FD_CLR.texi
2511 @include posix-functions/FD_ISSET.texi
2512 @include posix-functions/FD_SET.texi
2513 @include posix-functions/FD_ZERO.texi
2514 @include posix-functions/_Exit_C99.texi
2515 @include posix-functions/_exit.texi
2516 @include posix-functions/_longjmp.texi
2517 @include posix-functions/_setjmp.texi
2518 @include posix-functions/_tolower.texi
2519 @include posix-functions/_toupper.texi
2520 @include posix-functions/a64l.texi
2521 @include posix-functions/abort.texi
2522 @include posix-functions/abs.texi
2523 @include posix-functions/accept.texi
2524 @include posix-functions/access.texi
2525 @include posix-functions/acos.texi
2526 @include posix-functions/acosf.texi
2527 @include posix-functions/acosh.texi
2528 @include posix-functions/acoshf.texi
2529 @include posix-functions/acoshl.texi
2530 @include posix-functions/acosl.texi
2531 @include posix-functions/aio_cancel.texi
2532 @include posix-functions/aio_error.texi
2533 @include posix-functions/aio_fsync.texi
2534 @include posix-functions/aio_read.texi
2535 @include posix-functions/aio_return.texi
2536 @include posix-functions/aio_suspend.texi
2537 @include posix-functions/aio_write.texi
2538 @include posix-functions/alarm.texi
2539 @include posix-functions/alphasort.texi
2540 @include posix-functions/asctime.texi
2541 @include posix-functions/asctime_r.texi
2542 @include posix-functions/asin.texi
2543 @include posix-functions/asinf.texi
2544 @include posix-functions/asinh.texi
2545 @include posix-functions/asinhf.texi
2546 @include posix-functions/asinhl.texi
2547 @include posix-functions/asinl.texi
2548 @include posix-functions/assert.texi
2549 @include posix-functions/atan.texi
2550 @include posix-functions/atan2.texi
2551 @include posix-functions/atan2f.texi
2552 @include posix-functions/atan2l.texi
2553 @include posix-functions/atanf.texi
2554 @include posix-functions/atanh.texi
2555 @include posix-functions/atanhf.texi
2556 @include posix-functions/atanhl.texi
2557 @include posix-functions/atanl.texi
2558 @include posix-functions/atexit.texi
2559 @include posix-functions/atof.texi
2560 @include posix-functions/atoi.texi
2561 @include posix-functions/atol.texi
2562 @include posix-functions/atoll.texi
2563 @include posix-functions/basename.texi
2564 @include posix-functions/bind.texi
2565 @include posix-functions/bsearch.texi
2566 @include posix-functions/btowc.texi
2567 @include posix-functions/cabs.texi
2568 @include posix-functions/cabsf.texi
2569 @include posix-functions/cabsl.texi
2570 @include posix-functions/cacos.texi
2571 @include posix-functions/cacosf.texi
2572 @include posix-functions/cacosh.texi
2573 @include posix-functions/cacoshf.texi
2574 @include posix-functions/cacoshl.texi
2575 @include posix-functions/cacosl.texi
2576 @include posix-functions/calloc.texi
2577 @include posix-functions/carg.texi
2578 @include posix-functions/cargf.texi
2579 @include posix-functions/cargl.texi
2580 @include posix-functions/casin.texi
2581 @include posix-functions/casinf.texi
2582 @include posix-functions/casinh.texi
2583 @include posix-functions/casinhf.texi
2584 @include posix-functions/casinhl.texi
2585 @include posix-functions/casinl.texi
2586 @include posix-functions/catan.texi
2587 @include posix-functions/catanf.texi
2588 @include posix-functions/catanh.texi
2589 @include posix-functions/catanhf.texi
2590 @include posix-functions/catanhl.texi
2591 @include posix-functions/catanl.texi
2592 @include posix-functions/catclose.texi
2593 @include posix-functions/catgets.texi
2594 @include posix-functions/catopen.texi
2595 @include posix-functions/cbrt.texi
2596 @include posix-functions/cbrtf.texi
2597 @include posix-functions/cbrtl.texi
2598 @include posix-functions/ccos.texi
2599 @include posix-functions/ccosf.texi
2600 @include posix-functions/ccosh.texi
2601 @include posix-functions/ccoshf.texi
2602 @include posix-functions/ccoshl.texi
2603 @include posix-functions/ccosl.texi
2604 @include posix-functions/ceil.texi
2605 @include posix-functions/ceilf.texi
2606 @include posix-functions/ceill.texi
2607 @include posix-functions/cexp.texi
2608 @include posix-functions/cexpf.texi
2609 @include posix-functions/cexpl.texi
2610 @include posix-functions/cfgetispeed.texi
2611 @include posix-functions/cfgetospeed.texi
2612 @include posix-functions/cfsetispeed.texi
2613 @include posix-functions/cfsetospeed.texi
2614 @include posix-functions/chdir.texi
2615 @include posix-functions/chmod.texi
2616 @include posix-functions/chown.texi
2617 @include posix-functions/cimag.texi
2618 @include posix-functions/cimagf.texi
2619 @include posix-functions/cimagl.texi
2620 @include posix-functions/clearerr.texi
2621 @include posix-functions/clock.texi
2622 @include posix-functions/clock_getcpuclockid.texi
2623 @include posix-functions/clock_getres.texi
2624 @include posix-functions/clock_gettime.texi
2625 @include posix-functions/clock_nanosleep.texi
2626 @include posix-functions/clock_settime.texi
2627 @include posix-functions/clog.texi
2628 @include posix-functions/clogf.texi
2629 @include posix-functions/clogl.texi
2630 @include posix-functions/close.texi
2631 @include posix-functions/closedir.texi
2632 @include posix-functions/closelog.texi
2633 @include posix-functions/confstr.texi
2634 @include posix-functions/conj.texi
2635 @include posix-functions/conjf.texi
2636 @include posix-functions/conjl.texi
2637 @include posix-functions/connect.texi
2638 @include posix-functions/copysign.texi
2639 @include posix-functions/copysignf.texi
2640 @include posix-functions/copysignl.texi
2641 @include posix-functions/cos.texi
2642 @include posix-functions/cosf.texi
2643 @include posix-functions/cosh.texi
2644 @include posix-functions/coshf.texi
2645 @include posix-functions/coshl.texi
2646 @include posix-functions/cosl.texi
2647 @include posix-functions/cpow.texi
2648 @include posix-functions/cpowf.texi
2649 @include posix-functions/cpowl.texi
2650 @include posix-functions/cproj.texi
2651 @include posix-functions/cprojf.texi
2652 @include posix-functions/cprojl.texi
2653 @include posix-functions/creal.texi
2654 @include posix-functions/crealf.texi
2655 @include posix-functions/creall.texi
2656 @include posix-functions/creat.texi
2657 @include posix-functions/crypt.texi
2658 @include posix-functions/csin.texi
2659 @include posix-functions/csinf.texi
2660 @include posix-functions/csinh.texi
2661 @include posix-functions/csinhf.texi
2662 @include posix-functions/csinhl.texi
2663 @include posix-functions/csinl.texi
2664 @include posix-functions/csqrt.texi
2665 @include posix-functions/csqrtf.texi
2666 @include posix-functions/csqrtl.texi
2667 @include posix-functions/ctan.texi
2668 @include posix-functions/ctanf.texi
2669 @include posix-functions/ctanh.texi
2670 @include posix-functions/ctanhf.texi
2671 @include posix-functions/ctanhl.texi
2672 @include posix-functions/ctanl.texi
2673 @include posix-functions/ctermid.texi
2674 @include posix-functions/ctime.texi
2675 @include posix-functions/ctime_r.texi
2676 @include posix-functions/daylight.texi
2677 @include posix-functions/dbm_clearerr.texi
2678 @include posix-functions/dbm_close.texi
2679 @include posix-functions/dbm_delete.texi
2680 @include posix-functions/dbm_error.texi
2681 @include posix-functions/dbm_fetch.texi
2682 @include posix-functions/dbm_firstkey.texi
2683 @include posix-functions/dbm_nextkey.texi
2684 @include posix-functions/dbm_open.texi
2685 @include posix-functions/dbm_store.texi
2686 @include posix-functions/difftime.texi
2687 @include posix-functions/dirfd.texi
2688 @include posix-functions/dirname.texi
2689 @include posix-functions/div.texi
2690 @include posix-functions/dlclose.texi
2691 @include posix-functions/dlerror.texi
2692 @include posix-functions/dlopen.texi
2693 @include posix-functions/dlsym.texi
2694 @include posix-functions/dprintf.texi
2695 @include posix-functions/drand48.texi
2696 @include posix-functions/dup.texi
2697 @include posix-functions/dup2.texi
2698 @include posix-functions/duplocale.texi
2699 @include posix-functions/encrypt.texi
2700 @include posix-functions/endgrent.texi
2701 @include posix-functions/endhostent.texi
2702 @include posix-functions/endnetent.texi
2703 @include posix-functions/endprotoent.texi
2704 @include posix-functions/endpwent.texi
2705 @include posix-functions/endservent.texi
2706 @include posix-functions/endutxent.texi
2707 @include posix-functions/environ.texi
2708 @include posix-functions/erand48.texi
2709 @include posix-functions/erf.texi
2710 @include posix-functions/erfc.texi
2711 @include posix-functions/erfcf.texi
2712 @include posix-functions/erfcl.texi
2713 @include posix-functions/erff.texi
2714 @include posix-functions/erfl.texi
2715 @include posix-functions/errno.texi
2716 @include posix-functions/execl.texi
2717 @include posix-functions/execle.texi
2718 @include posix-functions/execlp.texi
2719 @include posix-functions/execv.texi
2720 @include posix-functions/execve.texi
2721 @include posix-functions/execvp.texi
2722 @include posix-functions/exit.texi
2723 @include posix-functions/exp.texi
2724 @include posix-functions/exp2.texi
2725 @include posix-functions/exp2f.texi
2726 @include posix-functions/exp2l.texi
2727 @include posix-functions/expf.texi
2728 @include posix-functions/expl.texi
2729 @include posix-functions/expm1.texi
2730 @include posix-functions/expm1f.texi
2731 @include posix-functions/expm1l.texi
2732 @include posix-functions/fabs.texi
2733 @include posix-functions/fabsf.texi
2734 @include posix-functions/fabsl.texi
2735 @include posix-functions/faccessat.texi
2736 @include posix-functions/fattach.texi
2737 @include posix-functions/fchdir.texi
2738 @include posix-functions/fchmod.texi
2739 @include posix-functions/fchmodat.texi
2740 @include posix-functions/fchown.texi
2741 @include posix-functions/fchownat.texi
2742 @include posix-functions/fclose.texi
2743 @include posix-functions/fcntl.texi
2744 @include posix-functions/fdatasync.texi
2745 @include posix-functions/fdetach.texi
2746 @include posix-functions/fdim.texi
2747 @include posix-functions/fdimf.texi
2748 @include posix-functions/fdiml.texi
2749 @include posix-functions/fdopen.texi
2750 @include posix-functions/fdopendir.texi
2751 @include posix-functions/feclearexcept.texi
2752 @include posix-functions/fegetenv.texi
2753 @include posix-functions/fegetexceptflag.texi
2754 @include posix-functions/fegetround.texi
2755 @include posix-functions/feholdexcept.texi
2756 @include posix-functions/feof.texi
2757 @include posix-functions/feraiseexcept.texi
2758 @include posix-functions/ferror.texi
2759 @include posix-functions/fesetenv.texi
2760 @include posix-functions/fesetexceptflag.texi
2761 @include posix-functions/fesetround.texi
2762 @include posix-functions/fetestexcept.texi
2763 @include posix-functions/feupdateenv.texi
2764 @include posix-functions/fexecve.texi
2765 @include posix-functions/fflush.texi
2766 @include posix-functions/ffs.texi
2767 @include posix-functions/fgetc.texi
2768 @include posix-functions/fgetpos.texi
2769 @include posix-functions/fgets.texi
2770 @include posix-functions/fgetwc.texi
2771 @include posix-functions/fgetws.texi
2772 @include posix-functions/fileno.texi
2773 @include posix-functions/flockfile.texi
2774 @include posix-functions/floor.texi
2775 @include posix-functions/floorf.texi
2776 @include posix-functions/floorl.texi
2777 @include posix-functions/fma.texi
2778 @include posix-functions/fmaf.texi
2779 @include posix-functions/fmal.texi
2780 @include posix-functions/fmax.texi
2781 @include posix-functions/fmaxf.texi
2782 @include posix-functions/fmaxl.texi
2783 @include posix-functions/fmemopen.texi
2784 @include posix-functions/fmin.texi
2785 @include posix-functions/fminf.texi
2786 @include posix-functions/fminl.texi
2787 @include posix-functions/fmod.texi
2788 @include posix-functions/fmodf.texi
2789 @include posix-functions/fmodl.texi
2790 @include posix-functions/fmtmsg.texi
2791 @include posix-functions/fnmatch.texi
2792 @include posix-functions/fopen.texi
2793 @include posix-functions/fork.texi
2794 @include posix-functions/fpathconf.texi
2795 @include posix-functions/fpclassify.texi
2796 @include posix-functions/fprintf.texi
2797 @include posix-functions/fputc.texi
2798 @include posix-functions/fputs.texi
2799 @include posix-functions/fputwc.texi
2800 @include posix-functions/fputws.texi
2801 @include posix-functions/fread.texi
2802 @include posix-functions/free.texi
2803 @include posix-functions/freeaddrinfo.texi
2804 @include posix-functions/freelocale.texi
2805 @include posix-functions/freopen.texi
2806 @include posix-functions/frexp.texi
2807 @include posix-functions/frexpf.texi
2808 @include posix-functions/frexpl.texi
2809 @include posix-functions/fscanf.texi
2810 @include posix-functions/fseek.texi
2811 @include posix-functions/fseeko.texi
2812 @include posix-functions/fsetpos.texi
2813 @include posix-functions/fstat.texi
2814 @include posix-functions/fstatat.texi
2815 @include posix-functions/fstatvfs.texi
2816 @include posix-functions/fsync.texi
2817 @include posix-functions/ftell.texi
2818 @include posix-functions/ftello.texi
2819 @include posix-functions/ftok.texi
2820 @include posix-functions/ftruncate.texi
2821 @include posix-functions/ftrylockfile.texi
2822 @include posix-functions/ftw.texi
2823 @include posix-functions/funlockfile.texi
2824 @include posix-functions/futimens.texi
2825 @include posix-functions/fwide.texi
2826 @include posix-functions/fwprintf.texi
2827 @include posix-functions/fwrite.texi
2828 @include posix-functions/fwscanf.texi
2829 @include posix-functions/gai_strerror.texi
2830 @include posix-functions/getaddrinfo.texi
2831 @include posix-functions/getc.texi
2832 @include posix-functions/getc_unlocked.texi
2833 @include posix-functions/getchar.texi
2834 @include posix-functions/getchar_unlocked.texi
2835 @include posix-functions/getcwd.texi
2836 @include posix-functions/getdate.texi
2837 @include posix-functions/getdate_err.texi
2838 @include posix-functions/getdelim.texi
2839 @include posix-functions/getegid.texi
2840 @include posix-functions/getenv.texi
2841 @include posix-functions/geteuid.texi
2842 @include posix-functions/getgid.texi
2843 @include posix-functions/getgrent.texi
2844 @include posix-functions/getgrgid.texi
2845 @include posix-functions/getgrgid_r.texi
2846 @include posix-functions/getgrnam.texi
2847 @include posix-functions/getgrnam_r.texi
2848 @include posix-functions/getgroups.texi
2849 @include posix-functions/gethostent.texi
2850 @include posix-functions/gethostid.texi
2851 @include posix-functions/gethostname.texi
2852 @include posix-functions/getitimer.texi
2853 @include posix-functions/getline.texi
2854 @include posix-functions/getlogin.texi
2855 @include posix-functions/getlogin_r.texi
2856 @include posix-functions/getmsg.texi
2857 @include posix-functions/getnameinfo.texi
2858 @include posix-functions/getnetbyaddr.texi
2859 @include posix-functions/getnetbyname.texi
2860 @include posix-functions/getnetent.texi
2861 @include posix-functions/getopt.texi
2862 @include posix-functions/getpeername.texi
2863 @include posix-functions/getpgid.texi
2864 @include posix-functions/getpgrp.texi
2865 @include posix-functions/getpid.texi
2866 @include posix-functions/getpmsg.texi
2867 @include posix-functions/getppid.texi
2868 @include posix-functions/getpriority.texi
2869 @include posix-functions/getprotobyname.texi
2870 @include posix-functions/getprotobynumber.texi
2871 @include posix-functions/getprotoent.texi
2872 @include posix-functions/getpwent.texi
2873 @include posix-functions/getpwnam.texi
2874 @include posix-functions/getpwnam_r.texi
2875 @include posix-functions/getpwuid.texi
2876 @include posix-functions/getpwuid_r.texi
2877 @include posix-functions/getrlimit.texi
2878 @include posix-functions/getrusage.texi
2879 @include posix-functions/gets.texi
2880 @include posix-functions/getservbyname.texi
2881 @include posix-functions/getservbyport.texi
2882 @include posix-functions/getservent.texi
2883 @include posix-functions/getsid.texi
2884 @include posix-functions/getsockname.texi
2885 @include posix-functions/getsockopt.texi
2886 @include posix-functions/getsubopt.texi
2887 @include posix-functions/gettimeofday.texi
2888 @include posix-functions/getuid.texi
2889 @include posix-functions/getutxent.texi
2890 @include posix-functions/getutxid.texi
2891 @include posix-functions/getutxline.texi
2892 @include posix-functions/getwc.texi
2893 @include posix-functions/getwchar.texi
2894 @include posix-functions/glob.texi
2895 @include posix-functions/globfree.texi
2896 @include posix-functions/gmtime.texi
2897 @include posix-functions/gmtime_r.texi
2898 @include posix-functions/grantpt.texi
2899 @include posix-functions/hcreate.texi
2900 @include posix-functions/hdestroy.texi
2901 @include posix-functions/hsearch.texi
2902 @include posix-functions/htonl.texi
2903 @include posix-functions/htons.texi
2904 @include posix-functions/hypot.texi
2905 @include posix-functions/hypotf.texi
2906 @include posix-functions/hypotl.texi
2907 @include posix-functions/iconv.texi
2908 @include posix-functions/iconv_close.texi
2909 @include posix-functions/iconv_open.texi
2910 @include posix-functions/if_freenameindex.texi
2911 @include posix-functions/if_indextoname.texi
2912 @include posix-functions/if_nameindex.texi
2913 @include posix-functions/if_nametoindex.texi
2914 @include posix-functions/ilogb.texi
2915 @include posix-functions/ilogbf.texi
2916 @include posix-functions/ilogbl.texi
2917 @include posix-functions/imaxabs.texi
2918 @include posix-functions/imaxdiv.texi
2919 @include posix-functions/inet_addr.texi
2920 @include posix-functions/inet_ntoa.texi
2921 @include posix-functions/inet_ntop.texi
2922 @include posix-functions/inet_pton.texi
2923 @include posix-functions/initstate.texi
2924 @include posix-functions/insque.texi
2925 @include posix-functions/ioctl.texi
2926 @include posix-functions/isalnum.texi
2927 @include posix-functions/isalnum_l.texi
2928 @include posix-functions/isalpha.texi
2929 @include posix-functions/isalpha_l.texi
2930 @include posix-functions/isascii.texi
2931 @include posix-functions/isastream.texi
2932 @include posix-functions/isatty.texi
2933 @include posix-functions/isblank.texi
2934 @include posix-functions/isblank_l.texi
2935 @include posix-functions/iscntrl.texi
2936 @include posix-functions/iscntrl_l.texi
2937 @include posix-functions/isdigit.texi
2938 @include posix-functions/isdigit_l.texi
2939 @include posix-functions/isfinite.texi
2940 @include posix-functions/isgraph.texi
2941 @include posix-functions/isgraph_l.texi
2942 @include posix-functions/isgreater.texi
2943 @include posix-functions/isgreaterequal.texi
2944 @include posix-functions/isinf.texi
2945 @include posix-functions/isless.texi
2946 @include posix-functions/islessequal.texi
2947 @include posix-functions/islessgreater.texi
2948 @include posix-functions/islower.texi
2949 @include posix-functions/islower_l.texi
2950 @include posix-functions/isnan.texi
2951 @include posix-functions/isnormal.texi
2952 @include posix-functions/isprint.texi
2953 @include posix-functions/isprint_l.texi
2954 @include posix-functions/ispunct.texi
2955 @include posix-functions/ispunct_l.texi
2956 @include posix-functions/isspace.texi
2957 @include posix-functions/isspace_l.texi
2958 @include posix-functions/isunordered.texi
2959 @include posix-functions/isupper.texi
2960 @include posix-functions/isupper_l.texi
2961 @include posix-functions/iswalnum.texi
2962 @include posix-functions/iswalnum_l.texi
2963 @include posix-functions/iswalpha.texi
2964 @include posix-functions/iswalpha_l.texi
2965 @include posix-functions/iswblank.texi
2966 @include posix-functions/iswblank_l.texi
2967 @include posix-functions/iswcntrl.texi
2968 @include posix-functions/iswcntrl_l.texi
2969 @include posix-functions/iswctype.texi
2970 @include posix-functions/iswctype_l.texi
2971 @include posix-functions/iswdigit.texi
2972 @include posix-functions/iswdigit_l.texi
2973 @include posix-functions/iswgraph.texi
2974 @include posix-functions/iswgraph_l.texi
2975 @include posix-functions/iswlower.texi
2976 @include posix-functions/iswlower_l.texi
2977 @include posix-functions/iswprint.texi
2978 @include posix-functions/iswprint_l.texi
2979 @include posix-functions/iswpunct.texi
2980 @include posix-functions/iswpunct_l.texi
2981 @include posix-functions/iswspace.texi
2982 @include posix-functions/iswspace_l.texi
2983 @include posix-functions/iswupper.texi
2984 @include posix-functions/iswupper_l.texi
2985 @include posix-functions/iswxdigit.texi
2986 @include posix-functions/iswxdigit_l.texi
2987 @include posix-functions/isxdigit.texi
2988 @include posix-functions/isxdigit_l.texi
2989 @include posix-functions/j0.texi
2990 @include posix-functions/j1.texi
2991 @include posix-functions/jn.texi
2992 @include posix-functions/jrand48.texi
2993 @include posix-functions/kill.texi
2994 @include posix-functions/killpg.texi
2995 @include posix-functions/l64a.texi
2996 @include posix-functions/labs.texi
2997 @include posix-functions/lchown.texi
2998 @include posix-functions/lcong48.texi
2999 @include posix-functions/ldexp.texi
3000 @include posix-functions/ldexpf.texi
3001 @include posix-functions/ldexpl.texi
3002 @include posix-functions/ldiv.texi
3003 @include posix-functions/lfind.texi
3004 @include posix-functions/lgamma.texi
3005 @include posix-functions/lgammaf.texi
3006 @include posix-functions/lgammal.texi
3007 @include posix-functions/link.texi
3008 @include posix-functions/linkat.texi
3009 @include posix-functions/lio_listio.texi
3010 @include posix-functions/listen.texi
3011 @include posix-functions/llabs.texi
3012 @include posix-functions/lldiv.texi
3013 @include posix-functions/llrint.texi
3014 @include posix-functions/llrintf.texi
3015 @include posix-functions/llrintl.texi
3016 @include posix-functions/llround.texi
3017 @include posix-functions/llroundf.texi
3018 @include posix-functions/llroundl.texi
3019 @include posix-functions/localeconv.texi
3020 @include posix-functions/localtime.texi
3021 @include posix-functions/localtime_r.texi
3022 @include posix-functions/lockf.texi
3023 @include posix-functions/log.texi
3024 @include posix-functions/log10.texi
3025 @include posix-functions/log10f.texi
3026 @include posix-functions/log10l.texi
3027 @include posix-functions/log1p.texi
3028 @include posix-functions/log1pf.texi
3029 @include posix-functions/log1pl.texi
3030 @include posix-functions/log2.texi
3031 @include posix-functions/log2f.texi
3032 @include posix-functions/log2l.texi
3033 @include posix-functions/logb.texi
3034 @include posix-functions/logbf.texi
3035 @include posix-functions/logbl.texi
3036 @include posix-functions/logf.texi
3037 @include posix-functions/logl.texi
3038 @include posix-functions/longjmp.texi
3039 @include posix-functions/lrand48.texi
3040 @include posix-functions/lrint.texi
3041 @include posix-functions/lrintf.texi
3042 @include posix-functions/lrintl.texi
3043 @include posix-functions/lround.texi
3044 @include posix-functions/lroundf.texi
3045 @include posix-functions/lroundl.texi
3046 @include posix-functions/lsearch.texi
3047 @include posix-functions/lseek.texi
3048 @include posix-functions/lstat.texi
3049 @include posix-functions/malloc.texi
3050 @include posix-functions/mblen.texi
3051 @include posix-functions/mbrlen.texi
3052 @include posix-functions/mbrtowc.texi
3053 @include posix-functions/mbsinit.texi
3054 @include posix-functions/mbsnrtowcs.texi
3055 @include posix-functions/mbsrtowcs.texi
3056 @include posix-functions/mbstowcs.texi
3057 @include posix-functions/mbtowc.texi
3058 @include posix-functions/memccpy.texi
3059 @include posix-functions/memchr.texi
3060 @include posix-functions/memcmp.texi
3061 @include posix-functions/memcpy.texi
3062 @include posix-functions/memmove.texi
3063 @include posix-functions/memset.texi
3064 @include posix-functions/mkdir.texi
3065 @include posix-functions/mkdirat.texi
3066 @include posix-functions/mkdtemp.texi
3067 @include posix-functions/mkfifo.texi
3068 @include posix-functions/mkfifoat.texi
3069 @include posix-functions/mknod.texi
3070 @include posix-functions/mknodat.texi
3071 @include posix-functions/mkstemp.texi
3072 @include posix-functions/mktime.texi
3073 @include posix-functions/mlock.texi
3074 @include posix-functions/mlockall.texi
3075 @include posix-functions/mmap.texi
3076 @include posix-functions/modf.texi
3077 @include posix-functions/modff.texi
3078 @include posix-functions/modfl.texi
3079 @include posix-functions/mprotect.texi
3080 @include posix-functions/mq_close.texi
3081 @include posix-functions/mq_getattr.texi
3082 @include posix-functions/mq_notify.texi
3083 @include posix-functions/mq_open.texi
3084 @include posix-functions/mq_receive.texi
3085 @include posix-functions/mq_send.texi
3086 @include posix-functions/mq_setattr.texi
3087 @include posix-functions/mq_timedreceive.texi
3088 @include posix-functions/mq_timedsend.texi
3089 @include posix-functions/mq_unlink.texi
3090 @include posix-functions/mrand48.texi
3091 @include posix-functions/msgctl.texi
3092 @include posix-functions/msgget.texi
3093 @include posix-functions/msgrcv.texi
3094 @include posix-functions/msgsnd.texi
3095 @include posix-functions/msync.texi
3096 @include posix-functions/munlock.texi
3097 @include posix-functions/munlockall.texi
3098 @include posix-functions/munmap.texi
3099 @include posix-functions/nan.texi
3100 @include posix-functions/nanf.texi
3101 @include posix-functions/nanl.texi
3102 @include posix-functions/nanosleep.texi
3103 @include posix-functions/nearbyint.texi
3104 @include posix-functions/nearbyintf.texi
3105 @include posix-functions/nearbyintl.texi
3106 @include posix-functions/newlocale.texi
3107 @include posix-functions/nextafter.texi
3108 @include posix-functions/nextafterf.texi
3109 @include posix-functions/nextafterl.texi
3110 @include posix-functions/nexttoward.texi
3111 @include posix-functions/nexttowardf.texi
3112 @include posix-functions/nexttowardl.texi
3113 @include posix-functions/nftw.texi
3114 @include posix-functions/nice.texi
3115 @include posix-functions/nl_langinfo.texi
3116 @include posix-functions/nl_langinfo_l.texi
3117 @include posix-functions/nrand48.texi
3118 @include posix-functions/ntohl.texi
3119 @include posix-functions/ntohs.texi
3120 @include posix-functions/open.texi
3121 @include posix-functions/openat.texi
3122 @include posix-functions/opendir.texi
3123 @include posix-functions/openlog.texi
3124 @include posix-functions/open_memstream.texi
3125 @include posix-functions/open_wmemstream.texi
3126 @include posix-functions/optarg.texi
3127 @include posix-functions/opterr.texi
3128 @include posix-functions/optind.texi
3129 @include posix-functions/optopt.texi
3130 @include posix-functions/pathconf.texi
3131 @include posix-functions/pause.texi
3132 @include posix-functions/pclose.texi
3133 @include posix-functions/perror.texi
3134 @include posix-functions/pipe.texi
3135 @include posix-functions/poll.texi
3136 @include posix-functions/popen.texi
3137 @include posix-functions/posix_fadvise.texi
3138 @include posix-functions/posix_fallocate.texi
3139 @include posix-functions/posix_madvise.texi
3140 @include posix-functions/posix_mem_offset.texi
3141 @include posix-functions/posix_memalign.texi
3142 @include posix-functions/posix_openpt.texi
3143 @include posix-functions/posix_spawn.texi
3144 @include posix-functions/posix_spawn_file_actions_addclose.texi
3145 @include posix-functions/posix_spawn_file_actions_adddup2.texi
3146 @include posix-functions/posix_spawn_file_actions_addopen.texi
3147 @include posix-functions/posix_spawn_file_actions_destroy.texi
3148 @include posix-functions/posix_spawn_file_actions_init.texi
3149 @include posix-functions/posix_spawnattr_destroy.texi
3150 @include posix-functions/posix_spawnattr_getflags.texi
3151 @include posix-functions/posix_spawnattr_getpgroup.texi
3152 @include posix-functions/posix_spawnattr_getschedparam.texi
3153 @include posix-functions/posix_spawnattr_getschedpolicy.texi
3154 @include posix-functions/posix_spawnattr_getsigdefault.texi
3155 @include posix-functions/posix_spawnattr_getsigmask.texi
3156 @include posix-functions/posix_spawnattr_init.texi
3157 @include posix-functions/posix_spawnattr_setflags.texi
3158 @include posix-functions/posix_spawnattr_setpgroup.texi
3159 @include posix-functions/posix_spawnattr_setschedparam.texi
3160 @include posix-functions/posix_spawnattr_setschedpolicy.texi
3161 @include posix-functions/posix_spawnattr_setsigdefault.texi
3162 @include posix-functions/posix_spawnattr_setsigmask.texi
3163 @include posix-functions/posix_spawnp.texi
3164 @include posix-functions/posix_trace_attr_destroy.texi
3165 @include posix-functions/posix_trace_attr_getclockres.texi
3166 @include posix-functions/posix_trace_attr_getcreatetime.texi
3167 @include posix-functions/posix_trace_attr_getgenversion.texi
3168 @include posix-functions/posix_trace_attr_getinherited.texi
3169 @include posix-functions/posix_trace_attr_getlogfullpolicy.texi
3170 @include posix-functions/posix_trace_attr_getlogsize.texi
3171 @include posix-functions/posix_trace_attr_getmaxdatasize.texi
3172 @include posix-functions/posix_trace_attr_getmaxsystemeventsize.texi
3173 @include posix-functions/posix_trace_attr_getmaxusereventsize.texi
3174 @include posix-functions/posix_trace_attr_getname.texi
3175 @include posix-functions/posix_trace_attr_getstreamfullpolicy.texi
3176 @include posix-functions/posix_trace_attr_getstreamsize.texi
3177 @include posix-functions/posix_trace_attr_init.texi
3178 @include posix-functions/posix_trace_attr_setinherited.texi
3179 @include posix-functions/posix_trace_attr_setlogfullpolicy.texi
3180 @include posix-functions/posix_trace_attr_setlogsize.texi
3181 @include posix-functions/posix_trace_attr_setmaxdatasize.texi
3182 @include posix-functions/posix_trace_attr_setname.texi
3183 @include posix-functions/posix_trace_attr_setstreamfullpolicy.texi
3184 @include posix-functions/posix_trace_attr_setstreamsize.texi
3185 @include posix-functions/posix_trace_clear.texi
3186 @include posix-functions/posix_trace_close.texi
3187 @include posix-functions/posix_trace_create.texi
3188 @include posix-functions/posix_trace_create_withlog.texi
3189 @include posix-functions/posix_trace_event.texi
3190 @include posix-functions/posix_trace_eventid_equal.texi
3191 @include posix-functions/posix_trace_eventid_get_name.texi
3192 @include posix-functions/posix_trace_eventid_open.texi
3193 @include posix-functions/posix_trace_eventset_add.texi
3194 @include posix-functions/posix_trace_eventset_del.texi
3195 @include posix-functions/posix_trace_eventset_empty.texi
3196 @include posix-functions/posix_trace_eventset_fill.texi
3197 @include posix-functions/posix_trace_eventset_ismember.texi
3198 @include posix-functions/posix_trace_eventtypelist_getnext_id.texi
3199 @include posix-functions/posix_trace_eventtypelist_rewind.texi
3200 @include posix-functions/posix_trace_flush.texi
3201 @include posix-functions/posix_trace_get_attr.texi
3202 @include posix-functions/posix_trace_get_filter.texi
3203 @include posix-functions/posix_trace_get_status.texi
3204 @include posix-functions/posix_trace_getnext_event.texi
3205 @include posix-functions/posix_trace_open.texi
3206 @include posix-functions/posix_trace_rewind.texi
3207 @include posix-functions/posix_trace_set_filter.texi
3208 @include posix-functions/posix_trace_shutdown.texi
3209 @include posix-functions/posix_trace_start.texi
3210 @include posix-functions/posix_trace_stop.texi
3211 @include posix-functions/posix_trace_timedgetnext_event.texi
3212 @include posix-functions/posix_trace_trid_eventid_open.texi
3213 @include posix-functions/posix_trace_trygetnext_event.texi
3214 @include posix-functions/posix_typed_mem_get_info.texi
3215 @include posix-functions/posix_typed_mem_open.texi
3216 @include posix-functions/pow.texi
3217 @include posix-functions/powf.texi
3218 @include posix-functions/powl.texi
3219 @include posix-functions/pread.texi
3220 @include posix-functions/printf.texi
3221 @include posix-functions/pselect.texi
3222 @include posix-functions/psiginfo.texi
3223 @include posix-functions/psignal.texi
3224 @include posix-functions/pthread_atfork.texi
3225 @include posix-functions/pthread_attr_destroy.texi
3226 @include posix-functions/pthread_attr_getdetachstate.texi
3227 @include posix-functions/pthread_attr_getguardsize.texi
3228 @include posix-functions/pthread_attr_getinheritsched.texi
3229 @include posix-functions/pthread_attr_getschedparam.texi
3230 @include posix-functions/pthread_attr_getschedpolicy.texi
3231 @include posix-functions/pthread_attr_getscope.texi
3232 @include posix-functions/pthread_attr_getstack.texi
3233 @include posix-functions/pthread_attr_getstacksize.texi
3234 @include posix-functions/pthread_attr_init.texi
3235 @include posix-functions/pthread_attr_setdetachstate.texi
3236 @include posix-functions/pthread_attr_setguardsize.texi
3237 @include posix-functions/pthread_attr_setinheritsched.texi
3238 @include posix-functions/pthread_attr_setschedparam.texi
3239 @include posix-functions/pthread_attr_setschedpolicy.texi
3240 @include posix-functions/pthread_attr_setscope.texi
3241 @include posix-functions/pthread_attr_setstack.texi
3242 @include posix-functions/pthread_attr_setstacksize.texi
3243 @include posix-functions/pthread_barrier_destroy.texi
3244 @include posix-functions/pthread_barrier_init.texi
3245 @include posix-functions/pthread_barrier_wait.texi
3246 @include posix-functions/pthread_barrierattr_destroy.texi
3247 @include posix-functions/pthread_barrierattr_getpshared.texi
3248 @include posix-functions/pthread_barrierattr_init.texi
3249 @include posix-functions/pthread_barrierattr_setpshared.texi
3250 @include posix-functions/pthread_cancel.texi
3251 @include posix-functions/pthread_cleanup_pop.texi
3252 @include posix-functions/pthread_cleanup_push.texi
3253 @include posix-functions/pthread_cond_broadcast.texi
3254 @include posix-functions/pthread_cond_destroy.texi
3255 @include posix-functions/pthread_cond_init.texi
3256 @include posix-functions/pthread_cond_signal.texi
3257 @include posix-functions/pthread_cond_timedwait.texi
3258 @include posix-functions/pthread_cond_wait.texi
3259 @include posix-functions/pthread_condattr_destroy.texi
3260 @include posix-functions/pthread_condattr_getclock.texi
3261 @include posix-functions/pthread_condattr_getpshared.texi
3262 @include posix-functions/pthread_condattr_init.texi
3263 @include posix-functions/pthread_condattr_setclock.texi
3264 @include posix-functions/pthread_condattr_setpshared.texi
3265 @include posix-functions/pthread_create.texi
3266 @include posix-functions/pthread_detach.texi
3267 @include posix-functions/pthread_equal.texi
3268 @include posix-functions/pthread_exit.texi
3269 @include posix-functions/pthread_getconcurrency.texi
3270 @include posix-functions/pthread_getcpuclockid.texi
3271 @include posix-functions/pthread_getschedparam.texi
3272 @include posix-functions/pthread_getspecific.texi
3273 @include posix-functions/pthread_join.texi
3274 @include posix-functions/pthread_key_create.texi
3275 @include posix-functions/pthread_key_delete.texi
3276 @include posix-functions/pthread_kill.texi
3277 @include posix-functions/pthread_mutex_consistent.texi
3278 @include posix-functions/pthread_mutex_destroy.texi
3279 @include posix-functions/pthread_mutex_getprioceiling.texi
3280 @include posix-functions/pthread_mutex_init.texi
3281 @include posix-functions/pthread_mutex_lock.texi
3282 @include posix-functions/pthread_mutex_setprioceiling.texi
3283 @include posix-functions/pthread_mutex_timedlock.texi
3284 @include posix-functions/pthread_mutex_trylock.texi
3285 @include posix-functions/pthread_mutex_unlock.texi
3286 @include posix-functions/pthread_mutexattr_destroy.texi
3287 @include posix-functions/pthread_mutexattr_getprioceiling.texi
3288 @include posix-functions/pthread_mutexattr_getprotocol.texi
3289 @include posix-functions/pthread_mutexattr_getpshared.texi
3290 @include posix-functions/pthread_mutexattr_getrobust.texi
3291 @include posix-functions/pthread_mutexattr_gettype.texi
3292 @include posix-functions/pthread_mutexattr_init.texi
3293 @include posix-functions/pthread_mutexattr_setprioceiling.texi
3294 @include posix-functions/pthread_mutexattr_setprotocol.texi
3295 @include posix-functions/pthread_mutexattr_setpshared.texi
3296 @include posix-functions/pthread_mutexattr_setrobust.texi
3297 @include posix-functions/pthread_mutexattr_settype.texi
3298 @include posix-functions/pthread_once.texi
3299 @include posix-functions/pthread_rwlock_destroy.texi
3300 @include posix-functions/pthread_rwlock_init.texi
3301 @include posix-functions/pthread_rwlock_rdlock.texi
3302 @include posix-functions/pthread_rwlock_timedrdlock.texi
3303 @include posix-functions/pthread_rwlock_timedwrlock.texi
3304 @include posix-functions/pthread_rwlock_tryrdlock.texi
3305 @include posix-functions/pthread_rwlock_trywrlock.texi
3306 @include posix-functions/pthread_rwlock_unlock.texi
3307 @include posix-functions/pthread_rwlock_wrlock.texi
3308 @include posix-functions/pthread_rwlockattr_destroy.texi
3309 @include posix-functions/pthread_rwlockattr_getpshared.texi
3310 @include posix-functions/pthread_rwlockattr_init.texi
3311 @include posix-functions/pthread_rwlockattr_setpshared.texi
3312 @include posix-functions/pthread_self.texi
3313 @include posix-functions/pthread_setcancelstate.texi
3314 @include posix-functions/pthread_setcanceltype.texi
3315 @include posix-functions/pthread_setconcurrency.texi
3316 @include posix-functions/pthread_setschedparam.texi
3317 @include posix-functions/pthread_setschedprio.texi
3318 @include posix-functions/pthread_setspecific.texi
3319 @include posix-functions/pthread_sigmask.texi
3320 @include posix-functions/pthread_spin_destroy.texi
3321 @include posix-functions/pthread_spin_init.texi
3322 @include posix-functions/pthread_spin_lock.texi
3323 @include posix-functions/pthread_spin_trylock.texi
3324 @include posix-functions/pthread_spin_unlock.texi
3325 @include posix-functions/pthread_testcancel.texi
3326 @include posix-functions/ptsname.texi
3327 @include posix-functions/putc.texi
3328 @include posix-functions/putc_unlocked.texi
3329 @include posix-functions/putchar.texi
3330 @include posix-functions/putchar_unlocked.texi
3331 @include posix-functions/putenv.texi
3332 @include posix-functions/putmsg.texi
3333 @include posix-functions/putpmsg.texi
3334 @include posix-functions/puts.texi
3335 @include posix-functions/pututxline.texi
3336 @include posix-functions/putwc.texi
3337 @include posix-functions/putwchar.texi
3338 @include posix-functions/pwrite.texi
3339 @include posix-functions/qsort.texi
3340 @include posix-functions/raise.texi
3341 @include posix-functions/rand.texi
3342 @include posix-functions/rand_r.texi
3343 @include posix-functions/random.texi
3344 @include posix-functions/read.texi
3345 @include posix-functions/readdir.texi
3346 @include posix-functions/readdir_r.texi
3347 @include posix-functions/readlink.texi
3348 @include posix-functions/readlinkat.texi
3349 @include posix-functions/readv.texi
3350 @include posix-functions/realloc.texi
3351 @include posix-functions/realpath.texi
3352 @include posix-functions/recv.texi
3353 @include posix-functions/recvfrom.texi
3354 @include posix-functions/recvmsg.texi
3355 @include posix-functions/regcomp.texi
3356 @include posix-functions/regerror.texi
3357 @include posix-functions/regexec.texi
3358 @include posix-functions/regfree.texi
3359 @include posix-functions/remainder.texi
3360 @include posix-functions/remainderf.texi
3361 @include posix-functions/remainderl.texi
3362 @include posix-functions/remove.texi
3363 @include posix-functions/remque.texi
3364 @include posix-functions/remquo.texi
3365 @include posix-functions/remquof.texi
3366 @include posix-functions/remquol.texi
3367 @include posix-functions/rename.texi
3368 @include posix-functions/renameat.texi
3369 @include posix-functions/rewind.texi
3370 @include posix-functions/rewinddir.texi
3371 @include posix-functions/rint.texi
3372 @include posix-functions/rintf.texi
3373 @include posix-functions/rintl.texi
3374 @include posix-functions/rmdir.texi
3375 @include posix-functions/round.texi
3376 @include posix-functions/roundf.texi
3377 @include posix-functions/roundl.texi
3378 @include posix-functions/scalbln.texi
3379 @include posix-functions/scalblnf.texi
3380 @include posix-functions/scalblnl.texi
3381 @include posix-functions/scalbn.texi
3382 @include posix-functions/scalbnf.texi
3383 @include posix-functions/scalbnl.texi
3384 @include posix-functions/scandir.texi
3385 @include posix-functions/scanf.texi
3386 @include posix-functions/sched_get_priority_max.texi
3387 @include posix-functions/sched_get_priority_min.texi
3388 @include posix-functions/sched_getparam.texi
3389 @include posix-functions/sched_getscheduler.texi
3390 @include posix-functions/sched_rr_get_interval.texi
3391 @include posix-functions/sched_setparam.texi
3392 @include posix-functions/sched_setscheduler.texi
3393 @include posix-functions/sched_yield.texi
3394 @include posix-functions/seed48.texi
3395 @include posix-functions/seekdir.texi
3396 @include posix-functions/select.texi
3397 @include posix-functions/sem_close.texi
3398 @include posix-functions/sem_destroy.texi
3399 @include posix-functions/sem_getvalue.texi
3400 @include posix-functions/sem_init.texi
3401 @include posix-functions/sem_open.texi
3402 @include posix-functions/sem_post.texi
3403 @include posix-functions/sem_timedwait.texi
3404 @include posix-functions/sem_trywait.texi
3405 @include posix-functions/sem_unlink.texi
3406 @include posix-functions/sem_wait.texi
3407 @include posix-functions/semctl.texi
3408 @include posix-functions/semget.texi
3409 @include posix-functions/semop.texi
3410 @include posix-functions/send.texi
3411 @include posix-functions/sendmsg.texi
3412 @include posix-functions/sendto.texi
3413 @include posix-functions/setbuf.texi
3414 @include posix-functions/setegid.texi
3415 @include posix-functions/setenv.texi
3416 @include posix-functions/seteuid.texi
3417 @include posix-functions/setgid.texi
3418 @include posix-functions/setgrent.texi
3419 @include posix-functions/sethostent.texi
3420 @include posix-functions/setitimer.texi
3421 @include posix-functions/setjmp.texi
3422 @include posix-functions/setkey.texi
3423 @include posix-functions/setlocale.texi
3424 @include posix-functions/setlogmask.texi
3425 @include posix-functions/setnetent.texi
3426 @include posix-functions/setpgid.texi
3427 @include posix-functions/setpgrp.texi
3428 @include posix-functions/setpriority.texi
3429 @include posix-functions/setprotoent.texi
3430 @include posix-functions/setpwent.texi
3431 @include posix-functions/setregid.texi
3432 @include posix-functions/setreuid.texi
3433 @include posix-functions/setrlimit.texi
3434 @include posix-functions/setservent.texi
3435 @include posix-functions/setsid.texi
3436 @include posix-functions/setsockopt.texi
3437 @include posix-functions/setstate.texi
3438 @include posix-functions/setuid.texi
3439 @include posix-functions/setutxent.texi
3440 @include posix-functions/setvbuf.texi
3441 @include posix-functions/shm_open.texi
3442 @include posix-functions/shm_unlink.texi
3443 @include posix-functions/shmat.texi
3444 @include posix-functions/shmctl.texi
3445 @include posix-functions/shmdt.texi
3446 @include posix-functions/shmget.texi
3447 @include posix-functions/shutdown.texi
3448 @include posix-functions/sigaction.texi
3449 @include posix-functions/sigaddset.texi
3450 @include posix-functions/sigaltstack.texi
3451 @include posix-functions/sigdelset.texi
3452 @include posix-functions/sigemptyset.texi
3453 @include posix-functions/sigfillset.texi
3454 @include posix-functions/sighold.texi
3455 @include posix-functions/sigignore.texi
3456 @include posix-functions/siginterrupt.texi
3457 @include posix-functions/sigismember.texi
3458 @include posix-functions/siglongjmp.texi
3459 @include posix-functions/signal.texi
3460 @include posix-functions/signbit.texi
3461 @include posix-functions/signgam.texi
3462 @include posix-functions/sigpause.texi
3463 @include posix-functions/sigpending.texi
3464 @include posix-functions/sigprocmask.texi
3465 @include posix-functions/sigqueue.texi
3466 @include posix-functions/sigrelse.texi
3467 @include posix-functions/sigset.texi
3468 @include posix-functions/sigsetjmp.texi
3469 @include posix-functions/sigsuspend.texi
3470 @include posix-functions/sigtimedwait.texi
3471 @include posix-functions/sigwait.texi
3472 @include posix-functions/sigwaitinfo.texi
3473 @include posix-functions/sin.texi
3474 @include posix-functions/sinf.texi
3475 @include posix-functions/sinh.texi
3476 @include posix-functions/sinhf.texi
3477 @include posix-functions/sinhl.texi
3478 @include posix-functions/sinl.texi
3479 @include posix-functions/sleep.texi
3480 @include posix-functions/snprintf.texi
3481 @include posix-functions/sockatmark.texi
3482 @include posix-functions/socket.texi
3483 @include posix-functions/socketpair.texi
3484 @include posix-functions/sprintf.texi
3485 @include posix-functions/sqrt.texi
3486 @include posix-functions/sqrtf.texi
3487 @include posix-functions/sqrtl.texi
3488 @include posix-functions/srand.texi
3489 @include posix-functions/srand48.texi
3490 @include posix-functions/srandom.texi
3491 @include posix-functions/sscanf.texi
3492 @include posix-functions/stat.texi
3493 @include posix-functions/statvfs.texi
3494 @include posix-functions/stderr.texi
3495 @include posix-functions/stdin.texi
3496 @include posix-functions/stdout.texi
3497 @include posix-functions/stpcpy.texi
3498 @include posix-functions/stpncpy.texi
3499 @include posix-functions/strcasecmp.texi
3500 @include posix-functions/strcasecmp_l.texi
3501 @include posix-functions/strcat.texi
3502 @include posix-functions/strchr.texi
3503 @include posix-functions/strcmp.texi
3504 @include posix-functions/strcoll.texi
3505 @include posix-functions/strcoll_l.texi
3506 @include posix-functions/strcpy.texi
3507 @include posix-functions/strcspn.texi
3508 @include posix-functions/strdup.texi
3509 @include posix-functions/strerror.texi
3510 @include posix-functions/strerror_l.texi
3511 @include posix-functions/strerror_r.texi
3512 @include posix-functions/strfmon.texi
3513 @include posix-functions/strfmon_l.texi
3514 @include posix-functions/strftime.texi
3515 @include posix-functions/strftime_l.texi
3516 @include posix-functions/strlen.texi
3517 @include posix-functions/strncasecmp.texi
3518 @include posix-functions/strncasecmp_l.texi
3519 @include posix-functions/strncat.texi
3520 @include posix-functions/strncmp.texi
3521 @include posix-functions/strncpy.texi
3522 @include posix-functions/strndup.texi
3523 @include posix-functions/strnlen.texi
3524 @include posix-functions/strpbrk.texi
3525 @include posix-functions/strptime.texi
3526 @include posix-functions/strrchr.texi
3527 @include posix-functions/strsignal.texi
3528 @include posix-functions/strspn.texi
3529 @include posix-functions/strstr.texi
3530 @include posix-functions/strtod.texi
3531 @include posix-functions/strtof.texi
3532 @include posix-functions/strtoimax.texi
3533 @include posix-functions/strtok.texi
3534 @include posix-functions/strtok_r.texi
3535 @include posix-functions/strtol.texi
3536 @include posix-functions/strtold.texi
3537 @include posix-functions/strtoll.texi
3538 @include posix-functions/strtoul.texi
3539 @include posix-functions/strtoull.texi
3540 @include posix-functions/strtoumax.texi
3541 @include posix-functions/strxfrm.texi
3542 @include posix-functions/strxfrm_l.texi
3543 @include posix-functions/swab.texi
3544 @include posix-functions/swprintf.texi
3545 @include posix-functions/swscanf.texi
3546 @include posix-functions/symlink.texi
3547 @include posix-functions/symlinkat.texi
3548 @include posix-functions/sync.texi
3549 @include posix-functions/sysconf.texi
3550 @include posix-functions/syslog.texi
3551 @include posix-functions/system.texi
3552 @include posix-functions/tan.texi
3553 @include posix-functions/tanf.texi
3554 @include posix-functions/tanh.texi
3555 @include posix-functions/tanhf.texi
3556 @include posix-functions/tanhl.texi
3557 @include posix-functions/tanl.texi
3558 @include posix-functions/tcdrain.texi
3559 @include posix-functions/tcflow.texi
3560 @include posix-functions/tcflush.texi
3561 @include posix-functions/tcgetattr.texi
3562 @include posix-functions/tcgetpgrp.texi
3563 @include posix-functions/tcgetsid.texi
3564 @include posix-functions/tcsendbreak.texi
3565 @include posix-functions/tcsetattr.texi
3566 @include posix-functions/tcsetpgrp.texi
3567 @include posix-functions/tdelete.texi
3568 @include posix-functions/telldir.texi
3569 @include posix-functions/tempnam.texi
3570 @include posix-functions/tfind.texi
3571 @include posix-functions/tgamma.texi
3572 @include posix-functions/tgammaf.texi
3573 @include posix-functions/tgammal.texi
3574 @include posix-functions/time.texi
3575 @include posix-functions/timer_create.texi
3576 @include posix-functions/timer_delete.texi
3577 @include posix-functions/timer_getoverrun.texi
3578 @include posix-functions/timer_gettime.texi
3579 @include posix-functions/timer_settime.texi
3580 @include posix-functions/times.texi
3581 @include posix-functions/timezone.texi
3582 @include posix-functions/tmpfile.texi
3583 @include posix-functions/tmpnam.texi
3584 @include posix-functions/toascii.texi
3585 @include posix-functions/tolower.texi
3586 @include posix-functions/tolower_l.texi
3587 @include posix-functions/toupper.texi
3588 @include posix-functions/toupper_l.texi
3589 @include posix-functions/towctrans.texi
3590 @include posix-functions/towctrans_l.texi
3591 @include posix-functions/towlower.texi
3592 @include posix-functions/towlower_l.texi
3593 @include posix-functions/towupper.texi
3594 @include posix-functions/towupper_l.texi
3595 @include posix-functions/trunc.texi
3596 @include posix-functions/truncate.texi
3597 @include posix-functions/truncf.texi
3598 @include posix-functions/truncl.texi
3599 @include posix-functions/tsearch.texi
3600 @include posix-functions/ttyname.texi
3601 @include posix-functions/ttyname_r.texi
3602 @include posix-functions/twalk.texi
3603 @include posix-functions/tzname.texi
3604 @include posix-functions/tzset.texi
3605 @include posix-functions/ulimit.texi
3606 @include posix-functions/umask.texi
3607 @include posix-functions/uname.texi
3608 @include posix-functions/ungetc.texi
3609 @include posix-functions/ungetwc.texi
3610 @include posix-functions/unlink.texi
3611 @include posix-functions/unlinkat.texi
3612 @include posix-functions/unlockpt.texi
3613 @include posix-functions/unsetenv.texi
3614 @include posix-functions/uselocale.texi
3615 @include posix-functions/utime.texi
3616 @include posix-functions/utimensat.texi
3617 @include posix-functions/utimes.texi
3618 @include posix-functions/va_arg.texi
3619 @include posix-functions/va_copy.texi
3620 @include posix-functions/va_end.texi
3621 @include posix-functions/va_start.texi
3622 @include posix-functions/vdprintf.texi
3623 @include posix-functions/vfprintf.texi
3624 @include posix-functions/vfscanf.texi
3625 @include posix-functions/vfwprintf.texi
3626 @include posix-functions/vfwscanf.texi
3627 @include posix-functions/vprintf.texi
3628 @include posix-functions/vscanf.texi
3629 @include posix-functions/vsnprintf.texi
3630 @include posix-functions/vsprintf.texi
3631 @include posix-functions/vsscanf.texi
3632 @include posix-functions/vswprintf.texi
3633 @include posix-functions/vswscanf.texi
3634 @include posix-functions/vwprintf.texi
3635 @include posix-functions/vwscanf.texi
3636 @include posix-functions/wait.texi
3637 @include posix-functions/waitid.texi
3638 @include posix-functions/waitpid.texi
3639 @include posix-functions/wcpcpy.texi
3640 @include posix-functions/wcpncpy.texi
3641 @include posix-functions/wcrtomb.texi
3642 @include posix-functions/wcscasecmp.texi
3643 @include posix-functions/wcscasecmp_l.texi
3644 @include posix-functions/wcscat.texi
3645 @include posix-functions/wcschr.texi
3646 @include posix-functions/wcscmp.texi
3647 @include posix-functions/wcscoll.texi
3648 @include posix-functions/wcscoll_l.texi
3649 @include posix-functions/wcscpy.texi
3650 @include posix-functions/wcscspn.texi
3651 @include posix-functions/wcsdup.texi
3652 @include posix-functions/wcsftime.texi
3653 @include posix-functions/wcslen.texi
3654 @include posix-functions/wcsncasecmp.texi
3655 @include posix-functions/wcsncasecmp_l.texi
3656 @include posix-functions/wcsncat.texi
3657 @include posix-functions/wcsncmp.texi
3658 @include posix-functions/wcsncpy.texi
3659 @include posix-functions/wcsnlen.texi
3660 @include posix-functions/wcsnrtombs.texi
3661 @include posix-functions/wcspbrk.texi
3662 @include posix-functions/wcsrchr.texi
3663 @include posix-functions/wcsrtombs.texi
3664 @include posix-functions/wcsspn.texi
3665 @include posix-functions/wcsstr.texi
3666 @include posix-functions/wcstod.texi
3667 @include posix-functions/wcstof.texi
3668 @include posix-functions/wcstoimax.texi
3669 @include posix-functions/wcstok.texi
3670 @include posix-functions/wcstol.texi
3671 @include posix-functions/wcstold.texi
3672 @include posix-functions/wcstoll.texi
3673 @include posix-functions/wcstombs.texi
3674 @include posix-functions/wcstoul.texi
3675 @include posix-functions/wcstoull.texi
3676 @include posix-functions/wcstoumax.texi
3677 @include posix-functions/wcswidth.texi
3678 @include posix-functions/wcsxfrm.texi
3679 @include posix-functions/wcsxfrm_l.texi
3680 @include posix-functions/wctob.texi
3681 @include posix-functions/wctomb.texi
3682 @include posix-functions/wctrans.texi
3683 @include posix-functions/wctrans_l.texi
3684 @include posix-functions/wctype.texi
3685 @include posix-functions/wctype_l.texi
3686 @include posix-functions/wcwidth.texi
3687 @include posix-functions/wmemchr.texi
3688 @include posix-functions/wmemcmp.texi
3689 @include posix-functions/wmemcpy.texi
3690 @include posix-functions/wmemmove.texi
3691 @include posix-functions/wmemset.texi
3692 @include posix-functions/wordexp.texi
3693 @include posix-functions/wordfree.texi
3694 @include posix-functions/wprintf.texi
3695 @include posix-functions/write.texi
3696 @include posix-functions/writev.texi
3697 @include posix-functions/wscanf.texi
3698 @include posix-functions/y0.texi
3699 @include posix-functions/y1.texi
3700 @include posix-functions/yn.texi
3701
3702 @node Legacy Function Substitutes
3703 @chapter Past POSIX Function Substitutes
3704
3705 This chapter describes which functions and function-like macros specified by
3706 older versions of POSIX (POSIX:2001) are substituted by Gnulib, which
3707 portability pitfalls are fixed by Gnulib, and which (known) portability
3708 problems are not worked around by Gnulib.
3709
3710 @nosuchmodulenote function
3711
3712 @menu
3713 * bcmp::
3714 * bcopy::
3715 * bsd_signal::
3716 * bzero::
3717 * ecvt::
3718 * fcvt::
3719 * ftime::
3720 * gcvt::
3721 * getcontext::
3722 * gethostbyaddr::
3723 * gethostbyname::
3724 * getwd::
3725 * h_errno::
3726 * index::
3727 * makecontext::
3728 * mktemp::
3729 * pthread_attr_getstackaddr::
3730 * pthread_attr_setstackaddr::
3731 * rindex::
3732 * scalb::
3733 * setcontext::
3734 * swapcontext::
3735 * ualarm::
3736 * usleep::
3737 * vfork::
3738 * wcswcs::
3739 @end menu
3740
3741 @include pastposix-functions/bcmp.texi
3742 @include pastposix-functions/bcopy.texi
3743 @include pastposix-functions/bsd_signal.texi
3744 @include pastposix-functions/bzero.texi
3745 @include pastposix-functions/ecvt.texi
3746 @include pastposix-functions/fcvt.texi
3747 @include pastposix-functions/ftime.texi
3748 @include pastposix-functions/gcvt.texi
3749 @include pastposix-functions/getcontext.texi
3750 @include pastposix-functions/gethostbyaddr.texi
3751 @include pastposix-functions/gethostbyname.texi
3752 @include pastposix-functions/getwd.texi
3753 @include pastposix-functions/h_errno.texi
3754 @include pastposix-functions/index.texi
3755 @include pastposix-functions/makecontext.texi
3756 @include pastposix-functions/mktemp.texi
3757 @include pastposix-functions/pthread_attr_getstackaddr.texi
3758 @include pastposix-functions/pthread_attr_setstackaddr.texi
3759 @include pastposix-functions/rindex.texi
3760 @include pastposix-functions/scalb.texi
3761 @include pastposix-functions/setcontext.texi
3762 @include pastposix-functions/swapcontext.texi
3763 @include pastposix-functions/ualarm.texi
3764 @include pastposix-functions/usleep.texi
3765 @include pastposix-functions/vfork.texi
3766 @include pastposix-functions/wcswcs.texi
3767
3768 @node Glibc Header File Substitutes
3769 @chapter Glibc Header File Substitutes
3770
3771 This chapter describes which header files contained in GNU libc but not
3772 specified by ISO C or POSIX are substituted by Gnulib, which portability
3773 pitfalls are fixed by Gnulib, and which (known) portability problems are
3774 not worked around by Gnulib.
3775
3776 @nosuchmodulenote header file
3777
3778 @menu
3779 * a.out.h::
3780 * aliases.h::
3781 * alloca.h::
3782 * ar.h::
3783 * argp.h::
3784 * argz.h::
3785 * byteswap.h::
3786 * crypt.h::
3787 * endian.h::
3788 * envz.h::
3789 * err.h::
3790 * error.h::
3791 * execinfo.h::
3792 * fpu_control.h::
3793 * fstab.h::
3794 * fts.h::
3795 * getopt.h::
3796 * ieee754.h::
3797 * ifaddrs.h::
3798 * libintl.h::
3799 * mcheck.h::
3800 * mntent.h::
3801 * obstack.h::
3802 * paths.h::
3803 * printf.h::
3804 * pty.h::
3805 * resolv.h::
3806 * shadow.h::
3807 * sys/ioctl.h::
3808 * sysexits.h::
3809 * ttyent.h::
3810 @end menu
3811
3812 @include glibc-headers/a.out.texi
3813 @include glibc-headers/aliases.texi
3814 @include glibc-headers/alloca.texi
3815 @include glibc-headers/ar.texi
3816 @include glibc-headers/argp.texi
3817 @include glibc-headers/argz.texi
3818 @include glibc-headers/byteswap.texi
3819 @include glibc-headers/crypt.texi
3820 @include glibc-headers/endian.texi
3821 @include glibc-headers/envz.texi
3822 @include glibc-headers/err.texi
3823 @include glibc-headers/error.texi
3824 @include glibc-headers/execinfo.texi
3825 @include glibc-headers/fpu_control.texi
3826 @include glibc-headers/fstab.texi
3827 @include glibc-headers/fts.texi
3828 @include glibc-headers/getopt.texi
3829 @include glibc-headers/ieee754.texi
3830 @include glibc-headers/ifaddrs.texi
3831 @include glibc-headers/libintl.texi
3832 @include glibc-headers/mcheck.texi
3833 @include glibc-headers/mntent.texi
3834 @include glibc-headers/obstack.texi
3835 @include glibc-headers/paths.texi
3836 @include glibc-headers/printf.texi
3837 @include glibc-headers/pty.texi
3838 @include glibc-headers/resolv.texi
3839 @include glibc-headers/shadow.texi
3840 @include glibc-headers/sys_ioctl.texi
3841 @include glibc-headers/sysexits.texi
3842 @include glibc-headers/ttyent.texi
3843
3844 @node Glibc Function Substitutes
3845 @chapter Glibc Function Substitutes
3846
3847 This chapter describes which functions and function-like macros
3848 provided as extensions by at least GNU libc are also supported by Gnulib,
3849 which portability pitfalls are fixed by Gnulib, and which (known)
3850 portability problems are not worked around by Gnulib.
3851
3852 @nosuchmodulenote function
3853
3854 This list of functions is sorted according to the header that declares them.
3855
3856 @menu
3857 * Glibc aio.h::
3858 * Glibc aliases.h::
3859 * Glibc argp.h::
3860 * Glibc argz.h::
3861 * Glibc arpa/inet.h::
3862 * Glibc byteswap.h::
3863 * Glibc complex.h::
3864 * Glibc crypt.h::
3865 * Glibc ctype.h::
3866 * Glibc dirent.h::
3867 * Glibc dlfcn.h::
3868 * Glibc envz.h::
3869 * Glibc err.h::
3870 * Glibc errno.h::
3871 * Glibc error.h::
3872 * Glibc execinfo.h::
3873 * Glibc fcntl.h::
3874 * Glibc fenv.h::
3875 * Glibc fmtmsg.h::
3876 * Glibc fstab.h::
3877 * Glibc fts.h::
3878 * Glibc getopt.h::
3879 * Glibc glob.h::
3880 * Glibc gnu/libc-version.h::
3881 * Glibc grp.h::
3882 * Glibc ifaddrs.h::
3883 * Glibc libintl.h::
3884 * Glibc link.h::
3885 * Glibc malloc.h::
3886 * Glibc math.h::
3887 * Glibc mcheck.h::
3888 * Glibc mntent.h::
3889 * Glibc netdb.h::
3890 * Glibc netinet/ether.h::
3891 * Glibc netinet/in.h::
3892 * Glibc obstack.h::
3893 * Glibc printf.h::
3894 * Glibc pthread.h::
3895 * Glibc pty.h::
3896 * Glibc pwd.h::
3897 * Glibc regex.h::
3898 * Glibc regexp.h::
3899 * Glibc resolv.h::
3900 * Glibc rpc/auth.h::
3901 * Glibc rpc/auth_des.h::
3902 * Glibc rpc/auth_unix.h::
3903 * Glibc rpc/clnt.h::
3904 * Glibc rpc/des_crypt.h::
3905 * Glibc rpc/key_prot.h::
3906 * Glibc rpc/netdb.h::
3907 * Glibc rpc/pmap_clnt.h::
3908 * Glibc rpc/pmap_prot.h::
3909 * Glibc rpc/pmap_rmt.h::
3910 * Glibc rpc/rpc_msg.h::
3911 * Glibc rpc/svc.h::
3912 * Glibc rpc/xdr.h::
3913 * Glibc rpcsvc/nislib.h::
3914 * Glibc rpcsvc/nis_callback.h::
3915 * Glibc rpcsvc/yp.h::
3916 * Glibc rpcsvc/yp_prot.h::
3917 * Glibc rpcsvc/ypclnt.h::
3918 * Glibc rpcsvc/ypupd.h::
3919 * Glibc sched.h::
3920 * Glibc search.h::
3921 * Glibc selinux/selinux.h::
3922 * Glibc shadow.h::
3923 * Glibc signal.h::
3924 * Glibc stdio.h::
3925 * Glibc stdlib.h::
3926 * Glibc string.h::
3927 * Glibc sys/capability.h::
3928 * Glibc sys/epoll.h::
3929 * Glibc sys/file.h::
3930 * Glibc sys/fsuid.h::
3931 * Glibc sys/gmon.h::
3932 * Glibc sys/io.h and sys/perm.h::
3933 * Glibc sys/kdaemon.h::
3934 * Glibc sys/klog.h::
3935 * Glibc sys/mman.h::
3936 * Glibc sys/mount.h::
3937 * Glibc sys/personality.h::
3938 * Glibc sys/prctl.h::
3939 * Glibc sys/profil.h::
3940 * Glibc sys/ptrace.h::
3941 * Glibc sys/quota.h::
3942 * Glibc sys/reboot.h::
3943 * Glibc sys/sem.h::
3944 * Glibc sys/sendfile.h::
3945 * Glibc sys/socket.h::
3946 * Glibc sys/stat.h::
3947 * Glibc sys/statfs.h::
3948 * Glibc sys/swap.h::
3949 * Glibc sys/sysctl.h::
3950 * Glibc sys/sysinfo.h::
3951 * Glibc sys/syslog.h::
3952 * Glibc sys/sysmacros.h::
3953 * Glibc sys/time.h::
3954 * Glibc sys/timex.h::
3955 * Glibc sys/ustat.h::
3956 * Glibc sys/vlimit.h::
3957 * Glibc sys/vm86.h::
3958 * Glibc sys/vtimes.h::
3959 * Glibc sys/wait.h::
3960 * Glibc sys/xattr.h::
3961 * Glibc termios.h::
3962 * Glibc time.h::
3963 * Glibc ttyent.h::
3964 * Glibc unistd.h::
3965 * Glibc utmp.h::
3966 * Glibc utmpx.h::
3967 * Glibc wchar.h::
3968 @end menu
3969
3970 @c @node Glibc a.out.h
3971 @c @section Glibc @code{<a.out.h>}
3972
3973 @node Glibc aio.h
3974 @section Glibc Extensions to @code{<aio.h>}
3975
3976 @menu
3977 * aio_init::
3978 @end menu
3979
3980 @include glibc-functions/aio_init.texi
3981
3982 @node Glibc aliases.h
3983 @section Glibc @code{<aliases.h>}
3984
3985 @menu
3986 * endaliasent::
3987 * getaliasbyname::
3988 * getaliasbyname_r::
3989 * getaliasent::
3990 * getaliasent_r::
3991 * setaliasent::
3992 @end menu
3993
3994 @include glibc-functions/endaliasent.texi
3995 @include glibc-functions/getaliasbyname.texi
3996 @include glibc-functions/getaliasbyname_r.texi
3997 @include glibc-functions/getaliasent.texi
3998 @include glibc-functions/getaliasent_r.texi
3999 @include glibc-functions/setaliasent.texi
4000
4001 @c @node Glibc alloca.h
4002 @c @section Glibc @code{<alloca.h>}
4003
4004 @c @node Glibc ar.h
4005 @c @section Glibc @code{<ar.h>}
4006
4007 @node Glibc argp.h
4008 @section Glibc @code{<argp.h>}
4009
4010 @menu
4011 * argp_err_exit_status::
4012 * argp_error::
4013 * argp_failure::
4014 * argp_help::
4015 * argp_parse::
4016 * argp_program_bug_address::
4017 * argp_program_version::
4018 * argp_program_version_hook::
4019 * argp_state_help::
4020 * argp_usage::
4021 @end menu
4022
4023 @include glibc-functions/argp_err_exit_status.texi
4024 @include glibc-functions/argp_error.texi
4025 @include glibc-functions/argp_failure.texi
4026 @include glibc-functions/argp_help.texi
4027 @include glibc-functions/argp_parse.texi
4028 @include glibc-functions/argp_program_bug_address.texi
4029 @include glibc-functions/argp_program_version.texi
4030 @include glibc-functions/argp_program_version_hook.texi
4031 @include glibc-functions/argp_state_help.texi
4032 @include glibc-functions/argp_usage.texi
4033
4034 @node Glibc argz.h
4035 @section Glibc @code{<argz.h>}
4036
4037 @menu
4038 * argz_add::
4039 * argz_add_sep::
4040 * argz_append::
4041 * argz_count::
4042 * argz_create::
4043 * argz_create_sep::
4044 * argz_delete::
4045 * argz_extract::
4046 * argz_insert::
4047 * argz_next::
4048 * argz_replace::
4049 * argz_stringify::
4050 @end menu
4051
4052 @include glibc-functions/argz_add.texi
4053 @include glibc-functions/argz_add_sep.texi
4054 @include glibc-functions/argz_append.texi
4055 @include glibc-functions/argz_count.texi
4056 @include glibc-functions/argz_create.texi
4057 @include glibc-functions/argz_create_sep.texi
4058 @include glibc-functions/argz_delete.texi
4059 @include glibc-functions/argz_extract.texi
4060 @include glibc-functions/argz_insert.texi
4061 @include glibc-functions/argz_next.texi
4062 @include glibc-functions/argz_replace.texi
4063 @include glibc-functions/argz_stringify.texi
4064
4065 @node Glibc arpa/inet.h
4066 @section Glibc Extensions to @code{<arpa/inet.h>}
4067
4068 @menu
4069 * inet_aton::
4070 * inet_lnaof::
4071 * inet_makeaddr::
4072 * inet_net_ntop::
4073 * inet_net_pton::
4074 * inet_neta::
4075 * inet_netof::
4076 * inet_network::
4077 * inet_nsap_addr::
4078 * inet_nsap_ntoa::
4079 @end menu
4080
4081 @include glibc-functions/inet_aton.texi
4082 @include glibc-functions/inet_lnaof.texi
4083 @include glibc-functions/inet_makeaddr.texi
4084 @include glibc-functions/inet_net_ntop.texi
4085 @include glibc-functions/inet_net_pton.texi
4086 @include glibc-functions/inet_neta.texi
4087 @include glibc-functions/inet_netof.texi
4088 @include glibc-functions/inet_network.texi
4089 @include glibc-functions/inet_nsap_addr.texi
4090 @include glibc-functions/inet_nsap_ntoa.texi
4091
4092 @c @node Glibc assert.h
4093 @c @section Glibc Extensions to @code{<assert.h>}
4094
4095 @node Glibc byteswap.h
4096 @section Glibc @code{<byteswap.h>}
4097
4098 @menu
4099 * bswap_16::
4100 * bswap_32::
4101 * bswap_64::
4102 @end menu
4103
4104 @include glibc-functions/bswap_16.texi
4105 @include glibc-functions/bswap_32.texi
4106 @include glibc-functions/bswap_64.texi
4107
4108 @node Glibc complex.h
4109 @section Glibc Extensions to @code{<complex.h>}
4110
4111 @menu
4112 * clog10::
4113 * clog10f::
4114 * clog10l::
4115 @end menu
4116
4117 @include glibc-functions/clog10.texi
4118 @include glibc-functions/clog10f.texi
4119 @include glibc-functions/clog10l.texi
4120
4121 @c @node Glibc cpio.h
4122 @c @section Glibc Extensions to @code{<cpio.h>}
4123
4124 @node Glibc crypt.h
4125 @section Glibc @code{<crypt.h>}
4126
4127 @menu
4128 * crypt_r::
4129 * encrypt_r::
4130 * setkey_r::
4131 @end menu
4132
4133 @include glibc-functions/crypt_r.texi
4134 @include glibc-functions/encrypt_r.texi
4135 @include glibc-functions/setkey_r.texi
4136
4137 @node Glibc ctype.h
4138 @section Glibc Extensions to @code{<ctype.h>}
4139
4140 @menu
4141 * isctype::
4142 @end menu
4143
4144 @include glibc-functions/isctype.texi
4145
4146 @node Glibc dirent.h
4147 @section Glibc Extensions to @code{<dirent.h>}
4148
4149 @menu
4150 * getdirentries::
4151 * versionsort::
4152 @end menu
4153
4154 @include glibc-functions/getdirentries.texi
4155 @include glibc-functions/versionsort.texi
4156
4157 @node Glibc dlfcn.h
4158 @section Glibc Extensions to @code{<dlfcn.h>}
4159
4160 @menu
4161 * dladdr::
4162 * dladdr1::
4163 * dlinfo::
4164 * dlmopen::
4165 * dlvsym::
4166 @end menu
4167
4168 @include glibc-functions/dladdr.texi
4169 @include glibc-functions/dladdr1.texi
4170 @include glibc-functions/dlinfo.texi
4171 @include glibc-functions/dlmopen.texi
4172 @include glibc-functions/dlvsym.texi
4173
4174 @c @node Glibc endian.h
4175 @c @section Glibc @code{<endian.h>}
4176
4177 @node Glibc envz.h
4178 @section Glibc @code{<envz.h>}
4179
4180 @menu
4181 * envz_add::
4182 * envz_entry::
4183 * envz_get::
4184 * envz_merge::
4185 * envz_remove::
4186 * envz_strip::
4187 @end menu
4188
4189 @include glibc-functions/envz_add.texi
4190 @include glibc-functions/envz_entry.texi
4191 @include glibc-functions/envz_get.texi
4192 @include glibc-functions/envz_merge.texi
4193 @include glibc-functions/envz_remove.texi
4194 @include glibc-functions/envz_strip.texi
4195
4196 @node Glibc err.h
4197 @section Glibc @code{<err.h>}
4198
4199 @menu
4200 * err::
4201 * errx::
4202 * verr::
4203 * verrx::
4204 * vwarn::
4205 * vwarnx::
4206 * warn::
4207 * warnx::
4208 @end menu
4209
4210 @include glibc-functions/err.texi
4211 @include glibc-functions/errx.texi
4212 @include glibc-functions/verr.texi
4213 @include glibc-functions/verrx.texi
4214 @include glibc-functions/vwarn.texi
4215 @include glibc-functions/vwarnx.texi
4216 @include glibc-functions/warn.texi
4217 @include glibc-functions/warnx.texi
4218
4219 @node Glibc errno.h
4220 @section Glibc Extensions to @code{<errno.h>}
4221
4222 @menu
4223 * program_invocation_name::
4224 * program_invocation_short_name::
4225 @end menu
4226
4227 @include glibc-functions/program_invocation_name.texi
4228 @include glibc-functions/program_invocation_short_name.texi
4229
4230 @node Glibc error.h
4231 @section Glibc @code{<error.h>}
4232
4233 @menu
4234 * error::
4235 * error_at_line::
4236 * error_message_count::
4237 * error_one_per_line::
4238 * error_print_progname::
4239 @end menu
4240
4241 @include glibc-functions/error.texi
4242 @include glibc-functions/error_at_line.texi
4243 @include glibc-functions/error_message_count.texi
4244 @include glibc-functions/error_one_per_line.texi
4245 @include glibc-functions/error_print_progname.texi
4246
4247 @node Glibc execinfo.h
4248 @section Glibc @code{<execinfo.h>}
4249
4250 @menu
4251 * backtrace::
4252 * backtrace_symbols::
4253 * backtrace_symbols_fd::
4254 @end menu
4255
4256 @include glibc-functions/backtrace.texi
4257 @include glibc-functions/backtrace_symbols.texi
4258 @include glibc-functions/backtrace_symbols_fd.texi
4259
4260 @node Glibc fcntl.h
4261 @section Glibc Extensions to @code{<fcntl.h>}
4262
4263 @menu
4264 * fallocate::
4265 * readahead::
4266 @end menu
4267
4268 @include glibc-functions/fallocate.texi
4269 @include glibc-functions/readahead.texi
4270
4271 @node Glibc fenv.h
4272 @section Glibc Extensions to @code{<fenv.h>}
4273
4274 @menu
4275 * fedisableexcept::
4276 * feenableexcept::
4277 * fegetexcept::
4278 @end menu
4279
4280 @include glibc-functions/fedisableexcept.texi
4281 @include glibc-functions/feenableexcept.texi
4282 @include glibc-functions/fegetexcept.texi
4283
4284 @c @node Glibc float.h
4285 @c @section Glibc Extensions to @code{<float.h>}
4286
4287 @node Glibc fmtmsg.h
4288 @section Glibc Extensions to @code{<fmtmsg.h>}
4289
4290 @menu
4291 * addseverity::
4292 @end menu
4293
4294 @include glibc-functions/addseverity.texi
4295
4296 @c @node Glibc fnmatch.h
4297 @c @section Glibc Extensions to @code{<fnmatch.h>}
4298
4299 @c @node Glibc fpu_control.h
4300 @c @section Glibc @code{<fpu_control.h>}
4301
4302 @node Glibc fstab.h
4303 @section Glibc @code{<fstab.h>}
4304
4305 @menu
4306 * endfsent::
4307 * getfsent::
4308 * getfsfile::
4309 * getfsspec::
4310 * setfsent::
4311 @end menu
4312
4313 @include glibc-functions/endfsent.texi
4314 @include glibc-functions/getfsent.texi
4315 @include glibc-functions/getfsfile.texi
4316 @include glibc-functions/getfsspec.texi
4317 @include glibc-functions/setfsent.texi
4318
4319 @node Glibc fts.h
4320 @section Glibc @code{<fts.h>}
4321
4322 @menu
4323 * fts_children::
4324 * fts_close::
4325 * fts_open::
4326 * fts_read::
4327 * fts_set::
4328 @end menu
4329
4330 @include glibc-functions/fts_children.texi
4331 @include glibc-functions/fts_close.texi
4332 @include glibc-functions/fts_open.texi
4333 @include glibc-functions/fts_read.texi
4334 @include glibc-functions/fts_set.texi
4335
4336 @c @node Glibc ftw.h
4337 @c @section Glibc Extensions to @code{<ftw.h>}
4338
4339 @node Glibc getopt.h
4340 @section Glibc @code{<getopt.h>}
4341
4342 @menu
4343 * getopt_long::
4344 * getopt_long_only::
4345 @end menu
4346
4347 @include glibc-functions/getopt_long.texi
4348 @include glibc-functions/getopt_long_only.texi
4349
4350 @node Glibc glob.h
4351 @section Glibc Extensions to @code{<glob.h>}
4352
4353 @menu
4354 * glob_pattern_p::
4355 @end menu
4356
4357 @include glibc-functions/glob_pattern_p.texi
4358
4359 @node Glibc gnu/libc-version.h
4360 @section Glibc Extensions to @code{<gnu/libc-version.h>}
4361
4362 @menu
4363 * gnu_get_libc_release::
4364 * gnu_get_libc_version::
4365 @end menu
4366
4367 @include glibc-functions/gnu_get_libc_release.texi
4368 @include glibc-functions/gnu_get_libc_version.texi
4369
4370 @node Glibc grp.h
4371 @section Glibc Extensions to @code{<grp.h>}
4372
4373 @menu
4374 * fgetgrent::
4375 * fgetgrent_r::
4376 * getgrent_r::
4377 * getgrouplist::
4378 * initgroups::
4379 * putgrent::
4380 * setgroups::
4381 @end menu
4382
4383 @include glibc-functions/fgetgrent.texi
4384 @include glibc-functions/fgetgrent_r.texi
4385 @include glibc-functions/getgrent_r.texi
4386 @include glibc-functions/getgrouplist.texi
4387 @include glibc-functions/initgroups.texi
4388 @include glibc-functions/putgrent.texi
4389 @include glibc-functions/setgroups.texi
4390
4391 @c @node Glibc iconv.h
4392 @c @section Glibc Extensions to @code{<iconv.h>}
4393
4394 @c @node Glibc ieee754.h
4395 @c @section Glibc @code{<ieee754.h>}
4396
4397 @node Glibc ifaddrs.h
4398 @section Glibc @code{<ifaddrs.h>}
4399
4400 @menu
4401 * getifaddrs::
4402 * freeifaddrs::
4403 @end menu
4404
4405 @include glibc-functions/getifaddrs.texi
4406 @include glibc-functions/freeifaddrs.texi
4407
4408 @c @node Glibc inttypes.h
4409 @c @section Glibc Extensions to @code{<inttypes.h>}
4410
4411 @c @node Glibc iso646.h
4412 @c @section Glibc Extensions to @code{<iso646.h>}
4413
4414 @c @node Glibc langinfo.h
4415 @c @section Glibc Extensions to @code{<langinfo.h>}
4416
4417 @c @node Glibc libgen.h
4418 @c @section Glibc Extensions to @code{<libgen.h>}
4419
4420 @node Glibc libintl.h
4421 @section Glibc @code{<libintl.h>}
4422
4423 @menu
4424 * bind_textdomain_codeset::
4425 * bindtextdomain::
4426 * dcgettext::
4427 * dcngettext::
4428 * dgettext::
4429 * dngettext::
4430 * gettext::
4431 * ngettext::
4432 * textdomain::
4433 @end menu
4434
4435 @include glibc-functions/bind_textdomain_codeset.texi
4436 @include glibc-functions/bindtextdomain.texi
4437 @include glibc-functions/dcgettext.texi
4438 @include glibc-functions/dcngettext.texi
4439 @include glibc-functions/dgettext.texi
4440 @include glibc-functions/dngettext.texi
4441 @include glibc-functions/gettext.texi
4442 @include glibc-functions/ngettext.texi
4443 @include glibc-functions/textdomain.texi
4444
4445 @c @node Glibc limits.h
4446 @c @section Glibc Extensions to @code{<limits.h>}
4447
4448 @node Glibc link.h
4449 @section Glibc @code{<link.h>}
4450
4451 @menu
4452 * dl_iterate_phdr::
4453 @end menu
4454
4455 @include glibc-functions/dl_iterate_phdr.texi
4456
4457 @c @node Glibc locale.h
4458 @c @section Glibc Extensions to @code{<locale.h>}
4459
4460 @node Glibc malloc.h
4461 @section Glibc @code{<malloc.h>}
4462
4463 @menu
4464 * mallinfo::
4465 * malloc_get_state::
4466 * malloc_set_state::
4467 * malloc_stats::
4468 * malloc_trim::
4469 * malloc_usable_size::
4470 * mallopt::
4471 * memalign::
4472 * pvalloc::
4473 @end menu
4474
4475 @include glibc-functions/mallinfo.texi
4476 @include glibc-functions/malloc_get_state.texi
4477 @include glibc-functions/malloc_set_state.texi
4478 @include glibc-functions/malloc_stats.texi
4479 @include glibc-functions/malloc_trim.texi
4480 @include glibc-functions/malloc_usable_size.texi
4481 @include glibc-functions/mallopt.texi
4482 @include glibc-functions/memalign.texi
4483 @include glibc-functions/pvalloc.texi
4484
4485 @node Glibc math.h
4486 @section Glibc Extensions to @code{<math.h>}
4487
4488 @menu
4489 * drem::
4490 * dremf::
4491 * dreml::
4492 * exp10::
4493 * exp10f::
4494 * exp10l::
4495 * finite::
4496 * finitef::
4497 * finitel::
4498 * gamma::
4499 * gammaf::
4500 * gammal::
4501 * isinff::
4502 * isinfl::
4503 * isnanf::
4504 * isnanl::
4505 * j0f::
4506 * j0l::
4507 * j1f::
4508 * j1l::
4509 * jnf::
4510 * jnl::
4511 * lgamma_r::
4512 * lgammaf_r::
4513 * lgammal_r::
4514 * matherr::
4515 * pow10::
4516 * pow10f::
4517 * pow10l::
4518 * scalbf::
4519 * scalbl::
4520 * significand::
4521 * significandf::
4522 * significandl::
4523 * sincos::
4524 * sincosf::
4525 * sincosl::
4526 * y0f::
4527 * y0l::
4528 * y1f::
4529 * y1l::
4530 * ynf::
4531 * ynl::
4532 @end menu
4533
4534 @include glibc-functions/drem.texi
4535 @include glibc-functions/dremf.texi
4536 @include glibc-functions/dreml.texi
4537 @include glibc-functions/exp10.texi
4538 @include glibc-functions/exp10f.texi
4539 @include glibc-functions/exp10l.texi
4540 @include glibc-functions/finite.texi
4541 @include glibc-functions/finitef.texi
4542 @include glibc-functions/finitel.texi
4543 @include glibc-functions/gamma.texi
4544 @include glibc-functions/gammaf.texi
4545 @include glibc-functions/gammal.texi
4546 @include glibc-functions/isinff.texi
4547 @include glibc-functions/isinfl.texi
4548 @include glibc-functions/isnanf.texi
4549 @include glibc-functions/isnanl.texi
4550 @include glibc-functions/j0f.texi
4551 @include glibc-functions/j0l.texi
4552 @include glibc-functions/j1f.texi
4553 @include glibc-functions/j1l.texi
4554 @include glibc-functions/jnf.texi
4555 @include glibc-functions/jnl.texi
4556 @include glibc-functions/lgamma_r.texi
4557 @include glibc-functions/lgammaf_r.texi
4558 @include glibc-functions/lgammal_r.texi
4559 @include glibc-functions/matherr.texi
4560 @include glibc-functions/pow10.texi
4561 @include glibc-functions/pow10f.texi
4562 @include glibc-functions/pow10l.texi
4563 @include glibc-functions/scalbf.texi
4564 @include glibc-functions/scalbl.texi
4565 @include glibc-functions/significand.texi
4566 @include glibc-functions/significandf.texi
4567 @include glibc-functions/significandl.texi
4568 @include glibc-functions/sincos.texi
4569 @include glibc-functions/sincosf.texi
4570 @include glibc-functions/sincosl.texi
4571 @include glibc-functions/y0f.texi
4572 @include glibc-functions/y0l.texi
4573 @include glibc-functions/y1f.texi
4574 @include glibc-functions/y1l.texi
4575 @include glibc-functions/ynf.texi
4576 @include glibc-functions/ynl.texi
4577
4578 @node Glibc mcheck.h
4579 @section Glibc @code{<mcheck.h>}
4580
4581 @menu
4582 * mcheck::
4583 * mcheck_check_all::
4584 * mcheck_pedantic::
4585 * mprobe::
4586 * mtrace::
4587 * muntrace::
4588 @end menu
4589
4590 @include glibc-functions/mcheck.texi
4591 @include glibc-functions/mcheck_check_all.texi
4592 @include glibc-functions/mcheck_pedantic.texi
4593 @include glibc-functions/mprobe.texi
4594 @include glibc-functions/mtrace.texi
4595 @include glibc-functions/muntrace.texi
4596
4597 @c @node Glibc monetary.h
4598 @c @section Glibc Extensions to @code{<monetary.h>}
4599
4600 @node Glibc mntent.h
4601 @section Glibc @code{<mntent.h>}
4602
4603 @menu
4604 * addmntent::
4605 * endmntent::
4606 * getmntent::
4607 * getmntent_r::
4608 * hasmntopt::
4609 * setmntent::
4610 @end menu
4611
4612 @include glibc-functions/addmntent.texi
4613 @include glibc-functions/endmntent.texi
4614 @include glibc-functions/getmntent.texi
4615 @include glibc-functions/getmntent_r.texi
4616 @include glibc-functions/hasmntopt.texi
4617 @include glibc-functions/setmntent.texi
4618
4619 @c @node Glibc mqueue.h
4620 @c @section Glibc Extensions to @code{<mqueue.h>}
4621
4622 @c @node Glibc ndbm.h
4623 @c @section Glibc Extensions to @code{<ndbm.h>}
4624
4625 @node Glibc netdb.h
4626 @section Glibc Extensions to @code{<netdb.h>}
4627
4628 @menu
4629 * endnetgrent::
4630 * gethostbyaddr_r::
4631 * gethostbyname2::
4632 * gethostbyname2_r::
4633 * gethostbyname_r::
4634 * gethostent_r::
4635 * getnetbyaddr_r::
4636 * getnetbyname_r::
4637 * getnetent_r::
4638 * getnetgrent::
4639 * getnetgrent_r::
4640 * getprotobyname_r::
4641 * getprotobynumber_r::
4642 * getprotoent_r::
4643 * getservbyname_r::
4644 * getservbyport_r::
4645 * getservent_r::
4646 * herror::
4647 * hstrerror::
4648 * innetgr::
4649 * rcmd::
4650 * rcmd_af::
4651 * rexec::
4652 * rexec_af::
4653 * rresvport::
4654 * rresvport_af::
4655 * ruserok::
4656 * ruserok_af::
4657 * setnetgrent::
4658 @end menu
4659
4660 @include glibc-functions/endnetgrent.texi
4661 @include glibc-functions/gethostbyaddr_r.texi
4662 @include glibc-functions/gethostbyname2.texi
4663 @include glibc-functions/gethostbyname2_r.texi
4664 @include glibc-functions/gethostbyname_r.texi
4665 @include glibc-functions/gethostent_r.texi
4666 @include glibc-functions/getnetbyaddr_r.texi
4667 @include glibc-functions/getnetbyname_r.texi
4668 @include glibc-functions/getnetent_r.texi
4669 @include glibc-functions/getnetgrent.texi
4670 @include glibc-functions/getnetgrent_r.texi
4671 @include glibc-functions/getprotobyname_r.texi
4672 @include glibc-functions/getprotobynumber_r.texi
4673 @include glibc-functions/getprotoent_r.texi
4674 @include glibc-functions/getservbyname_r.texi
4675 @include glibc-functions/getservbyport_r.texi
4676 @include glibc-functions/getservent_r.texi
4677 @include glibc-functions/herror.texi
4678 @include glibc-functions/hstrerror.texi
4679 @include glibc-functions/innetgr.texi
4680 @include glibc-functions/rcmd.texi
4681 @include glibc-functions/rcmd_af.texi
4682 @include glibc-functions/rexec.texi
4683 @include glibc-functions/rexec_af.texi
4684 @include glibc-functions/rresvport.texi
4685 @include glibc-functions/rresvport_af.texi
4686 @include glibc-functions/ruserok.texi
4687 @include glibc-functions/ruserok_af.texi
4688 @include glibc-functions/setnetgrent.texi
4689
4690 @node Glibc netinet/ether.h
4691 @section Glibc @code{<netinet/ether.h>}
4692
4693 @menu
4694 * ether_aton::
4695 * ether_aton_r::
4696 * ether_hostton::
4697 * ether_line::
4698 * ether_ntoa::
4699 * ether_ntoa_r::
4700 * ether_ntohost::
4701 @end menu
4702
4703 @include glibc-functions/ether_aton.texi
4704 @include glibc-functions/ether_aton_r.texi
4705 @include glibc-functions/ether_hostton.texi
4706 @include glibc-functions/ether_line.texi
4707 @include glibc-functions/ether_ntoa.texi
4708 @include glibc-functions/ether_ntoa_r.texi
4709 @include glibc-functions/ether_ntohost.texi
4710
4711 @node Glibc netinet/in.h
4712 @section Glibc Extensions to @code{<netinet/in.h>}
4713
4714 @menu
4715 * bindresvport::
4716 * getipv4sourcefilter::
4717 * getsourcefilter::
4718 * in6addr_any::
4719 * in6addr_loopback::
4720 * inet6_option_alloc::
4721 * inet6_option_append::
4722 * inet6_option_find::
4723 * inet6_option_init::
4724 * inet6_option_next::
4725 * inet6_option_space::
4726 * setipv4sourcefilter::
4727 * setsourcefilter::
4728 @end menu
4729
4730 @include glibc-functions/bindresvport.texi
4731 @include glibc-functions/getipv4sourcefilter.texi
4732 @include glibc-functions/getsourcefilter.texi
4733 @include glibc-functions/in6addr_any.texi
4734 @include glibc-functions/in6addr_loopback.texi
4735 @include glibc-functions/inet6_option_alloc.texi
4736 @include glibc-functions/inet6_option_append.texi
4737 @include glibc-functions/inet6_option_find.texi
4738 @include glibc-functions/inet6_option_init.texi
4739 @include glibc-functions/inet6_option_next.texi
4740 @include glibc-functions/inet6_option_space.texi
4741 @include glibc-functions/setipv4sourcefilter.texi
4742 @include glibc-functions/setsourcefilter.texi
4743
4744 @c @node Glibc nl_types.h
4745 @c @section Glibc Extensions to @code{<nl_types.h>}
4746
4747 @node Glibc obstack.h
4748 @section Glibc @code{<obstack.h>}
4749
4750 @menu
4751 * obstack_alloc_failed_handler::
4752 * obstack_exit_failure::
4753 * obstack_free::
4754 * obstack_printf::
4755 * obstack_vprintf::
4756 @end menu
4757
4758 @include glibc-functions/obstack_alloc_failed_handler.texi
4759 @include glibc-functions/obstack_exit_failure.texi
4760 @include glibc-functions/obstack_free.texi
4761 @include glibc-functions/obstack_printf.texi
4762 @include glibc-functions/obstack_vprintf.texi
4763
4764 @c @node Glibc paths.h
4765 @c @section Glibc @code{<paths.h>}
4766
4767 @c @node Glibc poll.h
4768 @c @section Glibc Extensions to @code{<poll.h>}
4769
4770 @node Glibc printf.h
4771 @section Glibc @code{<printf.h>}
4772
4773 @menu
4774 * parse_printf_format::
4775 * printf_size::
4776 * printf_size_info::
4777 * register_printf_function::
4778 @end menu
4779
4780 @include glibc-functions/parse_printf_format.texi
4781 @include glibc-functions/printf_size.texi
4782 @include glibc-functions/printf_size_info.texi
4783 @include glibc-functions/register_printf_function.texi
4784
4785 @node Glibc pthread.h
4786 @section Glibc Extensions to @code{<pthread.h>}
4787
4788 @menu
4789 * pthread_getattr_np::
4790 * pthread_kill_other_threads_np::
4791 * pthread_rwlockattr_getkind_np::
4792 * pthread_rwlockattr_setkind_np::
4793 * pthread_yield::
4794 @end menu
4795
4796 @include glibc-functions/pthread_getattr_np.texi
4797 @include glibc-functions/pthread_kill_other_threads_np.texi
4798 @include glibc-functions/pthread_rwlockattr_getkind_np.texi
4799 @include glibc-functions/pthread_rwlockattr_setkind_np.texi
4800 @include glibc-functions/pthread_yield.texi
4801
4802 @node Glibc pty.h
4803 @section Glibc @code{<pty.h>}
4804
4805 @menu
4806 * forkpty::
4807 * openpty::
4808 @end menu
4809
4810 @include glibc-functions/forkpty.texi
4811 @include glibc-functions/openpty.texi
4812
4813 @node Glibc pwd.h
4814 @section Glibc Extensions to @code{<pwd.h>}
4815
4816 @menu
4817 * fgetpwent::
4818 * fgetpwent_r::
4819 * getpw::
4820 * getpwent_r::
4821 * putpwent::
4822 @end menu
4823
4824 @include glibc-functions/fgetpwent.texi
4825 @include glibc-functions/fgetpwent_r.texi
4826 @include glibc-functions/getpw.texi
4827 @include glibc-functions/getpwent_r.texi
4828 @include glibc-functions/putpwent.texi
4829
4830 @node Glibc regex.h
4831 @section Glibc Extensions to @code{<regex.h>}
4832
4833 @menu
4834 * re_comp::
4835 * re_compile_fastmap::
4836 * re_compile_pattern::
4837 * re_exec::
4838 * re_match::
4839 * re_match_2::
4840 * re_search::
4841 * re_search_2::
4842 * re_set_registers::
4843 * re_set_syntax::
4844 * re_syntax_options::
4845 @end menu
4846
4847 @include glibc-functions/re_comp.texi
4848 @include glibc-functions/re_compile_fastmap.texi
4849 @include glibc-functions/re_compile_pattern.texi
4850 @include glibc-functions/re_exec.texi
4851 @include glibc-functions/re_match.texi
4852 @include glibc-functions/re_match_2.texi
4853 @include glibc-functions/re_search.texi
4854 @include glibc-functions/re_search_2.texi
4855 @include glibc-functions/re_set_registers.texi
4856 @include glibc-functions/re_set_syntax.texi
4857 @include glibc-functions/re_syntax_options.texi
4858
4859 @node Glibc regexp.h
4860 @section Glibc @code{<regexp.h>}
4861
4862 @menu
4863 * advance::
4864 * loc1::
4865 * loc2::
4866 * locs::
4867 * step::
4868 @end menu
4869
4870 @include glibc-functions/advance.texi
4871 @include glibc-functions/loc1.texi
4872 @include glibc-functions/loc2.texi
4873 @include glibc-functions/locs.texi
4874 @include glibc-functions/step.texi
4875
4876 @node Glibc resolv.h
4877 @section Glibc @code{<resolv.h>}
4878
4879 @menu
4880 * dn_expand::
4881 * res_init::
4882 * res_mkquery::
4883 * res_query::
4884 * res_querydomain::
4885 * res_search::
4886 @end menu
4887
4888 @include glibc-functions/dn_expand.texi
4889 @include glibc-functions/res_init.texi
4890 @include glibc-functions/res_mkquery.texi
4891 @include glibc-functions/res_query.texi
4892 @include glibc-functions/res_querydomain.texi
4893 @include glibc-functions/res_search.texi
4894
4895 @node Glibc rpc/auth.h
4896 @section Glibc @code{<rpc/auth.h>}
4897
4898 @menu
4899 * authdes_create::
4900 * authdes_pk_create::
4901 * authnone_create::
4902 * authunix_create::
4903 * authunix_create_default::
4904 * getnetname::
4905 * host2netname::
4906 * key_decryptsession::
4907 * key_decryptsession_pk::
4908 * key_encryptsession::
4909 * key_encryptsession_pk::
4910 * key_gendes::
4911 * key_get_conv::
4912 * key_secretkey_is_set::
4913 * key_setsecret::
4914 * netname2host::
4915 * netname2user::
4916 * user2netname::
4917 * xdr_des_block::
4918 * xdr_opaque_auth::
4919 @end menu
4920
4921 @include glibc-functions/authdes_create.texi
4922 @include glibc-functions/authdes_pk_create.texi
4923 @include glibc-functions/authnone_create.texi
4924 @include glibc-functions/authunix_create.texi
4925 @include glibc-functions/authunix_create_default.texi
4926 @include glibc-functions/getnetname.texi
4927 @include glibc-functions/host2netname.texi
4928 @include glibc-functions/key_decryptsession.texi
4929 @include glibc-functions/key_decryptsession_pk.texi
4930 @include glibc-functions/key_encryptsession.texi
4931 @include glibc-functions/key_encryptsession_pk.texi
4932 @include glibc-functions/key_gendes.texi
4933 @include glibc-functions/key_get_conv.texi
4934 @include glibc-functions/key_secretkey_is_set.texi
4935 @include glibc-functions/key_setsecret.texi
4936 @include glibc-functions/netname2host.texi
4937 @include glibc-functions/netname2user.texi
4938 @include glibc-functions/user2netname.texi
4939 @include glibc-functions/xdr_des_block.texi
4940 @include glibc-functions/xdr_opaque_auth.texi
4941
4942 @node Glibc rpc/auth_des.h
4943 @section Glibc @code{<rpc/auth_des.h>}
4944
4945 @menu
4946 * authdes_getucred::
4947 * getpublickey::
4948 * getsecretkey::
4949 * rtime::
4950 @end menu
4951
4952 @include glibc-functions/authdes_getucred.texi
4953 @include glibc-functions/getpublickey.texi
4954 @include glibc-functions/getsecretkey.texi
4955 @include glibc-functions/rtime.texi
4956
4957 @node Glibc rpc/auth_unix.h
4958 @section Glibc @code{<rpc/auth_unix.h>}
4959
4960 @menu
4961 * xdr_authunix_parms::
4962 @end menu
4963
4964 @include glibc-functions/xdr_authunix_parms.texi
4965
4966 @node Glibc rpc/clnt.h
4967 @section Glibc @code{<rpc/clnt.h>}
4968
4969 @menu
4970 * callrpc::
4971 * clnt_create::
4972 * clnt_pcreateerror::
4973 * clnt_perrno::
4974 * clnt_perror::
4975 * clnt_spcreateerror::
4976 * clnt_sperrno::
4977 * clnt_sperror::
4978 * clntraw_create::
4979 * clnttcp_create::
4980 * clntudp_bufcreate::
4981 * clntudp_create::
4982 * clntunix_create::
4983 * get_myaddress::
4984 * getrpcport::
4985 * rpc_createerr::
4986 @end menu
4987
4988 @include glibc-functions/callrpc.texi
4989 @include glibc-functions/clnt_create.texi
4990 @include glibc-functions/clnt_pcreateerror.texi
4991 @include glibc-functions/clnt_perrno.texi
4992 @include glibc-functions/clnt_perror.texi
4993 @include glibc-functions/clnt_spcreateerror.texi
4994 @include glibc-functions/clnt_sperrno.texi
4995 @include glibc-functions/clnt_sperror.texi
4996 @include glibc-functions/clntraw_create.texi
4997 @include glibc-functions/clnttcp_create.texi
4998 @include glibc-functions/clntudp_bufcreate.texi
4999 @include glibc-functions/clntudp_create.texi
5000 @include glibc-functions/clntunix_create.texi
5001 @include glibc-functions/get_myaddress.texi
5002 @include glibc-functions/getrpcport.texi
5003 @include glibc-functions/rpc_createerr.texi
5004
5005 @node Glibc rpc/des_crypt.h
5006 @section Glibc @code{<rpc/des_crypt.h>}
5007
5008 @menu
5009 * cbc_crypt::
5010 * des_setparity::
5011 * ecb_crypt::
5012 @end menu
5013
5014 @include glibc-functions/cbc_crypt.texi
5015 @include glibc-functions/des_setparity.texi
5016 @include glibc-functions/ecb_crypt.texi
5017
5018 @node Glibc rpc/key_prot.h
5019 @section Glibc @code{<rpc/key_prot.h>}
5020
5021 @menu
5022 * xdr_cryptkeyarg::
5023 * xdr_cryptkeyarg2::
5024 * xdr_cryptkeyres::
5025 * xdr_getcredres::
5026 * xdr_key_netstarg::
5027 * xdr_key_netstres::
5028 * xdr_keybuf::
5029 * xdr_keystatus::
5030 * xdr_netnamestr::
5031 * xdr_unixcred::
5032 @end menu
5033
5034 @include glibc-functions/xdr_cryptkeyarg.texi
5035 @include glibc-functions/xdr_cryptkeyarg2.texi
5036 @include glibc-functions/xdr_cryptkeyres.texi
5037 @include glibc-functions/xdr_getcredres.texi
5038 @include glibc-functions/xdr_key_netstarg.texi
5039 @include glibc-functions/xdr_key_netstres.texi
5040 @include glibc-functions/xdr_keybuf.texi
5041 @include glibc-functions/xdr_keystatus.texi
5042 @include glibc-functions/xdr_netnamestr.texi
5043 @include glibc-functions/xdr_unixcred.texi
5044
5045 @node Glibc rpc/netdb.h
5046 @section Glibc @code{<rpc/netdb.h>}
5047
5048 @menu
5049 * endrpcent::
5050 * getrpcbyname::
5051 * getrpcbyname_r::
5052 * getrpcbynumber::
5053 * getrpcbynumber_r::
5054 * getrpcent::
5055 * getrpcent_r::
5056 * setrpcent::
5057 @end menu
5058
5059 @include glibc-functions/endrpcent.texi
5060 @include glibc-functions/getrpcbyname.texi
5061 @include glibc-functions/getrpcbyname_r.texi
5062 @include glibc-functions/getrpcbynumber.texi
5063 @include glibc-functions/getrpcbynumber_r.texi
5064 @include glibc-functions/getrpcent.texi
5065 @include glibc-functions/getrpcent_r.texi
5066 @include glibc-functions/setrpcent.texi
5067
5068 @node Glibc rpc/pmap_clnt.h
5069 @section Glibc @code{<rpc/pmap_clnt.h>}
5070
5071 @menu
5072 * clnt_broadcast::
5073 * pmap_getmaps::
5074 * pmap_getport::
5075 * pmap_rmtcall::
5076 * pmap_set::
5077 * pmap_unset::
5078 @end menu
5079
5080 @include glibc-functions/clnt_broadcast.texi
5081 @include glibc-functions/pmap_getmaps.texi
5082 @include glibc-functions/pmap_getport.texi
5083 @include glibc-functions/pmap_rmtcall.texi
5084 @include glibc-functions/pmap_set.texi
5085 @include glibc-functions/pmap_unset.texi
5086
5087 @node Glibc rpc/pmap_prot.h
5088 @section Glibc @code{<rpc/pmap_prot.h>}
5089
5090 @menu
5091 * xdr_pmap::
5092 * xdr_pmaplist::
5093 @end menu
5094
5095 @include glibc-functions/xdr_pmap.texi
5096 @include glibc-functions/xdr_pmaplist.texi
5097
5098 @node Glibc rpc/pmap_rmt.h
5099 @section Glibc @code{<rpc/pmap_rmt.h>}
5100
5101 @menu
5102 * xdr_rmtcall_args::
5103 * xdr_rmtcallres::
5104 @end menu
5105
5106 @include glibc-functions/xdr_rmtcall_args.texi
5107 @include glibc-functions/xdr_rmtcallres.texi
5108
5109 @node Glibc rpc/rpc_msg.h
5110 @section Glibc @code{<rpc/rpc_msg.h>}
5111
5112 @menu
5113 * xdr_callhdr::
5114 * xdr_callmsg::
5115 * xdr_replymsg::
5116 @end menu
5117
5118 @include glibc-functions/xdr_callhdr.texi
5119 @include glibc-functions/xdr_callmsg.texi
5120 @include glibc-functions/xdr_replymsg.texi
5121
5122 @node Glibc rpc/svc.h
5123 @section Glibc @code{<rpc/svc.h>}
5124
5125 @menu
5126 * svc_exit::
5127 * svc_fdset::
5128 * svc_getreq::
5129 * svc_getreq_common::
5130 * svc_getreq_poll::
5131 * svc_getreqset::
5132 * svc_max_pollfd::
5133 * svc_pollfd::
5134 * svc_register::
5135 * svc_run::
5136 * svc_sendreply::
5137 * svc_unregister::
5138 * svcerr_auth::
5139 * svcerr_decode::
5140 * svcerr_noproc::
5141 * svcerr_noprog::
5142 * svcerr_progvers::
5143 * svcerr_systemerr::
5144 * svcerr_weakauth::
5145 * svcraw_create::
5146 * svctcp_create::
5147 * svcudp_bufcreate::
5148 * svcudp_create::
5149 * svcunix_create::
5150 * xprt_register::
5151 * xprt_unregister::
5152 @end menu
5153
5154 @include glibc-functions/svc_exit.texi
5155 @include glibc-functions/svc_fdset.texi
5156 @include glibc-functions/svc_getreq.texi
5157 @include glibc-functions/svc_getreq_common.texi
5158 @include glibc-functions/svc_getreq_poll.texi
5159 @include glibc-functions/svc_getreqset.texi
5160 @include glibc-functions/svc_max_pollfd.texi
5161 @include glibc-functions/svc_pollfd.texi
5162 @include glibc-functions/svc_register.texi
5163 @include glibc-functions/svc_run.texi
5164 @include glibc-functions/svc_sendreply.texi
5165 @include glibc-functions/svc_unregister.texi
5166 @include glibc-functions/svcerr_auth.texi
5167 @include glibc-functions/svcerr_decode.texi
5168 @include glibc-functions/svcerr_noproc.texi
5169 @include glibc-functions/svcerr_noprog.texi
5170 @include glibc-functions/svcerr_progvers.texi
5171 @include glibc-functions/svcerr_systemerr.texi
5172 @include glibc-functions/svcerr_weakauth.texi
5173 @include glibc-functions/svcraw_create.texi
5174 @include glibc-functions/svctcp_create.texi
5175 @include glibc-functions/svcudp_bufcreate.texi
5176 @include glibc-functions/svcudp_create.texi
5177 @include glibc-functions/svcunix_create.texi
5178 @include glibc-functions/xprt_register.texi
5179 @include glibc-functions/xprt_unregister.texi
5180
5181 @node Glibc rpc/xdr.h
5182 @section Glibc @code{<rpc/xdr.h>}
5183
5184 @menu
5185 * xdr_array::
5186 * xdr_bool::
5187 * xdr_bytes::
5188 * xdr_char::
5189 * xdr_double::
5190 * xdr_enum::
5191 * xdr_float::
5192 * xdr_free::
5193 * xdr_hyper::
5194 * xdr_int::
5195 * xdr_int16_t::
5196 * xdr_int32_t::
5197 * xdr_int64_t::
5198 * xdr_int8_t::
5199 * xdr_long::
5200 * xdr_longlong_t::
5201 * xdr_netobj::
5202 * xdr_opaque::
5203 * xdr_pointer::
5204 * xdr_quad_t::
5205 * xdr_reference::
5206 * xdr_short::
5207 * xdr_sizeof::
5208 * xdr_string::
5209 * xdr_u_char::
5210 * xdr_u_hyper::
5211 * xdr_u_int::
5212 * xdr_u_long::
5213 * xdr_u_longlong_t::
5214 * xdr_u_quad_t::
5215 * xdr_u_short::
5216 * xdr_uint16_t::
5217 * xdr_uint32_t::
5218 * xdr_uint64_t::
5219 * xdr_uint8_t::
5220 * xdr_union::
5221 * xdr_vector::
5222 * xdr_void::
5223 * xdr_wrapstring::
5224 * xdrmem_create::
5225 * xdrrec_create::
5226 * xdrrec_endofrecord::
5227 * xdrrec_eof::
5228 * xdrrec_skiprecord::
5229 * xdrstdio_create::
5230 @end menu
5231
5232 @include glibc-functions/xdr_array.texi
5233 @include glibc-functions/xdr_bool.texi
5234 @include glibc-functions/xdr_bytes.texi
5235 @include glibc-functions/xdr_char.texi
5236 @include glibc-functions/xdr_double.texi
5237 @include glibc-functions/xdr_enum.texi
5238 @include glibc-functions/xdr_float.texi
5239 @include glibc-functions/xdr_free.texi
5240 @include glibc-functions/xdr_hyper.texi
5241 @include glibc-functions/xdr_int.texi
5242 @include glibc-functions/xdr_int16_t.texi
5243 @include glibc-functions/xdr_int32_t.texi
5244 @include glibc-functions/xdr_int64_t.texi
5245 @include glibc-functions/xdr_int8_t.texi
5246 @include glibc-functions/xdr_long.texi
5247 @include glibc-functions/xdr_longlong_t.texi
5248 @include glibc-functions/xdr_netobj.texi
5249 @include glibc-functions/xdr_opaque.texi
5250 @include glibc-functions/xdr_pointer.texi
5251 @include glibc-functions/xdr_quad_t.texi
5252 @include glibc-functions/xdr_reference.texi
5253 @include glibc-functions/xdr_short.texi
5254 @include glibc-functions/xdr_sizeof.texi
5255 @include glibc-functions/xdr_string.texi
5256 @include glibc-functions/xdr_u_char.texi
5257 @include glibc-functions/xdr_u_hyper.texi
5258 @include glibc-functions/xdr_u_int.texi
5259 @include glibc-functions/xdr_u_long.texi
5260 @include glibc-functions/xdr_u_longlong_t.texi
5261 @include glibc-functions/xdr_u_quad_t.texi
5262 @include glibc-functions/xdr_u_short.texi
5263 @include glibc-functions/xdr_uint16_t.texi
5264 @include glibc-functions/xdr_uint32_t.texi
5265 @include glibc-functions/xdr_uint64_t.texi
5266 @include glibc-functions/xdr_uint8_t.texi
5267 @include glibc-functions/xdr_union.texi
5268 @include glibc-functions/xdr_vector.texi
5269 @include glibc-functions/xdr_void.texi
5270 @include glibc-functions/xdr_wrapstring.texi
5271 @include glibc-functions/xdrmem_create.texi
5272 @include glibc-functions/xdrrec_create.texi
5273 @include glibc-functions/xdrrec_endofrecord.texi
5274 @include glibc-functions/xdrrec_eof.texi
5275 @include glibc-functions/xdrrec_skiprecord.texi
5276 @include glibc-functions/xdrstdio_create.texi
5277
5278 @node Glibc rpcsvc/nislib.h
5279 @section Glibc @code{<rpcsvc/nislib.h>}
5280
5281 @menu
5282 * nis_add::
5283 * nis_add_entry::
5284 * nis_addmember::
5285 * nis_checkpoint::
5286 * nis_clone_object::
5287 * nis_creategroup::
5288 * nis_destroy_object::
5289 * nis_destroygroup::
5290 * nis_dir_cmp::
5291 * nis_domain_of::
5292 * nis_domain_of_r::
5293 * nis_first_entry::
5294 * nis_freenames::
5295 * nis_freeresult::
5296 * nis_freeservlist::
5297 * nis_freetags::
5298 * nis_getnames::
5299 * nis_getservlist::
5300 * nis_ismember::
5301 * nis_leaf_of::
5302 * nis_leaf_of_r::
5303 * nis_lerror::
5304 * nis_list::
5305 * nis_local_directory::
5306 * nis_local_group::
5307 * nis_local_host::
5308 * nis_local_principal::
5309 * nis_lookup::
5310 * nis_mkdir::
5311 * nis_modify::
5312 * nis_modify_entry::
5313 * nis_name_of::
5314 * nis_name_of_r::
5315 * nis_next_entry::
5316 * nis_perror::
5317 * nis_ping::
5318 * nis_print_directory::
5319 * nis_print_entry::
5320 * nis_print_group::
5321 * nis_print_group_entry::
5322 * nis_print_link::
5323 * nis_print_object::
5324 * nis_print_result::
5325 * nis_print_rights::
5326 * nis_print_table::
5327 * nis_remove::
5328 * nis_remove_entry::
5329 * nis_removemember::
5330 * nis_rmdir::
5331 * nis_servstate::
5332 * nis_sperrno::
5333 * nis_sperror::
5334 * nis_sperror_r::
5335 * nis_stats::
5336 * nis_verifygroup::
5337 @end menu
5338
5339 @include glibc-functions/nis_add.texi
5340 @include glibc-functions/nis_add_entry.texi
5341 @include glibc-functions/nis_addmember.texi
5342 @include glibc-functions/nis_checkpoint.texi
5343 @include glibc-functions/nis_clone_object.texi
5344 @include glibc-functions/nis_creategroup.texi
5345 @include glibc-functions/nis_destroy_object.texi
5346 @include glibc-functions/nis_destroygroup.texi
5347 @include glibc-functions/nis_dir_cmp.texi
5348 @include glibc-functions/nis_domain_of.texi
5349 @include glibc-functions/nis_domain_of_r.texi
5350 @include glibc-functions/nis_first_entry.texi
5351 @include glibc-functions/nis_freenames.texi
5352 @include glibc-functions/nis_freeresult.texi
5353 @include glibc-functions/nis_freeservlist.texi
5354 @include glibc-functions/nis_freetags.texi
5355 @include glibc-functions/nis_getnames.texi
5356 @include glibc-functions/nis_getservlist.texi
5357 @include glibc-functions/nis_ismember.texi
5358 @include glibc-functions/nis_leaf_of.texi
5359 @include glibc-functions/nis_leaf_of_r.texi
5360 @include glibc-functions/nis_lerror.texi
5361 @include glibc-functions/nis_list.texi
5362 @include glibc-functions/nis_local_directory.texi
5363 @include glibc-functions/nis_local_group.texi
5364 @include glibc-functions/nis_local_host.texi
5365 @include glibc-functions/nis_local_principal.texi
5366 @include glibc-functions/nis_lookup.texi
5367 @include glibc-functions/nis_mkdir.texi
5368 @include glibc-functions/nis_modify.texi
5369 @include glibc-functions/nis_modify_entry.texi
5370 @include glibc-functions/nis_name_of.texi
5371 @include glibc-functions/nis_name_of_r.texi
5372 @include glibc-functions/nis_next_entry.texi
5373 @include glibc-functions/nis_perror.texi
5374 @include glibc-functions/nis_ping.texi
5375 @include glibc-functions/nis_print_directory.texi
5376 @include glibc-functions/nis_print_entry.texi
5377 @include glibc-functions/nis_print_group.texi
5378 @include glibc-functions/nis_print_group_entry.texi
5379 @include glibc-functions/nis_print_link.texi
5380 @include glibc-functions/nis_print_object.texi
5381 @include glibc-functions/nis_print_result.texi
5382 @include glibc-functions/nis_print_rights.texi
5383 @include glibc-functions/nis_print_table.texi
5384 @include glibc-functions/nis_remove.texi
5385 @include glibc-functions/nis_remove_entry.texi
5386 @include glibc-functions/nis_removemember.texi
5387 @include glibc-functions/nis_rmdir.texi
5388 @include glibc-functions/nis_servstate.texi
5389 @include glibc-functions/nis_sperrno.texi
5390 @include glibc-functions/nis_sperror.texi
5391 @include glibc-functions/nis_sperror_r.texi
5392 @include glibc-functions/nis_stats.texi
5393 @include glibc-functions/nis_verifygroup.texi
5394
5395 @node Glibc rpcsvc/nis_callback.h
5396 @section Glibc @code{<rpcsvc/nis_callback.h>}
5397
5398 @menu
5399 * xdr_cback_data::
5400 * xdr_obj_p::
5401 @end menu
5402
5403 @include glibc-functions/xdr_cback_data.texi
5404 @include glibc-functions/xdr_obj_p.texi
5405
5406 @node Glibc rpcsvc/yp.h
5407 @section Glibc @code{<rpcsvc/yp.h>}
5408
5409 @menu
5410 * xdr_domainname::
5411 * xdr_keydat::
5412 * xdr_mapname::
5413 * xdr_peername::
5414 * xdr_valdat::
5415 * xdr_ypbind_binding::
5416 * xdr_ypbind_resp::
5417 * xdr_ypbind_resptype::
5418 * xdr_ypbind_setdom::
5419 * xdr_ypmap_parms::
5420 * xdr_ypmaplist::
5421 * xdr_yppush_status::
5422 * xdr_yppushresp_xfr::
5423 * xdr_ypreq_key::
5424 * xdr_ypreq_nokey::
5425 * xdr_ypreq_xfr::
5426 * xdr_ypresp_all::
5427 * xdr_ypresp_key_val::
5428 * xdr_ypresp_maplist::
5429 * xdr_ypresp_master::
5430 * xdr_ypresp_order::
5431 * xdr_ypresp_val::
5432 * xdr_ypresp_xfr::
5433 * xdr_ypstat::
5434 * xdr_ypxfrstat::
5435 @end menu
5436
5437 @include glibc-functions/xdr_domainname.texi
5438 @include glibc-functions/xdr_keydat.texi
5439 @include glibc-functions/xdr_mapname.texi
5440 @include glibc-functions/xdr_peername.texi
5441 @include glibc-functions/xdr_valdat.texi
5442 @include glibc-functions/xdr_ypbind_binding.texi
5443 @include glibc-functions/xdr_ypbind_resp.texi
5444 @include glibc-functions/xdr_ypbind_resptype.texi
5445 @include glibc-functions/xdr_ypbind_setdom.texi
5446 @include glibc-functions/xdr_ypmap_parms.texi
5447 @include glibc-functions/xdr_ypmaplist.texi
5448 @include glibc-functions/xdr_yppush_status.texi
5449 @include glibc-functions/xdr_yppushresp_xfr.texi
5450 @include glibc-functions/xdr_ypreq_key.texi
5451 @include glibc-functions/xdr_ypreq_nokey.texi
5452 @include glibc-functions/xdr_ypreq_xfr.texi
5453 @include glibc-functions/xdr_ypresp_all.texi
5454 @include glibc-functions/xdr_ypresp_key_val.texi
5455 @include glibc-functions/xdr_ypresp_maplist.texi
5456 @include glibc-functions/xdr_ypresp_master.texi
5457 @include glibc-functions/xdr_ypresp_order.texi
5458 @include glibc-functions/xdr_ypresp_val.texi
5459 @include glibc-functions/xdr_ypresp_xfr.texi
5460 @include glibc-functions/xdr_ypstat.texi
5461 @include glibc-functions/xdr_ypxfrstat.texi
5462
5463 @node Glibc rpcsvc/yp_prot.h
5464 @section Glibc @code{<rpcsvc/yp_prot.h>}
5465
5466 @menu
5467 * xdr_ypall::
5468 @end menu
5469
5470 @include glibc-functions/xdr_ypall.texi
5471
5472 @node Glibc rpcsvc/ypclnt.h
5473 @section Glibc @code{<rpcsvc/ypclnt.h>}
5474
5475 @menu
5476 * yp_all::
5477 * yp_bind::
5478 * yp_first::
5479 * yp_get_default_domain::
5480 * yp_master::
5481 * yp_match::
5482 * yp_next::
5483 * yp_order::
5484 * yp_unbind::
5485 * yp_update::
5486 * ypbinderr_string::
5487 * yperr_string::
5488 * ypprot_err::
5489 @end menu
5490
5491 @include glibc-functions/yp_all.texi
5492 @include glibc-functions/yp_bind.texi
5493 @include glibc-functions/yp_first.texi
5494 @include glibc-functions/yp_get_default_domain.texi
5495 @include glibc-functions/yp_master.texi
5496 @include glibc-functions/yp_match.texi
5497 @include glibc-functions/yp_next.texi
5498 @include glibc-functions/yp_order.texi
5499 @include glibc-functions/yp_unbind.texi
5500 @include glibc-functions/yp_update.texi
5501 @include glibc-functions/ypbinderr_string.texi
5502 @include glibc-functions/yperr_string.texi
5503 @include glibc-functions/ypprot_err.texi
5504
5505 @node Glibc rpcsvc/ypupd.h
5506 @section Glibc @code{<rpcsvc/ypupd.h>}
5507
5508 @menu
5509 * xdr_yp_buf::
5510 * xdr_ypdelete_args::
5511 * xdr_ypupdate_args::
5512 @end menu
5513
5514 @include glibc-functions/xdr_yp_buf.texi
5515 @include glibc-functions/xdr_ypdelete_args.texi
5516 @include glibc-functions/xdr_ypupdate_args.texi
5517
5518 @node Glibc sched.h
5519 @section Glibc Extensions to @code{<sched.h>}
5520
5521 @menu
5522 * clone::
5523 * sched_getaffinity::
5524 * sched_setaffinity::
5525 @end menu
5526
5527 @include glibc-functions/clone.texi
5528 @include glibc-functions/sched_getaffinity.texi
5529 @include glibc-functions/sched_setaffinity.texi
5530
5531 @node Glibc search.h
5532 @section Glibc Extensions to @code{<search.h>}
5533
5534 @menu
5535 * hcreate_r::
5536 * hdestroy_r::
5537 * hsearch_r::
5538 * tdestroy::
5539 @end menu
5540
5541 @include glibc-functions/hcreate_r.texi
5542 @include glibc-functions/hdestroy_r.texi
5543 @include glibc-functions/hsearch_r.texi
5544 @include glibc-functions/tdestroy.texi
5545
5546 @node Glibc selinux/selinux.h
5547 @section Glibc Extensions to @code{<selinux/selinux.h>}
5548
5549 @menu
5550 * fgetfilecon::
5551 * getfilecon::
5552 * lgetfilecon::
5553 @end menu
5554
5555 @include glibc-functions/getfilecon-desc.texi
5556 @include glibc-functions/fgetfilecon.texi
5557 @include glibc-functions/getfilecon.texi
5558 @include glibc-functions/lgetfilecon.texi
5559
5560 @c @node Glibc semaphore.h
5561 @c @section Glibc Extensions to @code{<semaphore.h>}
5562
5563 @c @node Glibc setjmp.h
5564 @c @section Glibc Extensions to @code{<setjmp.h>}
5565
5566 @node Glibc shadow.h
5567 @section Glibc @code{<shadow.h>}
5568
5569 @menu
5570 * endspent::
5571 * fgetspent::
5572 * fgetspent_r::
5573 * getspent::
5574 * getspent_r::
5575 * getspnam::
5576 * getspnam_r::
5577 * lckpwdf::
5578 * putspent::
5579 * setspent::
5580 * sgetspent::
5581 * sgetspent_r::
5582 * ulckpwdf::
5583 @end menu
5584
5585 @include glibc-functions/endspent.texi
5586 @include glibc-functions/fgetspent.texi
5587 @include glibc-functions/fgetspent_r.texi
5588 @include glibc-functions/getspent.texi
5589 @include glibc-functions/getspent_r.texi
5590 @include glibc-functions/getspnam.texi
5591 @include glibc-functions/getspnam_r.texi
5592 @include glibc-functions/lckpwdf.texi
5593 @include glibc-functions/putspent.texi
5594 @include glibc-functions/setspent.texi
5595 @include glibc-functions/sgetspent.texi
5596 @include glibc-functions/sgetspent_r.texi
5597 @include glibc-functions/ulckpwdf.texi
5598
5599 @node Glibc signal.h
5600 @section Glibc Extensions to @code{<signal.h>}
5601
5602 @menu
5603 * gsignal::
5604 * sigandset::
5605 * sigblock::
5606 * siggetmask::
5607 * sigisemptyset::
5608 * sigorset::
5609 * sigreturn::
5610 * sigsetmask::
5611 * sigstack::
5612 * sigvec::
5613 * ssignal::
5614 * sys_siglist::
5615 * sysv_signal::
5616 @end menu
5617
5618 @include glibc-functions/gsignal.texi
5619 @include glibc-functions/sigandset.texi
5620 @include glibc-functions/sigblock.texi
5621 @include glibc-functions/siggetmask.texi
5622 @include glibc-functions/sigisemptyset.texi
5623 @include glibc-functions/sigorset.texi
5624 @include glibc-functions/sigreturn.texi
5625 @include glibc-functions/sigsetmask.texi
5626 @include glibc-functions/sigstack.texi
5627 @include glibc-functions/sigvec.texi
5628 @include glibc-functions/ssignal.texi
5629 @include glibc-functions/sys_siglist.texi
5630 @include glibc-functions/sysv_signal.texi
5631
5632 @c @node Glibc spawn.h
5633 @c @section Glibc Extensions to @code{<spawn.h>}
5634
5635 @c @node Glibc stdarg.h
5636 @c @section Glibc Extensions to @code{<stdarg.h>}
5637
5638 @c @node Glibc stdbool.h
5639 @c @section Glibc Extensions to @code{<stdbool.h>}
5640
5641 @c @node Glibc stddef.h
5642 @c @section Glibc Extensions to @code{<stddef.h>}
5643
5644 @c @node Glibc stdint.h
5645 @c @section Glibc Extensions to @code{<stdint.h>}
5646
5647 @node Glibc stdio.h
5648 @section Glibc Extensions to @code{<stdio.h>}
5649
5650 @menu
5651 * asprintf::
5652 * cuserid::
5653 * clearerr_unlocked::
5654 * fcloseall::
5655 * feof_unlocked::
5656 * ferror_unlocked::
5657 * fflush_unlocked::
5658 * fgetc_unlocked::
5659 * fgets_unlocked::
5660 * fileno_unlocked::
5661 * fopencookie::
5662 * fputc_unlocked::
5663 * fputs_unlocked::
5664 * fread_unlocked::
5665 * fwrite_unlocked::
5666 * getw::
5667 * putw::
5668 * setbuffer::
5669 * setlinebuf::
5670 * sys_errlist::
5671 * sys_nerr::
5672 * tmpnam_r::
5673 * vasprintf::
5674 @end menu
5675
5676 @include glibc-functions/asprintf.texi
5677 @include glibc-functions/cuserid.texi
5678 @include glibc-functions/clearerr_unlocked.texi
5679 @include glibc-functions/fcloseall.texi
5680 @include glibc-functions/feof_unlocked.texi
5681 @include glibc-functions/ferror_unlocked.texi
5682 @include glibc-functions/fflush_unlocked.texi
5683 @include glibc-functions/fgetc_unlocked.texi
5684 @include glibc-functions/fgets_unlocked.texi
5685 @include glibc-functions/fileno_unlocked.texi
5686 @include glibc-functions/fopencookie.texi
5687 @include glibc-functions/fputc_unlocked.texi
5688 @include glibc-functions/fputs_unlocked.texi
5689 @include glibc-functions/fread_unlocked.texi
5690 @include glibc-functions/fwrite_unlocked.texi
5691 @include glibc-functions/getw.texi
5692 @include glibc-functions/putw.texi
5693 @include glibc-functions/setbuffer.texi
5694 @include glibc-functions/setlinebuf.texi
5695 @include glibc-functions/sys_errlist.texi
5696 @include glibc-functions/sys_nerr.texi
5697 @include glibc-functions/tmpnam_r.texi
5698 @include glibc-functions/vasprintf.texi
5699
5700 @node Glibc stdlib.h
5701 @section Glibc Extensions to @code{<stdlib.h>}
5702
5703 @menu
5704 * canonicalize_file_name::
5705 * cfree::
5706 * clearenv::
5707 * drand48_r::
5708 * ecvt_r::
5709 * erand48_r::
5710 * fcvt_r::
5711 * getloadavg::
5712 * getpt::
5713 * initstate_r::
5714 * jrand48_r::
5715 * lcong48_r::
5716 * lrand48_r::
5717 * mkostemp::
5718 * mkostemps::
5719 * mrand48_r::
5720 * mkstemps::
5721 * nrand48_r::
5722 * on_exit::
5723 * ptsname_r::
5724 * qecvt::
5725 * qecvt_r::
5726 * qfcvt::
5727 * qfcvt_r::
5728 * qgcvt::
5729 * random_r::
5730 * rpmatch::
5731 * seed48_r::
5732 * setstate_r::
5733 * srand48_r::
5734 * srandom_r::
5735 * strtod_l::
5736 * strtof_l::
5737 * strtol_l::
5738 * strtold_l::
5739 * strtoll_l::
5740 * strtoq::
5741 * strtoul_l::
5742 * strtoull_l::
5743 * strtouq::
5744 * valloc::
5745 @end menu
5746
5747 @include glibc-functions/canonicalize_file_name.texi
5748 @include glibc-functions/cfree.texi
5749 @include glibc-functions/clearenv.texi
5750 @include glibc-functions/drand48_r.texi
5751 @include glibc-functions/ecvt_r.texi
5752 @include glibc-functions/erand48_r.texi
5753 @include glibc-functions/fcvt_r.texi
5754 @include glibc-functions/getloadavg.texi
5755 @include glibc-functions/getpt.texi
5756 @include glibc-functions/initstate_r.texi
5757 @include glibc-functions/jrand48_r.texi
5758 @include glibc-functions/lcong48_r.texi
5759 @include glibc-functions/lrand48_r.texi
5760 @include glibc-functions/mkostemp.texi
5761 @include glibc-functions/mkostemps.texi
5762 @include glibc-functions/mrand48_r.texi
5763 @include glibc-functions/mkstemps.texi
5764 @include glibc-functions/nrand48_r.texi
5765 @include glibc-functions/on_exit.texi
5766 @include glibc-functions/ptsname_r.texi
5767 @include glibc-functions/qecvt.texi
5768 @include glibc-functions/qecvt_r.texi
5769 @include glibc-functions/qfcvt.texi
5770 @include glibc-functions/qfcvt_r.texi
5771 @include glibc-functions/qgcvt.texi
5772 @include glibc-functions/random_r.texi
5773 @include glibc-functions/rpmatch.texi
5774 @include glibc-functions/seed48_r.texi
5775 @include glibc-functions/setstate_r.texi
5776 @include glibc-functions/srand48_r.texi
5777 @include glibc-functions/srandom_r.texi
5778 @include glibc-functions/strtod_l.texi
5779 @include glibc-functions/strtof_l.texi
5780 @include glibc-functions/strtol_l.texi
5781 @include glibc-functions/strtold_l.texi
5782 @include glibc-functions/strtoll_l.texi
5783 @include glibc-functions/strtoq.texi
5784 @include glibc-functions/strtoul_l.texi
5785 @include glibc-functions/strtoull_l.texi
5786 @include glibc-functions/strtouq.texi
5787 @include glibc-functions/valloc.texi
5788
5789 @node Glibc string.h
5790 @section Glibc Extensions to @code{<string.h>}
5791
5792 @menu
5793 * ffsl::
5794 * ffsll::
5795 * memfrob::
5796 * memmem::
5797 * mempcpy::
5798 * memrchr::
5799 * rawmemchr::
5800 * strcasestr::
5801 * strchrnul::
5802 * strfry::
5803 * strsep::
5804 * strverscmp::
5805 @end menu
5806
5807 @include glibc-functions/ffsl.texi
5808 @include glibc-functions/ffsll.texi
5809 @include glibc-functions/memfrob.texi
5810 @include glibc-functions/memmem.texi
5811 @include glibc-functions/mempcpy.texi
5812 @include glibc-functions/memrchr.texi
5813 @include glibc-functions/rawmemchr.texi
5814 @include glibc-functions/strcasestr.texi
5815 @include glibc-functions/strchrnul.texi
5816 @include glibc-functions/strfry.texi
5817 @include glibc-functions/strsep.texi
5818 @include glibc-functions/strverscmp.texi
5819
5820 @c @node Glibc strings.h
5821 @c @section Glibc Extensions to @code{<strings.h>}
5822
5823 @c @node Glibc stropts.h
5824 @c @section Glibc Extensions to @code{<stropts.h>}
5825
5826 @node Glibc sys/capability.h
5827 @section Glibc @code{<sys/capability.h>}
5828
5829 @menu
5830 * capget::
5831 * capset::
5832 @end menu
5833
5834 @include glibc-functions/capget.texi
5835 @include glibc-functions/capset.texi
5836
5837 @node Glibc sys/epoll.h
5838 @section Glibc @code{<sys/epoll.h>}
5839
5840 @menu
5841 * epoll_create::
5842 * epoll_ctl::
5843 * epoll_wait::
5844 @end menu
5845
5846 @include glibc-functions/epoll_create.texi
5847 @include glibc-functions/epoll_ctl.texi
5848 @include glibc-functions/epoll_wait.texi
5849
5850 @node Glibc sys/file.h
5851 @section Glibc @code{<sys/file.h>}
5852
5853 @menu
5854 * flock::
5855 @end menu
5856
5857 @include glibc-functions/flock.texi
5858
5859 @node Glibc sys/fsuid.h
5860 @section Glibc @code{<sys/fsuid.h>}
5861
5862 @menu
5863 * setfsgid::
5864 * setfsuid::
5865 @end menu
5866
5867 @include glibc-functions/setfsgid.texi
5868 @include glibc-functions/setfsuid.texi
5869
5870 @node Glibc sys/gmon.h
5871 @section Glibc @code{<sys/gmon.h>}
5872
5873 @menu
5874 * monstartup::
5875 @end menu
5876
5877 @include glibc-functions/monstartup.texi
5878
5879 @node Glibc sys/io.h and sys/perm.h
5880 @section Glibc @code{<sys/io.h>}, @code{<sys/perm.h>}
5881
5882 @menu
5883 * ioperm::
5884 * iopl::
5885 @end menu
5886
5887 @include glibc-functions/ioperm.texi
5888 @include glibc-functions/iopl.texi
5889
5890 @c @node Glibc sys/ioctl.h
5891 @c @section Glibc @code{<sys/ioctl.h>}
5892
5893 @c @node Glibc sys/ipc.h
5894 @c @section Glibc Extensions to @code{<sys/ipc.h>}
5895
5896 @node Glibc sys/kdaemon.h
5897 @section Glibc @code{<sys/kdaemon.h>}
5898
5899 @menu
5900 * bdflush::
5901 @end menu
5902
5903 @include glibc-functions/bdflush.texi
5904
5905 @node Glibc sys/klog.h
5906 @section Glibc @code{<sys/klog.h>}
5907
5908 @menu
5909 * klogctl::
5910 @end menu
5911
5912 @include glibc-functions/klogctl.texi
5913
5914 @node Glibc sys/mman.h
5915 @section Glibc Extensions to @code{<sys/mman.h>}
5916
5917 @menu
5918 * madvise::
5919 * mincore::
5920 * mremap::
5921 * remap_file_pages::
5922 @end menu
5923
5924 @include glibc-functions/madvise.texi
5925 @include glibc-functions/mincore.texi
5926 @include glibc-functions/mremap.texi
5927 @include glibc-functions/remap_file_pages.texi
5928
5929 @node Glibc sys/mount.h
5930 @section Glibc @code{<sys/mount.h>}
5931
5932 @menu
5933 * mount::
5934 * umount::
5935 * umount2::
5936 @end menu
5937
5938 @include glibc-functions/mount.texi
5939 @include glibc-functions/umount.texi
5940 @include glibc-functions/umount2.texi
5941
5942 @c @node Glibc sys/msg.h
5943 @c @section Glibc Extensions to @code{<sys/msg.h>}
5944
5945 @node Glibc sys/personality.h
5946 @section Glibc @code{<sys/personality.h>}
5947
5948 @menu
5949 * personality::
5950 @end menu
5951
5952 @include glibc-functions/personality.texi
5953
5954 @node Glibc sys/prctl.h
5955 @section Glibc @code{<sys/prctl.h>}
5956
5957 @menu
5958 * prctl::
5959 @end menu
5960
5961 @include glibc-functions/prctl.texi
5962
5963 @node Glibc sys/profil.h
5964 @section Glibc @code{<sys/profil.h>}
5965
5966 @menu
5967 * sprofil::
5968 @end menu
5969
5970 @include glibc-functions/sprofil.texi
5971
5972 @node Glibc sys/ptrace.h
5973 @section Glibc @code{<sys/ptrace.h>}
5974
5975 @menu
5976 * ptrace::
5977 @end menu
5978
5979 @include glibc-functions/ptrace.texi
5980
5981 @node Glibc sys/quota.h
5982 @section Glibc @code{<sys/quota.h>}
5983
5984 @menu
5985 * quotactl::
5986 @end menu
5987
5988 @include glibc-functions/quotactl.texi
5989
5990 @node Glibc sys/reboot.h
5991 @section Glibc @code{<sys/reboot.h>}
5992
5993 @menu
5994 * reboot::
5995 @end menu
5996
5997 @include glibc-functions/reboot.texi
5998
5999 @c @node Glibc sys/resource.h
6000 @c @section Glibc Extensions to @code{<sys/resource.h>}
6001
6002 @c @node Glibc sys/select.h
6003 @c @section Glibc Extensions to @code{<sys/select.h>}
6004
6005 @node Glibc sys/sem.h
6006 @section Glibc Extensions to @code{<sys/sem.h>}
6007
6008 @menu
6009 * semtimedop::
6010 @end menu
6011
6012 @include glibc-functions/semtimedop.texi
6013
6014 @node Glibc sys/sendfile.h
6015 @section Glibc @code{<sys/sendfile.h>}
6016
6017 @menu
6018 * sendfile::
6019 @end menu
6020
6021 @include glibc-functions/sendfile.texi
6022
6023 @c @node Glibc sys/shm.h
6024 @c @section Glibc Extensions to @code{<sys/shm.h>}
6025
6026 @node Glibc sys/socket.h
6027 @section Glibc Extensions to @code{<sys/socket.h>}
6028
6029 @menu
6030 * accept4::
6031 * isfdtype::
6032 @end menu
6033
6034 @include glibc-functions/accept4.texi
6035 @include glibc-functions/isfdtype.texi
6036
6037 @node Glibc sys/stat.h
6038 @section Glibc Extensions to @code{<sys/stat.h>}
6039
6040 @menu
6041 * lchmod::
6042 @end menu
6043
6044 @include glibc-functions/lchmod.texi
6045
6046 @node Glibc sys/statfs.h
6047 @section Glibc @code{<sys/statfs.h>}
6048
6049 @menu
6050 * fstatfs::
6051 * statfs::
6052 @end menu
6053
6054 @include glibc-functions/fstatfs.texi
6055 @include glibc-functions/statfs.texi
6056
6057 @c @node Glibc sys/statvfs.h
6058 @c @section Glibc Extensions to @code{<sys/statvfs.h>}
6059
6060 @node Glibc sys/swap.h
6061 @section Glibc @code{<sys/swap.h>}
6062
6063 @menu
6064 * swapoff::
6065 * swapon::
6066 @end menu
6067
6068 @include glibc-functions/swapoff.texi
6069 @include glibc-functions/swapon.texi
6070
6071 @node Glibc sys/sysctl.h
6072 @section Glibc @code{<sys/sysctl.h>}
6073
6074 @menu
6075 * sysctl::
6076 @end menu
6077
6078 @include glibc-functions/sysctl.texi
6079
6080 @node Glibc sys/sysinfo.h
6081 @section Glibc @code{<sys/sysinfo.h>}
6082
6083 @menu
6084 * get_avphys_pages::
6085 * get_nprocs::
6086 * get_nprocs_conf::
6087 * get_phys_pages::
6088 * sysinfo::
6089 @end menu
6090
6091 @include glibc-functions/get_avphys_pages.texi
6092 @include glibc-functions/get_nprocs.texi
6093 @include glibc-functions/get_nprocs_conf.texi
6094 @include glibc-functions/get_phys_pages.texi
6095 @include glibc-functions/sysinfo.texi
6096
6097 @node Glibc sys/syslog.h
6098 @section Glibc @code{<sys/syslog.h>}
6099
6100 @menu
6101 * vsyslog::
6102 @end menu
6103
6104 @include glibc-functions/vsyslog.texi
6105
6106 @node Glibc sys/sysmacros.h
6107 @section Glibc @code{<sys/sysmacros.h>}
6108
6109 @menu
6110 * gnu_dev_major::
6111 * gnu_dev_makedev::
6112 * gnu_dev_minor::
6113 @end menu
6114
6115 @include glibc-functions/gnu_dev_major.texi
6116 @include glibc-functions/gnu_dev_makedev.texi
6117 @include glibc-functions/gnu_dev_minor.texi
6118
6119 @node Glibc sys/time.h
6120 @section Glibc Extensions to @code{<sys/time.h>}
6121
6122 @menu
6123 * adjtime::
6124 * futimes::
6125 * futimesat::
6126 * lutimes::
6127 * settimeofday::
6128 @end menu
6129
6130 @include glibc-functions/adjtime.texi
6131 @include glibc-functions/futimes.texi
6132 @include glibc-functions/futimesat.texi
6133 @include glibc-functions/lutimes.texi
6134 @include glibc-functions/settimeofday.texi
6135
6136 @c @node Glibc sys/timeb.h
6137 @c @section Glibc Extensions to @code{<sys/timeb.h>}
6138
6139 @c @node Glibc sys/times.h
6140 @c @section Glibc Extensions to @code{<sys/times.h>}
6141
6142 @node Glibc sys/timex.h
6143 @section Glibc @code{<sys/timex.h>}
6144
6145 @menu
6146 * adjtimex::
6147 * ntp_adjtime::
6148 * ntp_gettime::
6149 @end menu
6150
6151 @include glibc-functions/adjtimex.texi
6152 @include glibc-functions/ntp_adjtime.texi
6153 @include glibc-functions/ntp_gettime.texi
6154
6155 @c @node Glibc sys/types.h
6156 @c @section Glibc Extensions to @code{<sys/types.h>}
6157
6158 @c @node Glibc sys/uio.h
6159 @c @section Glibc Extensions to @code{<sys/uio.h>}
6160
6161 @c @node Glibc sys/un.h
6162 @c @section Glibc Extensions to @code{<sys/un.h>}
6163
6164 @node Glibc sys/ustat.h
6165 @section Glibc @code{<sys/ustat.h>}
6166
6167 @menu
6168 * ustat::
6169 @end menu
6170
6171 @include glibc-functions/ustat.texi
6172
6173 @c @node Glibc sys/utsname.h
6174 @c @section Glibc Extensions to @code{<sys/utsname.h>}
6175
6176 @node Glibc sys/vlimit.h
6177 @section Glibc @code{<sys/vlimit.h>}
6178
6179 @menu
6180 * vlimit::
6181 @end menu
6182
6183 @include glibc-functions/vlimit.texi
6184
6185 @node Glibc sys/vm86.h
6186 @section Glibc @code{<sys/vm86.h>}
6187
6188 @menu
6189 * vm86::
6190 @end menu
6191
6192 @include glibc-functions/vm86.texi
6193
6194 @node Glibc sys/vtimes.h
6195 @section Glibc @code{<sys/vtimes.h>}
6196
6197 @menu
6198 * vtimes::
6199 @end menu
6200
6201 @include glibc-functions/vtimes.texi
6202
6203 @node Glibc sys/wait.h
6204 @section Glibc Extensions to @code{<sys/wait.h>}
6205
6206 @menu
6207 * wait3::
6208 * wait4::
6209 @end menu
6210
6211 @include glibc-functions/wait3.texi
6212 @include glibc-functions/wait4.texi
6213
6214 @node Glibc sys/xattr.h
6215 @section Glibc @code{<sys/xattr.h>}
6216
6217 @menu
6218 * fgetxattr::
6219 * flistxattr::
6220 * fremovexattr::
6221 * fsetxattr::
6222 * getxattr::
6223 * lgetxattr::
6224 * listxattr::
6225 * llistxattr::
6226 * lremovexattr::
6227 * lsetxattr::
6228 * removexattr::
6229 * setxattr::
6230 @end menu
6231
6232 @include glibc-functions/fgetxattr.texi
6233 @include glibc-functions/flistxattr.texi
6234 @include glibc-functions/fremovexattr.texi
6235 @include glibc-functions/fsetxattr.texi
6236 @include glibc-functions/getxattr.texi
6237 @include glibc-functions/lgetxattr.texi
6238 @include glibc-functions/listxattr.texi
6239 @include glibc-functions/llistxattr.texi
6240 @include glibc-functions/lremovexattr.texi
6241 @include glibc-functions/lsetxattr.texi
6242 @include glibc-functions/removexattr.texi
6243 @include glibc-functions/setxattr.texi
6244
6245 @c @node Glibc sysexits.h
6246 @c @section Glibc @code{<sysexits.h>}
6247
6248 @c @node Glibc syslog.h
6249 @c @section Glibc Extensions to @code{<syslog.h>}
6250
6251 @c @node Glibc tar.h
6252 @c @section Glibc Extensions to @code{<tar.h>}
6253
6254 @node Glibc termios.h
6255 @section Glibc Extensions to @code{<termios.h>}
6256
6257 @menu
6258 * cfmakeraw::
6259 * cfsetspeed::
6260 @end menu
6261
6262 @include glibc-functions/cfmakeraw.texi
6263 @include glibc-functions/cfsetspeed.texi
6264
6265 @c @node Glibc tgmath.h
6266 @c @section Glibc Extensions to @code{<tgmath.h>}
6267
6268 @node Glibc time.h
6269 @section Glibc Extensions to @code{<time.h>}
6270
6271 @menu
6272 * dysize::
6273 * getdate_r::
6274 * stime::
6275 * strptime_l::
6276 * timegm::
6277 * timelocal::
6278 @end menu
6279
6280 @include glibc-functions/dysize.texi
6281 @include glibc-functions/getdate_r.texi
6282 @include glibc-functions/stime.texi
6283 @include glibc-functions/strptime_l.texi
6284 @include glibc-functions/timegm.texi
6285 @include glibc-functions/timelocal.texi
6286
6287 @c @node Glibc trace.h
6288 @c @section Glibc Extensions to @code{<trace.h>}
6289
6290 @node Glibc ttyent.h
6291 @section Glibc @code{<ttyent.h>}
6292
6293 @menu
6294 * endttyent::
6295 * getttyent::
6296 * getttynam::
6297 * setttyent::
6298 @end menu
6299
6300 @include glibc-functions/endttyent.texi
6301 @include glibc-functions/getttyent.texi
6302 @include glibc-functions/getttynam.texi
6303 @include glibc-functions/setttyent.texi
6304
6305 @c @node Glibc ucontext.h
6306 @c @section Glibc Extensions to @code{<ucontext.h>}
6307
6308 @c @node Glibc ulimit.h
6309 @c @section Glibc Extensions to @code{<ulimit.h>}
6310
6311 @node Glibc unistd.h
6312 @section Glibc Extensions to @code{<unistd.h>}
6313
6314 @menu
6315 * acct::
6316 * brk::
6317 * chroot::
6318 * daemon::
6319 * dup3::
6320 * endusershell::
6321 * euidaccess::
6322 * execvpe::
6323 * get_current_dir_name::
6324 * getdomainname::
6325 * getdtablesize::
6326 * getpagesize::
6327 * getpass::
6328 * getresgid::
6329 * getresuid::
6330 * getusershell::
6331 * group_member::
6332 * pipe2::
6333 * profil::
6334 * revoke::
6335 * sbrk::
6336 * setlogin::
6337 * setdomainname::
6338 * sethostid::
6339 * sethostname::
6340 * setresgid::
6341 * setresuid::
6342 * setusershell::
6343 * syscall::
6344 * ttyslot::
6345 * vhangup::
6346 @end menu
6347
6348 @include glibc-functions/acct.texi
6349 @include glibc-functions/brk.texi
6350 @include glibc-functions/chroot.texi
6351 @include glibc-functions/daemon.texi
6352 @include glibc-functions/dup3.texi
6353 @include glibc-functions/endusershell.texi
6354 @include glibc-functions/euidaccess.texi
6355 @include glibc-functions/execvpe.texi
6356 @include glibc-functions/get_current_dir_name.texi
6357 @include glibc-functions/getdomainname.texi
6358 @include glibc-functions/getdtablesize.texi
6359 @include glibc-functions/getpagesize.texi
6360 @include glibc-functions/getpass.texi
6361 @include glibc-functions/getresgid.texi
6362 @include glibc-functions/getresuid.texi
6363 @include glibc-functions/getusershell.texi
6364 @include glibc-functions/group_member.texi
6365 @include glibc-functions/pipe2.texi
6366 @include glibc-functions/profil.texi
6367 @include glibc-functions/revoke.texi
6368 @include glibc-functions/sbrk.texi
6369 @include glibc-functions/setlogin.texi
6370 @include glibc-functions/setdomainname.texi
6371 @include glibc-functions/sethostid.texi
6372 @include glibc-functions/sethostname.texi
6373 @include glibc-functions/setresgid.texi
6374 @include glibc-functions/setresuid.texi
6375 @include glibc-functions/setusershell.texi
6376 @include glibc-functions/syscall.texi
6377 @include glibc-functions/ttyslot.texi
6378 @include glibc-functions/vhangup.texi
6379
6380 @c @node Glibc utime.h
6381 @c @section Glibc Extensions to @code{<utime.h>}
6382
6383 @node Glibc utmp.h
6384 @section Glibc @code{<utmp.h>}
6385
6386 @menu
6387 * endutent::
6388 * getutent::
6389 * getutent_r::
6390 * getutid::
6391 * getutid_r::
6392 * getutline::
6393 * getutline_r::
6394 * pututline::
6395 * setutent::
6396 * updwtmp::
6397 * utmpname::
6398 * login_tty::
6399 @end menu
6400
6401 @include glibc-functions/endutent.texi
6402 @include glibc-functions/getutent.texi
6403 @include glibc-functions/getutent_r.texi
6404 @include glibc-functions/getutid.texi
6405 @include glibc-functions/getutid_r.texi
6406 @include glibc-functions/getutline.texi
6407 @include glibc-functions/getutline_r.texi
6408 @include glibc-functions/pututline.texi
6409 @include glibc-functions/setutent.texi
6410 @include glibc-functions/updwtmp.texi
6411 @include glibc-functions/utmpname.texi
6412 @include glibc-functions/login_tty.texi
6413
6414 @node Glibc utmpx.h
6415 @section Glibc Extensions to @code{<utmpx.h>}
6416
6417 @menu
6418 * getutmp::
6419 * getutmpx::
6420 * updwtmpx::
6421 * utmpxname::
6422 @end menu
6423
6424 @include glibc-functions/getutmp.texi
6425 @include glibc-functions/getutmpx.texi
6426 @include glibc-functions/updwtmpx.texi
6427 @include glibc-functions/utmpxname.texi
6428
6429 @node Glibc wchar.h
6430 @section Glibc Extensions to @code{<wchar.h>}
6431
6432 @menu
6433 * fgetwc_unlocked::
6434 * fgetws_unlocked::
6435 * fputwc_unlocked::
6436 * fputws_unlocked::
6437 * getwc_unlocked::
6438 * getwchar_unlocked::
6439 * putwc_unlocked::
6440 * putwchar_unlocked::
6441 * wcschrnul::
6442 * wcsftime_l::
6443 * wcstod_l::
6444 * wcstof_l::
6445 * wcstol_l::
6446 * wcstold_l::
6447 * wcstoll_l::
6448 * wcstoq::
6449 * wcstoul_l::
6450 * wcstoull_l::
6451 * wcstouq::
6452 * wmempcpy::
6453 @end menu
6454
6455 @include glibc-functions/fgetwc_unlocked.texi
6456 @include glibc-functions/fgetws_unlocked.texi
6457 @include glibc-functions/fputwc_unlocked.texi
6458 @include glibc-functions/fputws_unlocked.texi
6459 @include glibc-functions/getwc_unlocked.texi
6460 @include glibc-functions/getwchar_unlocked.texi
6461 @include glibc-functions/putwc_unlocked.texi
6462 @include glibc-functions/putwchar_unlocked.texi
6463 @include glibc-functions/wcschrnul.texi
6464 @include glibc-functions/wcsftime_l.texi
6465 @include glibc-functions/wcstod_l.texi
6466 @include glibc-functions/wcstof_l.texi
6467 @include glibc-functions/wcstol_l.texi
6468 @include glibc-functions/wcstold_l.texi
6469 @include glibc-functions/wcstoll_l.texi
6470 @include glibc-functions/wcstoq.texi
6471 @include glibc-functions/wcstoul_l.texi
6472 @include glibc-functions/wcstoull_l.texi
6473 @include glibc-functions/wcstouq.texi
6474 @include glibc-functions/wmempcpy.texi
6475
6476 @c @node Glibc wctype.h
6477 @c @section Glibc Extensions to @code{<wctype.h>}
6478
6479 @c @node Glibc wordexp.h
6480 @c @section Glibc Extensions to @code{<wordexp.h>}
6481
6482 @node Particular Modules
6483 @chapter Particular Modules
6484
6485 @menu
6486 * alloca::
6487 * alloca-opt::
6488 * Safe Allocation Macros::
6489 * String Functions in C Locale::
6490 * Quoting::
6491 * error and progname::
6492 * gcd::
6493 * Searching for Libraries::
6494 * Exported Symbols of Shared Libraries::
6495 * LD Version Scripts::
6496 * Visual Studio Compatibility::
6497 * Supporting Relocation::
6498 * func::
6499 * warnings::
6500 * manywarnings::
6501 * Running self-tests under valgrind::
6502 @end menu
6503
6504 @node alloca
6505 @section alloca
6506 @findex alloca
6507 @include alloca.texi
6508
6509 @node alloca-opt
6510 @section alloca-opt
6511 @findex alloca
6512 @include alloca-opt.texi
6513
6514 @include safe-alloc.texi
6515
6516 @node String Functions in C Locale
6517 @section Character and String Functions in C Locale
6518
6519 The functions in this section are similar to the generic string functions
6520 from the standard C library, except that
6521 @itemize
6522 @item
6523 They behave as if the locale was set to the "C" locale, even when the
6524 locale is different, and/or
6525 @item
6526 They are specially optimized for the case where all characters are plain
6527 ASCII characters.
6528 @end itemize
6529
6530 @menu
6531 * c-ctype::
6532 * c-strcase::
6533 * c-strcaseeq::
6534 * c-strcasestr::
6535 * c-strstr::
6536 * c-strtod::
6537 * c-strtold::
6538 @end menu
6539
6540 @node c-ctype
6541 @subsection c-ctype
6542 @include c-ctype.texi
6543
6544 @node c-strcase
6545 @subsection c-strcase
6546 @include c-strcase.texi
6547
6548 @node c-strcaseeq
6549 @subsection c-strcaseeq
6550 @include c-strcaseeq.texi
6551
6552 @node c-strcasestr
6553 @subsection c-strcasestr
6554 @include c-strcasestr.texi
6555
6556 @node c-strstr
6557 @subsection c-strstr
6558 @include c-strstr.texi
6559
6560 @node c-strtod
6561 @subsection c-strtod
6562 @include c-strtod.texi
6563
6564 @node c-strtold
6565 @subsection c-strtold
6566 @include c-strtold.texi
6567
6568 @include quote.texi
6569
6570 @include error.texi
6571
6572 @include gcd.texi
6573
6574 @include havelib.texi
6575
6576 @include lib-symbol-visibility.texi
6577
6578 @include ld-version-script.texi
6579
6580 @include ld-output-def.texi
6581
6582 @include relocatable-maint.texi
6583
6584 @include func.texi
6585
6586 @include warnings.texi
6587
6588 @include manywarnings.texi
6589
6590 @include valgrind-tests.texi
6591
6592 @node Regular expressions
6593 @chapter Regular expressions
6594
6595 @menu
6596 * Overview::
6597 * Regular Expression Syntax::
6598 * Common Operators::
6599 * GNU Operators::
6600 * GNU Emacs Operators::
6601 * What Gets Matched?::
6602 * Programming with Regex::
6603 * Regular expression syntaxes::
6604 @end menu
6605
6606 @lowersections
6607 @include regex.texi
6608 @raisesections
6609
6610 @node Regular expression syntaxes
6611 @section Regular expression syntaxes
6612
6613 Gnulib supports many different types of regular expressions; although
6614 the underlying features are the same or identical, the syntax used
6615 varies.  The descriptions given here for the different types are
6616 generated automatically.
6617
6618 @include regexprops-generic.texi
6619
6620 @node GNU Free Documentation License
6621 @appendix GNU Free Documentation License
6622
6623 @include fdl-1.3.texi
6624
6625
6626 @node Index
6627 @unnumbered Index
6628
6629 @printindex cp
6630
6631 @bye
6632
6633 @c Local Variables:
6634 @c indent-tabs-mode: nil
6635 @c whitespace-check-buffer-indent: nil
6636 @c End: