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