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