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