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