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