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