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