Explain what an absent module means.
[gnulib.git] / doc / gnulib.texi
1 \input texinfo   @c -*-texinfo-*-
2 @comment $Id: gnulib.texi,v 1.44 2007-09-09 13:20:45 haible Exp $
3 @comment %**start of header
4 @setfilename gnulib.info
5 @settitle GNU Gnulib
6 @syncodeindex fn cp
7 @syncodeindex pg cp
8 @comment %**end of header
9
10 @set UPDATED $Date: 2007-09-09 13:20:45 $
11
12 @copying
13 This manual is for GNU Gnulib (updated @value{UPDATED}),
14 which is a library of common routines intended to be shared at the
15 source level.
16
17 Copyright @copyright{} 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
18
19 Permission is granted to copy, distribute and/or modify this document
20 under the terms of the GNU Free Documentation License, Version 1.1 or
21 any later version published by the Free Software Foundation; with no
22 Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
23 Texts.  A copy of the license is included in the section entitled
24 ``GNU Free Documentation License.''
25 @end copying
26
27 @dircategory Software development
28 @direntry
29 * Gnulib: (gnulib).             Source files to share among distributions.
30 @end direntry
31
32 @titlepage
33 @title GNU Gnulib
34 @subtitle updated @value{UPDATED}
35 @author @email{bug-gnulib@@gnu.org}
36 @page
37 @vskip 0pt plus 1filll
38 @insertcopying
39 @end titlepage
40
41 @contents
42
43 @ifnottex
44 @node Top
45 @top GNU Gnulib
46
47 @insertcopying
48 @end ifnottex
49
50 @menu
51 * Introduction::
52 * Invoking gnulib-tool::
53 * Miscellaneous Notes::
54 * POSIX Substitutes Library::       Building as a separate substitutes library.
55 * Header File Substitutes::         Overriding system headers.
56 * Function Substitutes::            Replacing system functions.
57 * Particular Modules::              Documentation of individual modules.
58 * GNU Free Documentation License::  Copying and sharing this manual.
59 * Index::
60 @end menu
61
62 @node Introduction
63 @chapter Introduction
64
65 Gnulib is a source code library. It provides basic functionalities to
66 programs and libraries.  Currently (as of October 2006) more than 30
67 packages make use of Gnulib.
68
69 Resources:
70
71 @itemize
72 @item Gnulib is hosted at Savannah:
73       @url{http://savannah.gnu.org/projects/gnulib}.  Get the sources
74       through git or CVS from there.
75 @item The Gnulib home page:
76       @url{http://www.gnu.org/software/gnulib/}.
77 @end itemize
78
79 @menu
80 * Library vs. Reusable Code::
81 * Portability and Application Code::
82 * Modules::
83 * Various Kinds of Modules::
84 * Collaborative Development::
85 * Copyright::
86 * Steady Development::
87 * Openness::
88 @end menu
89
90 @include gnulib-intro.texi
91
92
93 @include gnulib-tool.texi
94
95
96 @node Miscellaneous Notes
97 @chapter Miscellaneous Notes
98
99 @menu
100 * Comments::
101 * Header files::
102 * Out of memory handling::
103 * Library version handling::
104 * Windows sockets::
105 * Libtool and Windows::
106 * License Texinfo sources::
107 * Build robot for gnulib::
108 @end menu
109
110
111 @node Comments
112 @section Comments
113
114 @cindex comments describing functions
115 @cindex describing functions, locating
116 Where to put comments describing functions: Because of risk of
117 divergence, we prefer to keep most function describing comments in
118 only one place: just above the actual function definition.  Some
119 people prefer to put that documentation in the .h file.  In any case,
120 it should appear in just one place unless you can ensure that the
121 multiple copies will always remain identical.
122
123
124 @node Header files
125 @section Header files
126
127 @cindex double inclusion of header files
128 @cindex header file include protection
129 It is a tradition to use CPP tricks to avoid parsing the same header
130 file more than once, which might cause warnings.  The trick is to wrap
131 the content of the header file (say, @file{foo.h}) in a block, as in:
132
133 @example
134 #ifndef FOO_H
135 # define FOO_H
136 ...
137 body of header file goes here
138 ...
139 #endif /* FOO_H */
140 @end example
141
142 Whether to use @code{FOO_H} or @code{_FOO_H} is a matter of taste and
143 style.  The C89 and C99 standards reserve all identifiers that begin with an
144 underscore and either an uppercase letter or another underscore, for
145 any use.  Thus, in theory, an application might not safely assume that
146 @code{_FOO_H} has not already been defined by a library.  On the other
147 hand, using @code{FOO_H} will likely lead the higher risk of
148 collisions with other symbols (e.g., @code{KEY_H}, @code{XK_H}, @code{BPF_H},
149 which are CPP macro constants, or @code{COFF_LONG_H}, which is a CPP
150 macro function).  Your preference may depend on whether you consider
151 the header file under discussion as part of the application (which has
152 its own namespace for CPP symbols) or a supporting library (that
153 shouldn't interfere with the application's CPP symbol namespace).
154
155 @cindex C++ header files
156 @cindex Header files and C++
157 Adapting C header files for use in C++ applications can use another
158 CPP trick, as in:
159
160 @example
161 # ifdef __cplusplus
162 extern "C"
163 @{
164 # endif
165 ...
166 body of header file goes here
167 ...
168 # ifdef __cplusplus
169 @}
170 # endif
171 @end example
172
173 The idea here is that @code{__cplusplus} is defined only by C++
174 implementations, which will wrap the header file in an @samp{extern "C"}
175 block.  Again, whether to use this trick is a matter of taste and
176 style.  While the above can be seen as harmless, it could be argued
177 that the header file is written in C, and any C++ application using it
178 should explicitly use the @samp{extern "C"} block itself.  Your
179 preference might depend on whether you consider the API exported by
180 your header file as something available for C programs only, or for C
181 and C++ programs alike.
182
183 @subheading Include ordering
184
185 When writing a gnulib module, or even in general, a good way to order
186 the @samp{#include} directives is the following.
187
188 @itemize
189 @item First comes the #include "..." specifying the module being implemented.
190 @item Then come all the #include <...> of system or system-replacement headers,
191 in arbitrary order.
192 @item Then come all the #include "..." of gnulib and private headers, in
193 arbitrary order.
194 @end itemize
195
196
197 @node Out of memory handling
198 @section Out of memory handling
199
200 @cindex Out of Memory handling
201 @cindex Memory allocation failure
202 The GSS API does not have a standard error code for the out of memory
203 error condition.  Instead of adding a non-standard error code, this
204 library has chosen to adopt a different strategy.  Out of memory
205 handling happens in rare situations, but performing the out of memory
206 error handling after almost all API function invocations pollute your
207 source code and might make it harder to spot more serious problems.
208 The strategy chosen improves code readability and robustness.
209
210 @cindex Aborting execution
211 For most applications, aborting the application with an error message
212 when the out of memory situation occurs is the best that can be wished
213 for.  This is how the library behaves by default.
214
215 @vindex xalloc_fail_func
216 However, we realize that some applications may not want to have the
217 GSS library abort execution in any situation.  The GSS library supports
218 a hook to let the application regain control and perform its own
219 cleanups when an out of memory situation has occurred.  The application
220 can define a function (having a @code{void} prototype, i.e., no return
221 value and no parameters) and set the library variable
222 @code{xalloc_fail_func} to that function.  The variable should be
223 declared as follows.
224
225 @example
226 extern void (*xalloc_fail_func) (void);
227 @end example
228
229 The GSS library will invoke this function if an out of memory error
230 occurs.  Note that after this the GSS library is in an undefined
231 state, so you must unload or restart the application to continue call
232 GSS library functions.  The hook is only intended to allow the
233 application to log the situation in a special way.  Of course, care
234 must be taken to not allocate more memory, as that will likely also
235 fail.
236
237
238 @node Library version handling
239 @section Library version handling
240
241 The module @samp{check-version} can be useful when your gnulib
242 application is a system library.  You will typically wrap the call to
243 the @code{check_version} function through a library API, your library
244 header file may contain:
245
246 @example
247 #define STRINGPREP_VERSION "0.5.18"
248 ...
249   extern const char *stringprep_check_version (const char *req_version);
250 @end example
251
252 To avoid ELF symbol collisions with other libraries that use the
253 @samp{check-version} module, add to @file{config.h} through a
254 AC_DEFINE something like:
255
256 @example
257 AC_DEFINE(check_version, stringprep_check_version,
258           [Rename check_version.])
259 @end example
260
261 The @code{stringprep_check_version} function will thus be implemented
262 by the @code{check_version} module.
263
264 There are two uses of the interface.  The first is a way to provide
265 for applications to find out the version number of the library it
266 uses.  The application may contain diagnostic code such as:
267
268 @example
269   printf ("Stringprep version: header %s library %s",
270           STRINGPREP_VERSION,
271           stringprep_check_version (NULL));
272 @end example
273
274 Separating the library and header file version can be useful when
275 searching for version mismatch related problems.
276
277 The second uses is as a rudimentary test of proper library version, by
278 making sure the application get a library version that is the same, or
279 newer, than the header file used when building the application.  This
280 doesn't catch all problems, libraries may change backwards incompatibly
281 in later versions, but enable applications to require a certain
282 minimum version before it may proceed.
283
284 Typical uses look like:
285
286 @example
287        /* Check version of libgcrypt. */
288        if (!gcry_check_version (GCRYPT_VERSION))
289          die ("version mismatch\n");
290 @end example
291
292
293 @node Windows sockets
294 @section Windows sockets
295
296 There are several issues when building applications that should work
297 under Windows.  The most problematic part is for applications that use
298 sockets.
299
300 Hopefully, we can add helpful notes to this section that will help you
301 port your application to Windows using gnulib.
302
303 @subsection Getaddrinfo and WINVER
304
305 This was written for the getaddrinfo module, but may be applicable to
306 other functions too.
307
308 The getaddrinfo function exists in ws2tcpip.h and -lws2_32 on Windows
309 XP.  The function declaration is present if @code{WINVER >= 0x0501}.
310 Windows 2000 does not have getaddrinfo in its @file{WS2_32.dll}.
311
312 Thus, if you want to assume Windows XP or later, you can add
313 AC_DEFINE(WINVER, 0x0501) to avoid compiling to (partial) getaddrinfo
314 implementation.
315
316 If you want to support Windows 2000, don't do anything, but be aware
317 that gnulib will use its own (partial) getaddrinfo implementation even
318 on Windows XP.  Currently the code does not attempt to determine if
319 the getaddrinfo function is available during runtime.
320
321 Todo: Make getaddrinfo.c open the WS2_32.DLL and check for the
322 getaddrinfo symbol and use it if present, otherwise fall back to our
323 own implementation.
324
325
326 @node Libtool and Windows
327 @section Libtool and Windows
328
329 If you want it to be possible to cross-compile your program to MinGW
330 and you use Libtool, you need to put:
331
332 @example
333 AC_LIBTOOL_WIN32_DLL
334 @end example
335
336 in your @file{configure.ac}.  This sets the correct names for the
337 @code{OBJDUMP}, @code{DLLTOOL}, and @code{AS} tools for the build.
338
339 If you are building a library, you will also need to pass
340 @code{-no-undefined} to make sure Libtool produces a DLL for your
341 library.  From a @file{Makefile.am}:
342
343 @example
344 libgsasl_la_LDFLAGS += -no-undefined
345 @end example
346
347
348 @node License Texinfo sources
349 @section License Texinfo sources
350
351 Gnulib provides copies of the GNU GPL, GNU LGPL, and GNU FDL licenses
352 in Texinfo form.  (The master location is
353 @url{http://www.gnu.org/licenses/}).  These Texinfo documents do not
354 have any node names and structures built into them; for your manual,
355 you should @code{@@include} them in an appropriate @code{@@node}.
356
357 The conventional name for the GPL node is @samp{Copying} and for the FDL
358 @samp{GNU Free Documentation License}.  The LGPL doesn't seem to have
359 a conventional node name.
360
361 Of course the license texts themselves should not be changed at all.
362
363
364 @node Build robot for gnulib
365 @section Build robot for gnulib
366
367 To simplify testing on a wide set of platforms, gnulib is built on
368 many platforms every day and the results are uploaded to:
369
370 @url{http://autobuild.josefsson.org/gnulib/}
371
372 If you wish to help the gnulib development effort with build logs for
373 your favorite platform, you may perform these steps:
374
375 @enumerate
376
377 @item Create gnulib directory
378
379 On a machine with recent automake, autoconf, m4 installed and with a
380 gnulib git or cvs checkout (typically a Linux machine), use
381
382 @example
383 gnulib-tool --create-megatestdir --with-tests --dir=..."
384 @end example
385
386 Note: The created directory uses ca. 512 MB on disk.
387
388 @item Transfer gnulib directory
389
390 Transfer this directory to a build machine (HP-UX, Cygwin, or
391 whatever).  Often it is easier to transfer one file, and this can be
392 achieved by running, inside the directory the following commands:
393
394 @example
395 ./configure
396 make dist
397 @end example
398
399 And then transferring the @file{dummy-0.tar.gz} file.
400
401 @item Build modules
402
403 On the build machine, run ./do-autobuild (or "nohup ./do-autobuild").
404 It creates a directory 'logs/' with a log file for each module.
405
406 @item Submit build logs
407
408 Submit each log file to Simon's site, either through a
409
410 @example
411 mail `echo gnulib__at__autobuild.josefsson.org | sed -e s/__at__/@@/`
412 @end example
413
414 or through netcat
415
416 @example
417 autobuild-submit logs/*
418 @end example
419
420 @end enumerate
421
422 @node POSIX Substitutes Library
423 @chapter Building the ISO C and POSIX Substitutes
424
425 This section shows a radically different way to use Gnulib.
426
427 You can extract the ISO C / POSIX substitutes part of gnulib by running
428 the command
429 @smallexample
430 gnulib-tool --create-testdir --source-base=lib \
431             --dir=/tmp/posixlib `posix-modules`
432 @end smallexample
433
434 @noindent
435 The command @samp{posix-modules} is found in the same directory as
436 @code{gnulib-tool}.
437
438 The resulting directory can be built on a particular platform,
439 independently of the program being ported.  Then you can configure and
440 build any program, by setting @code{CPPFLAGS} and @code{LDFLAGS} at
441 configure time accordingly: set @code{CPPFLAGS="-I.../posixlib/lib"}, plus
442 any essential type definitions and flags that you find in
443 @code{.../posixlib/config.h}, and set
444 @code{LDFLAGS=".../posixlib/lib/libgnu.a"}.
445
446 This way of using Gnulib is useful when you don't want to modify the program's
447 source code, or when the program uses a mix between C and C++ sources
448 (requiring separate builds of the @code{posixlib} for the C compiler and
449 for the C++ compiler).
450
451 @node Header File Substitutes
452 @chapter ISO C and POSIX Header File Substitutes
453
454 This chapter describes which header files specified by ISO C or POSIX are
455 substituted by Gnulib, which portability pitfalls are fixed by Gnulib, and
456 which (known) portability problems are not worked around by Gnulib.
457
458 @menu
459 * aio.h::
460 * arpa/inet.h::
461 * assert.h::
462 * complex.h::
463 * cpio.h::
464 * ctype.h::
465 * dirent.h::
466 * dlfcn.h::
467 * errno.h::
468 * fcntl.h::
469 * fenv.h::
470 * float.h::
471 * fmtmsg.h::
472 * fnmatch.h::
473 * ftw.h::
474 * glob.h::
475 * grp.h::
476 * iconv.h::
477 * inttypes.h::
478 * iso646.h::
479 * langinfo.h::
480 * libgen.h::
481 * limits.h::
482 * locale.h::
483 * math.h::
484 * monetary.h::
485 * mqueue.h::
486 * ndbm.h::
487 * net/if.h::
488 * netdb.h::
489 * netinet/in.h::
490 * netinet/tcp.h::
491 * nl_types.h::
492 * poll.h::
493 * pthread.h::
494 * pwd.h::
495 * regex.h::
496 * sched.h::
497 * search.h::
498 * semaphore.h::
499 * setjmp.h::
500 * signal.h::
501 * spawn.h::
502 * stdarg.h::
503 * stdbool.h::
504 * stddef.h::
505 * stdint.h::
506 * stdio.h::
507 * stdlib.h::
508 * string.h::
509 * strings.h::
510 * stropts.h::
511 * sys/ipc.h::
512 * sys/mman.h::
513 * sys/msg.h::
514 * sys/resource.h::
515 * sys/select.h::
516 * sys/sem.h::
517 * sys/shm.h::
518 * sys/socket.h::
519 * sys/stat.h::
520 * sys/statvfs.h::
521 * sys/time.h::
522 * sys/timeb.h::
523 * sys/times.h::
524 * sys/types.h::
525 * sys/uio.h::
526 * sys/un.h::
527 * sys/utsname.h::
528 * sys/wait.h::
529 * syslog.h::
530 * tar.h::
531 * termios.h::
532 * tgmath.h::
533 * time.h::
534 * trace.h::
535 * ucontext.h::
536 * ulimit.h::
537 * unistd.h::
538 * utime.h::
539 * utmpx.h::
540 * wchar.h::
541 * wctype.h::
542 * wordexp.h::
543 @end menu
544
545 @include headers/aio.texi
546 @include headers/arpa_inet.texi
547 @include headers/assert.texi
548 @include headers/complex.texi
549 @include headers/cpio.texi
550 @include headers/ctype.texi
551 @include headers/dirent.texi
552 @include headers/dlfcn.texi
553 @include headers/errno.texi
554 @include headers/fcntl.texi
555 @include headers/fenv.texi
556 @include headers/float.texi
557 @include headers/fmtmsg.texi
558 @include headers/fnmatch.texi
559 @include headers/ftw.texi
560 @include headers/glob.texi
561 @include headers/grp.texi
562 @include headers/iconv.texi
563 @include headers/inttypes.texi
564 @include headers/iso646.texi
565 @include headers/langinfo.texi
566 @include headers/libgen.texi
567 @include headers/limits.texi
568 @include headers/locale.texi
569 @include headers/math.texi
570 @include headers/monetary.texi
571 @include headers/mqueue.texi
572 @include headers/ndbm.texi
573 @include headers/net_if.texi
574 @include headers/netdb.texi
575 @include headers/netinet_in.texi
576 @include headers/netinet_tcp.texi
577 @include headers/nl_types.texi
578 @include headers/poll.texi
579 @include headers/pthread.texi
580 @include headers/pwd.texi
581 @include headers/regex.texi
582 @include headers/sched.texi
583 @include headers/search.texi
584 @include headers/semaphore.texi
585 @include headers/setjmp.texi
586 @include headers/signal.texi
587 @include headers/spawn.texi
588 @include headers/stdarg.texi
589 @include headers/stdbool.texi
590 @include headers/stddef.texi
591 @include headers/stdint.texi
592 @include headers/stdio.texi
593 @include headers/stdlib.texi
594 @include headers/string.texi
595 @include headers/strings.texi
596 @include headers/stropts.texi
597 @include headers/sys_ipc.texi
598 @include headers/sys_mman.texi
599 @include headers/sys_msg.texi
600 @include headers/sys_resource.texi
601 @include headers/sys_select.texi
602 @include headers/sys_sem.texi
603 @include headers/sys_shm.texi
604 @include headers/sys_socket.texi
605 @include headers/sys_stat.texi
606 @include headers/sys_statvfs.texi
607 @include headers/sys_time.texi
608 @include headers/sys_timeb.texi
609 @include headers/sys_times.texi
610 @include headers/sys_types.texi
611 @include headers/sys_uio.texi
612 @include headers/sys_un.texi
613 @include headers/sys_utsname.texi
614 @include headers/sys_wait.texi
615 @include headers/syslog.texi
616 @include headers/tar.texi
617 @include headers/termios.texi
618 @include headers/tgmath.texi
619 @include headers/time.texi
620 @include headers/trace.texi
621 @include headers/ucontext.texi
622 @include headers/ulimit.texi
623 @include headers/unistd.texi
624 @include headers/utime.texi
625 @include headers/utmpx.texi
626 @include headers/wchar.texi
627 @include headers/wctype.texi
628 @include headers/wordexp.texi
629
630 @node Function Substitutes
631 @chapter ISO C and POSIX Function Substitutes
632
633 This chapter describes which functions and function-like macros specified by
634 ISO C or POSIX are substituted by Gnulib, which portability pitfalls are
635 fixed by Gnulib, and which (known) portability problems are not worked around
636 by Gnulib.
637
638 The notation ``Gnulib module: ---'' means that Gnulib does not provide a
639 module providing a substitute for the function.  When the list
640 ``Portability problems not fixed by Gnulib'' is empty, such a module is
641 not needed: No portability problems are known.  Otherwise, it indicates
642 that such a module would be useful but is not available: Noone so far
643 found this function important enough to contribute a substitute for it.
644 If you need this particular function, you may write to
645 @code{<bug-gnulib at gnu dot org>}.
646
647 @menu
648 * FD_CLR::
649 * FD_ISSET::
650 * FD_SET::
651 * FD_ZERO::
652 * _Exit::
653 * _exit::
654 * _longjmp::
655 * _setjmp::
656 * _tolower::
657 * _toupper::
658 * a64l::
659 * abort::
660 * abs::
661 * accept::
662 * access::
663 * acos::
664 * acosf::
665 * acosh::
666 * acoshf::
667 * acoshl::
668 * acosl::
669 * aio_cancel::
670 * aio_error::
671 * aio_fsync::
672 * aio_read::
673 * aio_return::
674 * aio_suspend::
675 * aio_write::
676 * alarm::
677 * asctime::
678 * asctime_r::
679 * asin::
680 * asinf::
681 * asinh::
682 * asinhf::
683 * asinhl::
684 * asinl::
685 * assert::
686 * atan::
687 * atan2::
688 * atan2f::
689 * atan2l::
690 * atanf::
691 * atanh::
692 * atanhf::
693 * atanhl::
694 * atanl::
695 * atexit::
696 * atof::
697 * atoi::
698 * atol::
699 * atoll::
700 * basename::
701 * bcmp::
702 * bcopy::
703 * bind::
704 * bsd_signal::
705 * bsearch::
706 * btowc::
707 * bzero::
708 * cabs::
709 * cabsf::
710 * cabsl::
711 * cacos::
712 * cacosf::
713 * cacosh::
714 * cacoshf::
715 * cacoshl::
716 * cacosl::
717 * calloc::
718 * carg::
719 * cargf::
720 * cargl::
721 * casin::
722 * casinf::
723 * casinh::
724 * casinhf::
725 * casinhl::
726 * casinl::
727 * catan::
728 * catanf::
729 * catanh::
730 * catanhf::
731 * catanhl::
732 * catanl::
733 * catclose::
734 * catgets::
735 * catopen::
736 * cbrt::
737 * cbrtf::
738 * cbrtl::
739 * ccos::
740 * ccosf::
741 * ccosh::
742 * ccoshf::
743 * ccoshl::
744 * ccosl::
745 * ceil::
746 * ceilf::
747 * ceill::
748 * cexp::
749 * cexpf::
750 * cexpl::
751 * cfgetispeed::
752 * cfgetospeed::
753 * cfsetispeed::
754 * cfsetospeed::
755 * chdir::
756 * chmod::
757 * chown::
758 * cimag::
759 * cimagf::
760 * cimagl::
761 * clearerr::
762 * clock::
763 * clock_getcpuclockid::
764 * clock_getres::
765 * clock_gettime::
766 * clock_nanosleep::
767 * clock_settime::
768 * clog::
769 * clogf::
770 * clogl::
771 * close::
772 * closedir::
773 * closelog::
774 * confstr::
775 * conj::
776 * conjf::
777 * conjl::
778 * connect::
779 * copysign::
780 * copysignf::
781 * copysignl::
782 * cos::
783 * cosf::
784 * cosh::
785 * coshf::
786 * coshl::
787 * cosl::
788 * cpow::
789 * cpowf::
790 * cpowl::
791 * cproj::
792 * cprojf::
793 * cprojl::
794 * creal::
795 * crealf::
796 * creall::
797 * creat::
798 * crypt::
799 * csin::
800 * csinf::
801 * csinh::
802 * csinhf::
803 * csinhl::
804 * csinl::
805 * csqrt::
806 * csqrtf::
807 * csqrtl::
808 * ctan::
809 * ctanf::
810 * ctanh::
811 * ctanhf::
812 * ctanhl::
813 * ctanl::
814 * ctermid::
815 * ctime::
816 * ctime_r::
817 * daylight::
818 * dbm_clearerr::
819 * dbm_close::
820 * dbm_delete::
821 * dbm_error::
822 * dbm_fetch::
823 * dbm_firstkey::
824 * dbm_nextkey::
825 * dbm_open::
826 * dbm_store::
827 * difftime::
828 * dirname::
829 * div::
830 * dlclose::
831 * dlerror::
832 * dlopen::
833 * dlsym::
834 * drand48::
835 * dup::
836 * dup2::
837 * ecvt::
838 * encrypt::
839 * endgrent::
840 * endhostent::
841 * endnetent::
842 * endprotoent::
843 * endpwent::
844 * endservent::
845 * endutxent::
846 * environ::
847 * erand48::
848 * erf::
849 * erfc::
850 * erfcf::
851 * erfcl::
852 * erff::
853 * erfl::
854 * errno::
855 * execl::
856 * execle::
857 * execlp::
858 * execv::
859 * execve::
860 * execvp::
861 * exit::
862 * exp::
863 * exp2::
864 * exp2f::
865 * exp2l::
866 * expf::
867 * expl::
868 * expm1::
869 * expm1f::
870 * expm1l::
871 * fabs::
872 * fabsf::
873 * fabsl::
874 * fattach::
875 * fchdir::
876 * fchmod::
877 * fchown::
878 * fclose::
879 * fcntl::
880 * fcvt::
881 * fdatasync::
882 * fdetach::
883 * fdim::
884 * fdimf::
885 * fdiml::
886 * fdopen::
887 * feclearexcept::
888 * fegetenv::
889 * fegetexceptflag::
890 * fegetround::
891 * feholdexcept::
892 * feof::
893 * feraiseexcept::
894 * ferror::
895 * fesetenv::
896 * fesetexceptflag::
897 * fesetround::
898 * fetestexcept::
899 * feupdateenv::
900 * fflush::
901 * ffs::
902 * fgetc::
903 * fgetpos::
904 * fgets::
905 * fgetwc::
906 * fgetws::
907 * fileno::
908 * flockfile::
909 * floor::
910 * floorf::
911 * floorl::
912 * fma::
913 * fmaf::
914 * fmal::
915 * fmax::
916 * fmaxf::
917 * fmaxl::
918 * fmin::
919 * fminf::
920 * fminl::
921 * fmod::
922 * fmodf::
923 * fmodl::
924 * fmtmsg::
925 * fnmatch::
926 * fopen::
927 * fork::
928 * fpathconf::
929 * fpclassify::
930 * fprintf::
931 * fputc::
932 * fputs::
933 * fputwc::
934 * fputws::
935 * fread::
936 * free::
937 * freeaddrinfo::
938 * freopen::
939 * frexp::
940 * frexpf::
941 * frexpl::
942 * fscanf::
943 * fseek::
944 * fseeko::
945 * fsetpos::
946 * fstat::
947 * fstatvfs::
948 * fsync::
949 * ftell::
950 * ftello::
951 * ftime::
952 * ftok::
953 * ftruncate::
954 * ftrylockfile::
955 * ftw::
956 * funlockfile::
957 * fwide::
958 * fwprintf::
959 * fwrite::
960 * fwscanf::
961 * gai_strerror::
962 * gcvt::
963 * getaddrinfo::
964 * getc::
965 * getc_unlocked::
966 * getchar::
967 * getchar_unlocked::
968 * getcontext::
969 * getcwd::
970 * getdate::
971 * getdelim::
972 * getegid::
973 * getenv::
974 * geteuid::
975 * getgid::
976 * getgrent::
977 * getgrgid::
978 * getgrgid_r::
979 * getgrnam::
980 * getgrnam_r::
981 * getgroups::
982 * gethostbyaddr::
983 * gethostbyname::
984 * gethostent::
985 * gethostid::
986 * gethostname::
987 * getitimer::
988 * getline::
989 * getlogin::
990 * getlogin_r::
991 * getmsg::
992 * getnameinfo::
993 * getnetbyaddr::
994 * getnetbyname::
995 * getnetent::
996 * getopt::
997 * getpeername::
998 * getpgid::
999 * getpgrp::
1000 * getpid::
1001 * getpmsg::
1002 * getppid::
1003 * getpriority::
1004 * getprotobyname::
1005 * getprotobynumber::
1006 * getprotoent::
1007 * getpwent::
1008 * getpwnam::
1009 * getpwnam_r::
1010 * getpwuid::
1011 * getpwuid_r::
1012 * getrlimit::
1013 * getrusage::
1014 * gets::
1015 * getservbyname::
1016 * getservbyport::
1017 * getservent::
1018 * getsid::
1019 * getsockname::
1020 * getsockopt::
1021 * getsubopt::
1022 * gettimeofday::
1023 * getuid::
1024 * getutxent::
1025 * getutxid::
1026 * getutxline::
1027 * getwc::
1028 * getwchar::
1029 * getwd::
1030 * glob::
1031 * globfree::
1032 * gmtime::
1033 * gmtime_r::
1034 * grantpt::
1035 * h_errno::
1036 * hcreate::
1037 * hdestroy::
1038 * hsearch::
1039 * htonl::
1040 * htons::
1041 * hypot::
1042 * hypotf::
1043 * hypotl::
1044 * iconv::
1045 * iconv_close::
1046 * iconv_open::
1047 * if_freenameindex::
1048 * if_indextoname::
1049 * if_nameindex::
1050 * if_nametoindex::
1051 * ilogb::
1052 * ilogbf::
1053 * ilogbl::
1054 * imaxabs::
1055 * imaxdiv::
1056 * index::
1057 * inet_addr::
1058 * inet_ntoa::
1059 * inet_ntop::
1060 * inet_pton::
1061 * initstate::
1062 * insque::
1063 * ioctl::
1064 * isalnum::
1065 * isalpha::
1066 * isascii::
1067 * isastream::
1068 * isatty::
1069 * isblank::
1070 * iscntrl::
1071 * isdigit::
1072 * isfinite::
1073 * isgraph::
1074 * isgreater::
1075 * isgreaterequal::
1076 * isinf::
1077 * isless::
1078 * islessequal::
1079 * islessgreater::
1080 * islower::
1081 * isnan::
1082 * isnormal::
1083 * isprint::
1084 * ispunct::
1085 * isspace::
1086 * isunordered::
1087 * isupper::
1088 * iswalnum::
1089 * iswalpha::
1090 * iswblank::
1091 * iswcntrl::
1092 * iswctype::
1093 * iswdigit::
1094 * iswgraph::
1095 * iswlower::
1096 * iswprint::
1097 * iswpunct::
1098 * iswspace::
1099 * iswupper::
1100 * iswxdigit::
1101 * isxdigit::
1102 * j0::
1103 * j1::
1104 * jn::
1105 * jrand48::
1106 * kill::
1107 * killpg::
1108 * l64a::
1109 * labs::
1110 * lchown::
1111 * lcong48::
1112 * ldexp::
1113 * ldexpf::
1114 * ldexpl::
1115 * ldiv::
1116 * lfind::
1117 * lgamma::
1118 * lgammaf::
1119 * lgammal::
1120 * link::
1121 * lio_listio::
1122 * listen::
1123 * llabs::
1124 * lldiv::
1125 * llrint::
1126 * llrintf::
1127 * llrintl::
1128 * llround::
1129 * llroundf::
1130 * llroundl::
1131 * localeconv::
1132 * localtime::
1133 * localtime_r::
1134 * lockf::
1135 * log::
1136 * log10::
1137 * log10f::
1138 * log10l::
1139 * log1p::
1140 * log1pf::
1141 * log1pl::
1142 * log2::
1143 * log2f::
1144 * log2l::
1145 * logb::
1146 * logbf::
1147 * logbl::
1148 * logf::
1149 * logl::
1150 * longjmp::
1151 * lrand48::
1152 * lrint::
1153 * lrintf::
1154 * lrintl::
1155 * lround::
1156 * lroundf::
1157 * lroundl::
1158 * lsearch::
1159 * lseek::
1160 * lstat::
1161 * makecontext::
1162 * malloc::
1163 * mblen::
1164 * mbrlen::
1165 * mbrtowc::
1166 * mbsinit::
1167 * mbsrtowcs::
1168 * mbstowcs::
1169 * mbtowc::
1170 * memccpy::
1171 * memchr::
1172 * memcmp::
1173 * memcpy::
1174 * memmove::
1175 * memset::
1176 * mkdir::
1177 * mkfifo::
1178 * mknod::
1179 * mkstemp::
1180 * mktemp::
1181 * mktime::
1182 * mlock::
1183 * mlockall::
1184 * mmap::
1185 * modf::
1186 * modff::
1187 * modfl::
1188 * mprotect::
1189 * mq_close::
1190 * mq_getattr::
1191 * mq_notify::
1192 * mq_open::
1193 * mq_receive::
1194 * mq_send::
1195 * mq_setattr::
1196 * mq_timedreceive::
1197 * mq_timedsend::
1198 * mq_unlink::
1199 * mrand48::
1200 * msgctl::
1201 * msgget::
1202 * msgrcv::
1203 * msgsnd::
1204 * msync::
1205 * munlock::
1206 * munlockall::
1207 * munmap::
1208 * nan::
1209 * nanf::
1210 * nanl::
1211 * nanosleep::
1212 * nearbyint::
1213 * nearbyintf::
1214 * nearbyintl::
1215 * nextafter::
1216 * nextafterf::
1217 * nextafterl::
1218 * nexttoward::
1219 * nexttowardf::
1220 * nexttowardl::
1221 * nftw::
1222 * nice::
1223 * nl_langinfo::
1224 * nrand48::
1225 * ntohl::
1226 * ntohs::
1227 * open::
1228 * opendir::
1229 * openlog::
1230 * optarg::
1231 * pathconf::
1232 * pause::
1233 * pclose::
1234 * perror::
1235 * pipe::
1236 * poll::
1237 * popen::
1238 * posix_fadvise::
1239 * posix_fallocate::
1240 * posix_madvise::
1241 * posix_mem_offset::
1242 * posix_memalign::
1243 * posix_openpt::
1244 * posix_spawn::
1245 * posix_spawn_file_actions_addclose::
1246 * posix_spawn_file_actions_adddup2::
1247 * posix_spawn_file_actions_addopen::
1248 * posix_spawn_file_actions_destroy::
1249 * posix_spawn_file_actions_init::
1250 * posix_spawnattr_destroy::
1251 * posix_spawnattr_getflags::
1252 * posix_spawnattr_getpgroup::
1253 * posix_spawnattr_getschedparam::
1254 * posix_spawnattr_getschedpolicy::
1255 * posix_spawnattr_getsigdefault::
1256 * posix_spawnattr_getsigmask::
1257 * posix_spawnattr_init::
1258 * posix_spawnattr_setflags::
1259 * posix_spawnattr_setpgroup::
1260 * posix_spawnattr_setschedparam::
1261 * posix_spawnattr_setschedpolicy::
1262 * posix_spawnattr_setsigdefault::
1263 * posix_spawnattr_setsigmask::
1264 * posix_spawnp::
1265 * posix_trace_attr_destroy::
1266 * posix_trace_attr_getclockres::
1267 * posix_trace_attr_getcreatetime::
1268 * posix_trace_attr_getgenversion::
1269 * posix_trace_attr_getinherited::
1270 * posix_trace_attr_getlogfullpolicy::
1271 * posix_trace_attr_getlogsize::
1272 * posix_trace_attr_getmaxdatasize::
1273 * posix_trace_attr_getmaxsystemeventsize::
1274 * posix_trace_attr_getmaxusereventsize::
1275 * posix_trace_attr_getname::
1276 * posix_trace_attr_getstreamfullpolicy::
1277 * posix_trace_attr_getstreamsize::
1278 * posix_trace_attr_init::
1279 * posix_trace_attr_setinherited::
1280 * posix_trace_attr_setlogfullpolicy::
1281 * posix_trace_attr_setlogsize::
1282 * posix_trace_attr_setmaxdatasize::
1283 * posix_trace_attr_setname::
1284 * posix_trace_attr_setstreamfullpolicy::
1285 * posix_trace_attr_setstreamsize::
1286 * posix_trace_clear::
1287 * posix_trace_close::
1288 * posix_trace_create::
1289 * posix_trace_create_withlog::
1290 * posix_trace_event::
1291 * posix_trace_eventid_equal::
1292 * posix_trace_eventid_get_name::
1293 * posix_trace_eventid_open::
1294 * posix_trace_eventset_add::
1295 * posix_trace_eventset_del::
1296 * posix_trace_eventset_empty::
1297 * posix_trace_eventset_fill::
1298 * posix_trace_eventset_ismember::
1299 * posix_trace_eventtypelist_getnext_id::
1300 * posix_trace_eventtypelist_rewind::
1301 * posix_trace_flush::
1302 * posix_trace_get_attr::
1303 * posix_trace_get_filter::
1304 * posix_trace_get_status::
1305 * posix_trace_getnext_event::
1306 * posix_trace_open::
1307 * posix_trace_rewind::
1308 * posix_trace_set_filter::
1309 * posix_trace_shutdown::
1310 * posix_trace_start::
1311 * posix_trace_stop::
1312 * posix_trace_timedgetnext_event::
1313 * posix_trace_trid_eventid_open::
1314 * posix_trace_trygetnext_event::
1315 * posix_typed_mem_get_info::
1316 * posix_typed_mem_open::
1317 * pow::
1318 * powf::
1319 * powl::
1320 * pread::
1321 * printf::
1322 * pselect::
1323 * pthread_atfork::
1324 * pthread_attr_destroy::
1325 * pthread_attr_getdetachstate::
1326 * pthread_attr_getguardsize::
1327 * pthread_attr_getinheritsched::
1328 * pthread_attr_getschedparam::
1329 * pthread_attr_getschedpolicy::
1330 * pthread_attr_getscope::
1331 * pthread_attr_getstack::
1332 * pthread_attr_getstackaddr::
1333 * pthread_attr_getstacksize::
1334 * pthread_attr_init::
1335 * pthread_attr_setdetachstate::
1336 * pthread_attr_setguardsize::
1337 * pthread_attr_setinheritsched::
1338 * pthread_attr_setschedparam::
1339 * pthread_attr_setschedpolicy::
1340 * pthread_attr_setscope::
1341 * pthread_attr_setstack::
1342 * pthread_attr_setstackaddr::
1343 * pthread_attr_setstacksize::
1344 * pthread_barrier_destroy::
1345 * pthread_barrier_init::
1346 * pthread_barrier_wait::
1347 * pthread_barrierattr_destroy::
1348 * pthread_barrierattr_getpshared::
1349 * pthread_barrierattr_init::
1350 * pthread_barrierattr_setpshared::
1351 * pthread_cancel::
1352 * pthread_cleanup_pop::
1353 * pthread_cleanup_push::
1354 * pthread_cond_broadcast::
1355 * pthread_cond_destroy::
1356 * pthread_cond_init::
1357 * pthread_cond_signal::
1358 * pthread_cond_timedwait::
1359 * pthread_cond_wait::
1360 * pthread_condattr_destroy::
1361 * pthread_condattr_getclock::
1362 * pthread_condattr_getpshared::
1363 * pthread_condattr_init::
1364 * pthread_condattr_setclock::
1365 * pthread_condattr_setpshared::
1366 * pthread_create::
1367 * pthread_detach::
1368 * pthread_equal::
1369 * pthread_exit::
1370 * pthread_getconcurrency::
1371 * pthread_getcpuclockid::
1372 * pthread_getschedparam::
1373 * pthread_getspecific::
1374 * pthread_join::
1375 * pthread_key_create::
1376 * pthread_key_delete::
1377 * pthread_kill::
1378 * pthread_mutex_destroy::
1379 * pthread_mutex_getprioceiling::
1380 * pthread_mutex_init::
1381 * pthread_mutex_lock::
1382 * pthread_mutex_setprioceiling::
1383 * pthread_mutex_timedlock::
1384 * pthread_mutex_trylock::
1385 * pthread_mutex_unlock::
1386 * pthread_mutexattr_destroy::
1387 * pthread_mutexattr_getprioceiling::
1388 * pthread_mutexattr_getprotocol::
1389 * pthread_mutexattr_getpshared::
1390 * pthread_mutexattr_gettype::
1391 * pthread_mutexattr_init::
1392 * pthread_mutexattr_setprioceiling::
1393 * pthread_mutexattr_setprotocol::
1394 * pthread_mutexattr_setpshared::
1395 * pthread_mutexattr_settype::
1396 * pthread_once::
1397 * pthread_rwlock_destroy::
1398 * pthread_rwlock_init::
1399 * pthread_rwlock_rdlock::
1400 * pthread_rwlock_timedrdlock::
1401 * pthread_rwlock_timedwrlock::
1402 * pthread_rwlock_tryrdlock::
1403 * pthread_rwlock_trywrlock::
1404 * pthread_rwlock_unlock::
1405 * pthread_rwlock_wrlock::
1406 * pthread_rwlockattr_destroy::
1407 * pthread_rwlockattr_getpshared::
1408 * pthread_rwlockattr_init::
1409 * pthread_rwlockattr_setpshared::
1410 * pthread_self::
1411 * pthread_setcancelstate::
1412 * pthread_setcanceltype::
1413 * pthread_setconcurrency::
1414 * pthread_setschedparam::
1415 * pthread_setschedprio::
1416 * pthread_setspecific::
1417 * pthread_sigmask::
1418 * pthread_spin_destroy::
1419 * pthread_spin_init::
1420 * pthread_spin_lock::
1421 * pthread_spin_trylock::
1422 * pthread_spin_unlock::
1423 * pthread_testcancel::
1424 * ptsname::
1425 * putc::
1426 * putc_unlocked::
1427 * putchar::
1428 * putchar_unlocked::
1429 * putenv::
1430 * putmsg::
1431 * putpmsg::
1432 * puts::
1433 * pututxline::
1434 * putwc::
1435 * putwchar::
1436 * pwrite::
1437 * qsort::
1438 * raise::
1439 * rand::
1440 * rand_r::
1441 * random::
1442 * read::
1443 * readdir::
1444 * readdir_r::
1445 * readlink::
1446 * readv::
1447 * realloc::
1448 * realpath::
1449 * recv::
1450 * recvfrom::
1451 * recvmsg::
1452 * regcomp::
1453 * regerror::
1454 * regexec::
1455 * regfree::
1456 * remainder::
1457 * remainderf::
1458 * remainderl::
1459 * remove::
1460 * remque::
1461 * remquo::
1462 * remquof::
1463 * remquol::
1464 * rename::
1465 * rewind::
1466 * rewinddir::
1467 * rindex::
1468 * rint::
1469 * rintf::
1470 * rintl::
1471 * rmdir::
1472 * round::
1473 * roundf::
1474 * roundl::
1475 * scalb::
1476 * scalbln::
1477 * scalblnf::
1478 * scalblnl::
1479 * scalbn::
1480 * scalbnf::
1481 * scalbnl::
1482 * scanf::
1483 * sched_get_priority_max::
1484 * sched_getparam::
1485 * sched_getscheduler::
1486 * sched_rr_get_interval::
1487 * sched_setparam::
1488 * sched_setscheduler::
1489 * sched_yield::
1490 * seed48::
1491 * seekdir::
1492 * select::
1493 * sem_close::
1494 * sem_destroy::
1495 * sem_getvalue::
1496 * sem_init::
1497 * sem_open::
1498 * sem_post::
1499 * sem_timedwait::
1500 * sem_trywait::
1501 * sem_unlink::
1502 * sem_wait::
1503 * semctl::
1504 * semget::
1505 * semop::
1506 * send::
1507 * sendmsg::
1508 * sendto::
1509 * setbuf::
1510 * setcontext::
1511 * setegid::
1512 * setenv::
1513 * seteuid::
1514 * setgid::
1515 * setgrent::
1516 * sethostent::
1517 * setitimer::
1518 * setjmp::
1519 * setkey::
1520 * setlocale::
1521 * setlogmask::
1522 * setnetent::
1523 * setpgid::
1524 * setpgrp::
1525 * setpriority::
1526 * setprotoent::
1527 * setpwent::
1528 * setregid::
1529 * setreuid::
1530 * setrlimit::
1531 * setservent::
1532 * setsid::
1533 * setsockopt::
1534 * setstate::
1535 * setuid::
1536 * setutxent::
1537 * setvbuf::
1538 * shm_open::
1539 * shm_unlink::
1540 * shmat::
1541 * shmctl::
1542 * shmdt::
1543 * shmget::
1544 * shutdown::
1545 * sigaction::
1546 * sigaddset::
1547 * sigaltstack::
1548 * sigdelset::
1549 * sigemptyset::
1550 * sigfillset::
1551 * sighold::
1552 * sigignore::
1553 * siginterrupt::
1554 * sigismember::
1555 * siglongjmp::
1556 * signal::
1557 * signbit::
1558 * sigpause::
1559 * sigpending::
1560 * sigprocmask::
1561 * sigqueue::
1562 * sigrelse::
1563 * sigset::
1564 * sigsetjmp::
1565 * sigsuspend::
1566 * sigtimedwait::
1567 * sigwait::
1568 * sigwaitinfo::
1569 * sin::
1570 * sinf::
1571 * sinh::
1572 * sinhf::
1573 * sinhl::
1574 * sinl::
1575 * sleep::
1576 * snprintf::
1577 * sockatmark::
1578 * socket::
1579 * socketpair::
1580 * sprintf::
1581 * sqrt::
1582 * sqrtf::
1583 * sqrtl::
1584 * srand::
1585 * srand48::
1586 * srandom::
1587 * sscanf::
1588 * stat::
1589 * statvfs::
1590 * stderr::
1591 * stdin::
1592 * stdout::
1593 * strcasecmp::
1594 * strcat::
1595 * strchr::
1596 * strcmp::
1597 * strcoll::
1598 * strcpy::
1599 * strcspn::
1600 * strdup::
1601 * strerror::
1602 * strerror_r::
1603 * strfmon::
1604 * strftime::
1605 * strlen::
1606 * strncasecmp::
1607 * strncat::
1608 * strncmp::
1609 * strncpy::
1610 * strpbrk::
1611 * strptime::
1612 * strrchr::
1613 * strspn::
1614 * strstr::
1615 * strtod::
1616 * strtof::
1617 * strtoimax::
1618 * strtok::
1619 * strtok_r::
1620 * strtol::
1621 * strtold::
1622 * strtoll::
1623 * strtoul::
1624 * strtoull::
1625 * strtoumax::
1626 * strxfrm::
1627 * swab::
1628 * swapcontext::
1629 * swprintf::
1630 * swscanf::
1631 * symlink::
1632 * sync::
1633 * sysconf::
1634 * syslog::
1635 * system::
1636 * tan::
1637 * tanf::
1638 * tanh::
1639 * tanhf::
1640 * tanhl::
1641 * tanl::
1642 * tcdrain::
1643 * tcflow::
1644 * tcflush::
1645 * tcgetattr::
1646 * tcgetpgrp::
1647 * tcgetsid::
1648 * tcsendbreak::
1649 * tcsetattr::
1650 * tcsetpgrp::
1651 * tdelete::
1652 * telldir::
1653 * tempnam::
1654 * tfind::
1655 * tgamma::
1656 * tgammaf::
1657 * tgammal::
1658 * time::
1659 * timer_create::
1660 * timer_delete::
1661 * timer_getoverrun::
1662 * timer_settime::
1663 * times::
1664 * timezone::
1665 * tmpfile::
1666 * tmpnam::
1667 * toascii::
1668 * tolower::
1669 * toupper::
1670 * towctrans::
1671 * towlower::
1672 * towupper::
1673 * trunc::
1674 * truncate::
1675 * truncf::
1676 * truncl::
1677 * tsearch::
1678 * ttyname::
1679 * ttyname_r::
1680 * twalk::
1681 * tzname::
1682 * tzset::
1683 * ualarm::
1684 * ulimit::
1685 * umask::
1686 * uname::
1687 * ungetc::
1688 * ungetwc::
1689 * unlink::
1690 * unlockpt::
1691 * unsetenv::
1692 * usleep::
1693 * utime::
1694 * utimes::
1695 * va_arg::
1696 * va_copy::
1697 * va_end::
1698 * va_start::
1699 * vfork::
1700 * vfprintf::
1701 * vfscanf::
1702 * vfwprintf::
1703 * vfwscanf::
1704 * vprintf::
1705 * vscanf::
1706 * vsnprintf::
1707 * vsprintf::
1708 * vsscanf::
1709 * vswprintf::
1710 * vswscanf::
1711 * vwprintf::
1712 * vwscanf::
1713 * wait::
1714 * waitid::
1715 * waitpid::
1716 * wcrtomb::
1717 * wcscat::
1718 * wcschr::
1719 * wcscmp::
1720 * wcscoll::
1721 * wcscpy::
1722 * wcscspn::
1723 * wcsftime::
1724 * wcslen::
1725 * wcsncat::
1726 * wcsncmp::
1727 * wcsncpy::
1728 * wcspbrk::
1729 * wcsrchr::
1730 * wcsrtombs::
1731 * wcsspn::
1732 * wcsstr::
1733 * wcstod::
1734 * wcstof::
1735 * wcstoimax::
1736 * wcstok::
1737 * wcstol::
1738 * wcstold::
1739 * wcstoll::
1740 * wcstombs::
1741 * wcstoul::
1742 * wcstoull::
1743 * wcstoumax::
1744 * wcswcs::
1745 * wcswidth::
1746 * wcsxfrm::
1747 * wctob::
1748 * wctomb::
1749 * wctrans::
1750 * wctype::
1751 * wcwidth::
1752 * wmemchr::
1753 * wmemcmp::
1754 * wmemcpy::
1755 * wmemmove::
1756 * wmemset::
1757 * wordexp::
1758 * wordfree::
1759 * wprintf::
1760 * write::
1761 * writev::
1762 * wscanf::
1763 * y0::
1764 * y1::
1765 * yn::
1766 @end menu
1767
1768 @include functions/FD_CLR.texi
1769 @include functions/FD_ISSET.texi
1770 @include functions/FD_SET.texi
1771 @include functions/FD_ZERO.texi
1772 @include functions/_Exit_C99.texi
1773 @include functions/_exit.texi
1774 @include functions/_longjmp.texi
1775 @include functions/_setjmp.texi
1776 @include functions/_tolower.texi
1777 @include functions/_toupper.texi
1778 @include functions/a64l.texi
1779 @include functions/abort.texi
1780 @include functions/abs.texi
1781 @include functions/accept.texi
1782 @include functions/access.texi
1783 @include functions/acos.texi
1784 @include functions/acosf.texi
1785 @include functions/acosh.texi
1786 @include functions/acoshf.texi
1787 @include functions/acoshl.texi
1788 @include functions/acosl.texi
1789 @include functions/aio_cancel.texi
1790 @include functions/aio_error.texi
1791 @include functions/aio_fsync.texi
1792 @include functions/aio_read.texi
1793 @include functions/aio_return.texi
1794 @include functions/aio_suspend.texi
1795 @include functions/aio_write.texi
1796 @include functions/alarm.texi
1797 @include functions/asctime.texi
1798 @include functions/asctime_r.texi
1799 @include functions/asin.texi
1800 @include functions/asinf.texi
1801 @include functions/asinh.texi
1802 @include functions/asinhf.texi
1803 @include functions/asinhl.texi
1804 @include functions/asinl.texi
1805 @include functions/assert.texi
1806 @include functions/atan.texi
1807 @include functions/atan2.texi
1808 @include functions/atan2f.texi
1809 @include functions/atan2l.texi
1810 @include functions/atanf.texi
1811 @include functions/atanh.texi
1812 @include functions/atanhf.texi
1813 @include functions/atanhl.texi
1814 @include functions/atanl.texi
1815 @include functions/atexit.texi
1816 @include functions/atof.texi
1817 @include functions/atoi.texi
1818 @include functions/atol.texi
1819 @include functions/atoll.texi
1820 @include functions/basename.texi
1821 @include functions/bcmp.texi
1822 @include functions/bcopy.texi
1823 @include functions/bind.texi
1824 @include functions/bsd_signal.texi
1825 @include functions/bsearch.texi
1826 @include functions/btowc.texi
1827 @include functions/bzero.texi
1828 @include functions/cabs.texi
1829 @include functions/cabsf.texi
1830 @include functions/cabsl.texi
1831 @include functions/cacos.texi
1832 @include functions/cacosf.texi
1833 @include functions/cacosh.texi
1834 @include functions/cacoshf.texi
1835 @include functions/cacoshl.texi
1836 @include functions/cacosl.texi
1837 @include functions/calloc.texi
1838 @include functions/carg.texi
1839 @include functions/cargf.texi
1840 @include functions/cargl.texi
1841 @include functions/casin.texi
1842 @include functions/casinf.texi
1843 @include functions/casinh.texi
1844 @include functions/casinhf.texi
1845 @include functions/casinhl.texi
1846 @include functions/casinl.texi
1847 @include functions/catan.texi
1848 @include functions/catanf.texi
1849 @include functions/catanh.texi
1850 @include functions/catanhf.texi
1851 @include functions/catanhl.texi
1852 @include functions/catanl.texi
1853 @include functions/catclose.texi
1854 @include functions/catgets.texi
1855 @include functions/catopen.texi
1856 @include functions/cbrt.texi
1857 @include functions/cbrtf.texi
1858 @include functions/cbrtl.texi
1859 @include functions/ccos.texi
1860 @include functions/ccosf.texi
1861 @include functions/ccosh.texi
1862 @include functions/ccoshf.texi
1863 @include functions/ccoshl.texi
1864 @include functions/ccosl.texi
1865 @include functions/ceil.texi
1866 @include functions/ceilf.texi
1867 @include functions/ceill.texi
1868 @include functions/cexp.texi
1869 @include functions/cexpf.texi
1870 @include functions/cexpl.texi
1871 @include functions/cfgetispeed.texi
1872 @include functions/cfgetospeed.texi
1873 @include functions/cfsetispeed.texi
1874 @include functions/cfsetospeed.texi
1875 @include functions/chdir.texi
1876 @include functions/chmod.texi
1877 @include functions/chown.texi
1878 @include functions/cimag.texi
1879 @include functions/cimagf.texi
1880 @include functions/cimagl.texi
1881 @include functions/clearerr.texi
1882 @include functions/clock.texi
1883 @include functions/clock_getcpuclockid.texi
1884 @include functions/clock_getres.texi
1885 @include functions/clock_gettime.texi
1886 @include functions/clock_nanosleep.texi
1887 @include functions/clock_settime.texi
1888 @include functions/clog.texi
1889 @include functions/clogf.texi
1890 @include functions/clogl.texi
1891 @include functions/close.texi
1892 @include functions/closedir.texi
1893 @include functions/closelog.texi
1894 @include functions/confstr.texi
1895 @include functions/conj.texi
1896 @include functions/conjf.texi
1897 @include functions/conjl.texi
1898 @include functions/connect.texi
1899 @include functions/copysign.texi
1900 @include functions/copysignf.texi
1901 @include functions/copysignl.texi
1902 @include functions/cos.texi
1903 @include functions/cosf.texi
1904 @include functions/cosh.texi
1905 @include functions/coshf.texi
1906 @include functions/coshl.texi
1907 @include functions/cosl.texi
1908 @include functions/cpow.texi
1909 @include functions/cpowf.texi
1910 @include functions/cpowl.texi
1911 @include functions/cproj.texi
1912 @include functions/cprojf.texi
1913 @include functions/cprojl.texi
1914 @include functions/creal.texi
1915 @include functions/crealf.texi
1916 @include functions/creall.texi
1917 @include functions/creat.texi
1918 @include functions/crypt.texi
1919 @include functions/csin.texi
1920 @include functions/csinf.texi
1921 @include functions/csinh.texi
1922 @include functions/csinhf.texi
1923 @include functions/csinhl.texi
1924 @include functions/csinl.texi
1925 @include functions/csqrt.texi
1926 @include functions/csqrtf.texi
1927 @include functions/csqrtl.texi
1928 @include functions/ctan.texi
1929 @include functions/ctanf.texi
1930 @include functions/ctanh.texi
1931 @include functions/ctanhf.texi
1932 @include functions/ctanhl.texi
1933 @include functions/ctanl.texi
1934 @include functions/ctermid.texi
1935 @include functions/ctime.texi
1936 @include functions/ctime_r.texi
1937 @include functions/daylight.texi
1938 @include functions/dbm_clearerr.texi
1939 @include functions/dbm_close.texi
1940 @include functions/dbm_delete.texi
1941 @include functions/dbm_error.texi
1942 @include functions/dbm_fetch.texi
1943 @include functions/dbm_firstkey.texi
1944 @include functions/dbm_nextkey.texi
1945 @include functions/dbm_open.texi
1946 @include functions/dbm_store.texi
1947 @include functions/difftime.texi
1948 @include functions/dirname.texi
1949 @include functions/div.texi
1950 @include functions/dlclose.texi
1951 @include functions/dlerror.texi
1952 @include functions/dlopen.texi
1953 @include functions/dlsym.texi
1954 @include functions/drand48.texi
1955 @include functions/dup.texi
1956 @include functions/dup2.texi
1957 @include functions/ecvt.texi
1958 @include functions/encrypt.texi
1959 @include functions/endgrent.texi
1960 @include functions/endhostent.texi
1961 @include functions/endnetent.texi
1962 @include functions/endprotoent.texi
1963 @include functions/endpwent.texi
1964 @include functions/endservent.texi
1965 @include functions/endutxent.texi
1966 @include functions/environ.texi
1967 @include functions/erand48.texi
1968 @include functions/erf.texi
1969 @include functions/erfc.texi
1970 @include functions/erfcf.texi
1971 @include functions/erfcl.texi
1972 @include functions/erff.texi
1973 @include functions/erfl.texi
1974 @include functions/errno.texi
1975 @include functions/execl.texi
1976 @include functions/execle.texi
1977 @include functions/execlp.texi
1978 @include functions/execv.texi
1979 @include functions/execve.texi
1980 @include functions/execvp.texi
1981 @include functions/exit.texi
1982 @include functions/exp.texi
1983 @include functions/exp2.texi
1984 @include functions/exp2f.texi
1985 @include functions/exp2l.texi
1986 @include functions/expf.texi
1987 @include functions/expl.texi
1988 @include functions/expm1.texi
1989 @include functions/expm1f.texi
1990 @include functions/expm1l.texi
1991 @include functions/fabs.texi
1992 @include functions/fabsf.texi
1993 @include functions/fabsl.texi
1994 @include functions/fattach.texi
1995 @include functions/fchdir.texi
1996 @include functions/fchmod.texi
1997 @include functions/fchown.texi
1998 @include functions/fclose.texi
1999 @include functions/fcntl.texi
2000 @include functions/fcvt.texi
2001 @include functions/fdatasync.texi
2002 @include functions/fdetach.texi
2003 @include functions/fdim.texi
2004 @include functions/fdimf.texi
2005 @include functions/fdiml.texi
2006 @include functions/fdopen.texi
2007 @include functions/feclearexcept.texi
2008 @include functions/fegetenv.texi
2009 @include functions/fegetexceptflag.texi
2010 @include functions/fegetround.texi
2011 @include functions/feholdexcept.texi
2012 @include functions/feof.texi
2013 @include functions/feraiseexcept.texi
2014 @include functions/ferror.texi
2015 @include functions/fesetenv.texi
2016 @include functions/fesetexceptflag.texi
2017 @include functions/fesetround.texi
2018 @include functions/fetestexcept.texi
2019 @include functions/feupdateenv.texi
2020 @include functions/fflush.texi
2021 @include functions/ffs.texi
2022 @include functions/fgetc.texi
2023 @include functions/fgetpos.texi
2024 @include functions/fgets.texi
2025 @include functions/fgetwc.texi
2026 @include functions/fgetws.texi
2027 @include functions/fileno.texi
2028 @include functions/flockfile.texi
2029 @include functions/floor.texi
2030 @include functions/floorf.texi
2031 @include functions/floorl.texi
2032 @include functions/fma.texi
2033 @include functions/fmaf.texi
2034 @include functions/fmal.texi
2035 @include functions/fmax.texi
2036 @include functions/fmaxf.texi
2037 @include functions/fmaxl.texi
2038 @include functions/fmin.texi
2039 @include functions/fminf.texi
2040 @include functions/fminl.texi
2041 @include functions/fmod.texi
2042 @include functions/fmodf.texi
2043 @include functions/fmodl.texi
2044 @include functions/fmtmsg.texi
2045 @include functions/fnmatch.texi
2046 @include functions/fopen.texi
2047 @include functions/fork.texi
2048 @include functions/fpathconf.texi
2049 @include functions/fpclassify.texi
2050 @include functions/fprintf.texi
2051 @include functions/fputc.texi
2052 @include functions/fputs.texi
2053 @include functions/fputwc.texi
2054 @include functions/fputws.texi
2055 @include functions/fread.texi
2056 @include functions/free.texi
2057 @include functions/freeaddrinfo.texi
2058 @include functions/freopen.texi
2059 @include functions/frexp.texi
2060 @include functions/frexpf.texi
2061 @include functions/frexpl.texi
2062 @include functions/fscanf.texi
2063 @include functions/fseek.texi
2064 @include functions/fseeko.texi
2065 @include functions/fsetpos.texi
2066 @include functions/fstat.texi
2067 @include functions/fstatvfs.texi
2068 @include functions/fsync.texi
2069 @include functions/ftell.texi
2070 @include functions/ftello.texi
2071 @include functions/ftime.texi
2072 @include functions/ftok.texi
2073 @include functions/ftruncate.texi
2074 @include functions/ftrylockfile.texi
2075 @include functions/ftw.texi
2076 @include functions/funlockfile.texi
2077 @include functions/fwide.texi
2078 @include functions/fwprintf.texi
2079 @include functions/fwrite.texi
2080 @include functions/fwscanf.texi
2081 @include functions/gai_strerror.texi
2082 @include functions/gcvt.texi
2083 @include functions/getaddrinfo.texi
2084 @include functions/getc.texi
2085 @include functions/getc_unlocked.texi
2086 @include functions/getchar.texi
2087 @include functions/getchar_unlocked.texi
2088 @include functions/getcontext.texi
2089 @include functions/getcwd.texi
2090 @include functions/getdate.texi
2091 @include functions/getdelim.texi
2092 @include functions/getegid.texi
2093 @include functions/getenv.texi
2094 @include functions/geteuid.texi
2095 @include functions/getgid.texi
2096 @include functions/getgrent.texi
2097 @include functions/getgrgid.texi
2098 @include functions/getgrgid_r.texi
2099 @include functions/getgrnam.texi
2100 @include functions/getgrnam_r.texi
2101 @include functions/getgroups.texi
2102 @include functions/gethostbyaddr.texi
2103 @include functions/gethostbyname.texi
2104 @include functions/gethostent.texi
2105 @include functions/gethostid.texi
2106 @include functions/gethostname.texi
2107 @include functions/getitimer.texi
2108 @include functions/getline.texi
2109 @include functions/getlogin.texi
2110 @include functions/getlogin_r.texi
2111 @include functions/getmsg.texi
2112 @include functions/getnameinfo.texi
2113 @include functions/getnetbyaddr.texi
2114 @include functions/getnetbyname.texi
2115 @include functions/getnetent.texi
2116 @include functions/getopt.texi
2117 @include functions/getpeername.texi
2118 @include functions/getpgid.texi
2119 @include functions/getpgrp.texi
2120 @include functions/getpid.texi
2121 @include functions/getpmsg.texi
2122 @include functions/getppid.texi
2123 @include functions/getpriority.texi
2124 @include functions/getprotobyname.texi
2125 @include functions/getprotobynumber.texi
2126 @include functions/getprotoent.texi
2127 @include functions/getpwent.texi
2128 @include functions/getpwnam.texi
2129 @include functions/getpwnam_r.texi
2130 @include functions/getpwuid.texi
2131 @include functions/getpwuid_r.texi
2132 @include functions/getrlimit.texi
2133 @include functions/getrusage.texi
2134 @include functions/gets.texi
2135 @include functions/getservbyname.texi
2136 @include functions/getservbyport.texi
2137 @include functions/getservent.texi
2138 @include functions/getsid.texi
2139 @include functions/getsockname.texi
2140 @include functions/getsockopt.texi
2141 @include functions/getsubopt.texi
2142 @include functions/gettimeofday.texi
2143 @include functions/getuid.texi
2144 @include functions/getutxent.texi
2145 @include functions/getutxid.texi
2146 @include functions/getutxline.texi
2147 @include functions/getwc.texi
2148 @include functions/getwchar.texi
2149 @include functions/getwd.texi
2150 @include functions/glob.texi
2151 @include functions/globfree.texi
2152 @include functions/gmtime.texi
2153 @include functions/gmtime_r.texi
2154 @include functions/grantpt.texi
2155 @include functions/h_errno.texi
2156 @include functions/hcreate.texi
2157 @include functions/hdestroy.texi
2158 @include functions/hsearch.texi
2159 @include functions/htonl.texi
2160 @include functions/htons.texi
2161 @include functions/hypot.texi
2162 @include functions/hypotf.texi
2163 @include functions/hypotl.texi
2164 @include functions/iconv.texi
2165 @include functions/iconv_close.texi
2166 @include functions/iconv_open.texi
2167 @include functions/if_freenameindex.texi
2168 @include functions/if_indextoname.texi
2169 @include functions/if_nameindex.texi
2170 @include functions/if_nametoindex.texi
2171 @include functions/ilogb.texi
2172 @include functions/ilogbf.texi
2173 @include functions/ilogbl.texi
2174 @include functions/imaxabs.texi
2175 @include functions/imaxdiv.texi
2176 @include functions/index.texi
2177 @include functions/inet_addr.texi
2178 @include functions/inet_ntoa.texi
2179 @include functions/inet_ntop.texi
2180 @include functions/inet_pton.texi
2181 @include functions/initstate.texi
2182 @include functions/insque.texi
2183 @include functions/ioctl.texi
2184 @include functions/isalnum.texi
2185 @include functions/isalpha.texi
2186 @include functions/isascii.texi
2187 @include functions/isastream.texi
2188 @include functions/isatty.texi
2189 @include functions/isblank.texi
2190 @include functions/iscntrl.texi
2191 @include functions/isdigit.texi
2192 @include functions/isfinite.texi
2193 @include functions/isgraph.texi
2194 @include functions/isgreater.texi
2195 @include functions/isgreaterequal.texi
2196 @include functions/isinf.texi
2197 @include functions/isless.texi
2198 @include functions/islessequal.texi
2199 @include functions/islessgreater.texi
2200 @include functions/islower.texi
2201 @include functions/isnan.texi
2202 @include functions/isnormal.texi
2203 @include functions/isprint.texi
2204 @include functions/ispunct.texi
2205 @include functions/isspace.texi
2206 @include functions/isunordered.texi
2207 @include functions/isupper.texi
2208 @include functions/iswalnum.texi
2209 @include functions/iswalpha.texi
2210 @include functions/iswblank.texi
2211 @include functions/iswcntrl.texi
2212 @include functions/iswctype.texi
2213 @include functions/iswdigit.texi
2214 @include functions/iswgraph.texi
2215 @include functions/iswlower.texi
2216 @include functions/iswprint.texi
2217 @include functions/iswpunct.texi
2218 @include functions/iswspace.texi
2219 @include functions/iswupper.texi
2220 @include functions/iswxdigit.texi
2221 @include functions/isxdigit.texi
2222 @include functions/j0.texi
2223 @include functions/j1.texi
2224 @include functions/jn.texi
2225 @include functions/jrand48.texi
2226 @include functions/kill.texi
2227 @include functions/killpg.texi
2228 @include functions/l64a.texi
2229 @include functions/labs.texi
2230 @include functions/lchown.texi
2231 @include functions/lcong48.texi
2232 @include functions/ldexp.texi
2233 @include functions/ldexpf.texi
2234 @include functions/ldexpl.texi
2235 @include functions/ldiv.texi
2236 @include functions/lfind.texi
2237 @include functions/lgamma.texi
2238 @include functions/lgammaf.texi
2239 @include functions/lgammal.texi
2240 @include functions/link.texi
2241 @include functions/lio_listio.texi
2242 @include functions/listen.texi
2243 @include functions/llabs.texi
2244 @include functions/lldiv.texi
2245 @include functions/llrint.texi
2246 @include functions/llrintf.texi
2247 @include functions/llrintl.texi
2248 @include functions/llround.texi
2249 @include functions/llroundf.texi
2250 @include functions/llroundl.texi
2251 @include functions/localeconv.texi
2252 @include functions/localtime.texi
2253 @include functions/localtime_r.texi
2254 @include functions/lockf.texi
2255 @include functions/log.texi
2256 @include functions/log10.texi
2257 @include functions/log10f.texi
2258 @include functions/log10l.texi
2259 @include functions/log1p.texi
2260 @include functions/log1pf.texi
2261 @include functions/log1pl.texi
2262 @include functions/log2.texi
2263 @include functions/log2f.texi
2264 @include functions/log2l.texi
2265 @include functions/logb.texi
2266 @include functions/logbf.texi
2267 @include functions/logbl.texi
2268 @include functions/logf.texi
2269 @include functions/logl.texi
2270 @include functions/longjmp.texi
2271 @include functions/lrand48.texi
2272 @include functions/lrint.texi
2273 @include functions/lrintf.texi
2274 @include functions/lrintl.texi
2275 @include functions/lround.texi
2276 @include functions/lroundf.texi
2277 @include functions/lroundl.texi
2278 @include functions/lsearch.texi
2279 @include functions/lseek.texi
2280 @include functions/lstat.texi
2281 @include functions/makecontext.texi
2282 @include functions/malloc.texi
2283 @include functions/mblen.texi
2284 @include functions/mbrlen.texi
2285 @include functions/mbrtowc.texi
2286 @include functions/mbsinit.texi
2287 @include functions/mbsrtowcs.texi
2288 @include functions/mbstowcs.texi
2289 @include functions/mbtowc.texi
2290 @include functions/memccpy.texi
2291 @include functions/memchr.texi
2292 @include functions/memcmp.texi
2293 @include functions/memcpy.texi
2294 @include functions/memmove.texi
2295 @include functions/memset.texi
2296 @include functions/mkdir.texi
2297 @include functions/mkfifo.texi
2298 @include functions/mknod.texi
2299 @include functions/mkstemp.texi
2300 @include functions/mktemp.texi
2301 @include functions/mktime.texi
2302 @include functions/mlock.texi
2303 @include functions/mlockall.texi
2304 @include functions/mmap.texi
2305 @include functions/modf.texi
2306 @include functions/modff.texi
2307 @include functions/modfl.texi
2308 @include functions/mprotect.texi
2309 @include functions/mq_close.texi
2310 @include functions/mq_getattr.texi
2311 @include functions/mq_notify.texi
2312 @include functions/mq_open.texi
2313 @include functions/mq_receive.texi
2314 @include functions/mq_send.texi
2315 @include functions/mq_setattr.texi
2316 @include functions/mq_timedreceive.texi
2317 @include functions/mq_timedsend.texi
2318 @include functions/mq_unlink.texi
2319 @include functions/mrand48.texi
2320 @include functions/msgctl.texi
2321 @include functions/msgget.texi
2322 @include functions/msgrcv.texi
2323 @include functions/msgsnd.texi
2324 @include functions/msync.texi
2325 @include functions/munlock.texi
2326 @include functions/munlockall.texi
2327 @include functions/munmap.texi
2328 @include functions/nan.texi
2329 @include functions/nanf.texi
2330 @include functions/nanl.texi
2331 @include functions/nanosleep.texi
2332 @include functions/nearbyint.texi
2333 @include functions/nearbyintf.texi
2334 @include functions/nearbyintl.texi
2335 @include functions/nextafter.texi
2336 @include functions/nextafterf.texi
2337 @include functions/nextafterl.texi
2338 @include functions/nexttoward.texi
2339 @include functions/nexttowardf.texi
2340 @include functions/nexttowardl.texi
2341 @include functions/nftw.texi
2342 @include functions/nice.texi
2343 @include functions/nl_langinfo.texi
2344 @include functions/nrand48.texi
2345 @include functions/ntohl.texi
2346 @include functions/ntohs.texi
2347 @include functions/open.texi
2348 @include functions/opendir.texi
2349 @include functions/openlog.texi
2350 @include functions/optarg.texi
2351 @include functions/pathconf.texi
2352 @include functions/pause.texi
2353 @include functions/pclose.texi
2354 @include functions/perror.texi
2355 @include functions/pipe.texi
2356 @include functions/poll.texi
2357 @include functions/popen.texi
2358 @include functions/posix_fadvise.texi
2359 @include functions/posix_fallocate.texi
2360 @include functions/posix_madvise.texi
2361 @include functions/posix_mem_offset.texi
2362 @include functions/posix_memalign.texi
2363 @include functions/posix_openpt.texi
2364 @include functions/posix_spawn.texi
2365 @include functions/posix_spawn_file_actions_addclose.texi
2366 @include functions/posix_spawn_file_actions_adddup2.texi
2367 @include functions/posix_spawn_file_actions_addopen.texi
2368 @include functions/posix_spawn_file_actions_destroy.texi
2369 @include functions/posix_spawn_file_actions_init.texi
2370 @include functions/posix_spawnattr_destroy.texi
2371 @include functions/posix_spawnattr_getflags.texi
2372 @include functions/posix_spawnattr_getpgroup.texi
2373 @include functions/posix_spawnattr_getschedparam.texi
2374 @include functions/posix_spawnattr_getschedpolicy.texi
2375 @include functions/posix_spawnattr_getsigdefault.texi
2376 @include functions/posix_spawnattr_getsigmask.texi
2377 @include functions/posix_spawnattr_init.texi
2378 @include functions/posix_spawnattr_setflags.texi
2379 @include functions/posix_spawnattr_setpgroup.texi
2380 @include functions/posix_spawnattr_setschedparam.texi
2381 @include functions/posix_spawnattr_setschedpolicy.texi
2382 @include functions/posix_spawnattr_setsigdefault.texi
2383 @include functions/posix_spawnattr_setsigmask.texi
2384 @include functions/posix_spawnp.texi
2385 @include functions/posix_trace_attr_destroy.texi
2386 @include functions/posix_trace_attr_getclockres.texi
2387 @include functions/posix_trace_attr_getcreatetime.texi
2388 @include functions/posix_trace_attr_getgenversion.texi
2389 @include functions/posix_trace_attr_getinherited.texi
2390 @include functions/posix_trace_attr_getlogfullpolicy.texi
2391 @include functions/posix_trace_attr_getlogsize.texi
2392 @include functions/posix_trace_attr_getmaxdatasize.texi
2393 @include functions/posix_trace_attr_getmaxsystemeventsize.texi
2394 @include functions/posix_trace_attr_getmaxusereventsize.texi
2395 @include functions/posix_trace_attr_getname.texi
2396 @include functions/posix_trace_attr_getstreamfullpolicy.texi
2397 @include functions/posix_trace_attr_getstreamsize.texi
2398 @include functions/posix_trace_attr_init.texi
2399 @include functions/posix_trace_attr_setinherited.texi
2400 @include functions/posix_trace_attr_setlogfullpolicy.texi
2401 @include functions/posix_trace_attr_setlogsize.texi
2402 @include functions/posix_trace_attr_setmaxdatasize.texi
2403 @include functions/posix_trace_attr_setname.texi
2404 @include functions/posix_trace_attr_setstreamfullpolicy.texi
2405 @include functions/posix_trace_attr_setstreamsize.texi
2406 @include functions/posix_trace_clear.texi
2407 @include functions/posix_trace_close.texi
2408 @include functions/posix_trace_create.texi
2409 @include functions/posix_trace_create_withlog.texi
2410 @include functions/posix_trace_event.texi
2411 @include functions/posix_trace_eventid_equal.texi
2412 @include functions/posix_trace_eventid_get_name.texi
2413 @include functions/posix_trace_eventid_open.texi
2414 @include functions/posix_trace_eventset_add.texi
2415 @include functions/posix_trace_eventset_del.texi
2416 @include functions/posix_trace_eventset_empty.texi
2417 @include functions/posix_trace_eventset_fill.texi
2418 @include functions/posix_trace_eventset_ismember.texi
2419 @include functions/posix_trace_eventtypelist_getnext_id.texi
2420 @include functions/posix_trace_eventtypelist_rewind.texi
2421 @include functions/posix_trace_flush.texi
2422 @include functions/posix_trace_get_attr.texi
2423 @include functions/posix_trace_get_filter.texi
2424 @include functions/posix_trace_get_status.texi
2425 @include functions/posix_trace_getnext_event.texi
2426 @include functions/posix_trace_open.texi
2427 @include functions/posix_trace_rewind.texi
2428 @include functions/posix_trace_set_filter.texi
2429 @include functions/posix_trace_shutdown.texi
2430 @include functions/posix_trace_start.texi
2431 @include functions/posix_trace_stop.texi
2432 @include functions/posix_trace_timedgetnext_event.texi
2433 @include functions/posix_trace_trid_eventid_open.texi
2434 @include functions/posix_trace_trygetnext_event.texi
2435 @include functions/posix_typed_mem_get_info.texi
2436 @include functions/posix_typed_mem_open.texi
2437 @include functions/pow.texi
2438 @include functions/powf.texi
2439 @include functions/powl.texi
2440 @include functions/pread.texi
2441 @include functions/printf.texi
2442 @include functions/pselect.texi
2443 @include functions/pthread_atfork.texi
2444 @include functions/pthread_attr_destroy.texi
2445 @include functions/pthread_attr_getdetachstate.texi
2446 @include functions/pthread_attr_getguardsize.texi
2447 @include functions/pthread_attr_getinheritsched.texi
2448 @include functions/pthread_attr_getschedparam.texi
2449 @include functions/pthread_attr_getschedpolicy.texi
2450 @include functions/pthread_attr_getscope.texi
2451 @include functions/pthread_attr_getstack.texi
2452 @include functions/pthread_attr_getstackaddr.texi
2453 @include functions/pthread_attr_getstacksize.texi
2454 @include functions/pthread_attr_init.texi
2455 @include functions/pthread_attr_setdetachstate.texi
2456 @include functions/pthread_attr_setguardsize.texi
2457 @include functions/pthread_attr_setinheritsched.texi
2458 @include functions/pthread_attr_setschedparam.texi
2459 @include functions/pthread_attr_setschedpolicy.texi
2460 @include functions/pthread_attr_setscope.texi
2461 @include functions/pthread_attr_setstack.texi
2462 @include functions/pthread_attr_setstackaddr.texi
2463 @include functions/pthread_attr_setstacksize.texi
2464 @include functions/pthread_barrier_destroy.texi
2465 @include functions/pthread_barrier_init.texi
2466 @include functions/pthread_barrier_wait.texi
2467 @include functions/pthread_barrierattr_destroy.texi
2468 @include functions/pthread_barrierattr_getpshared.texi
2469 @include functions/pthread_barrierattr_init.texi
2470 @include functions/pthread_barrierattr_setpshared.texi
2471 @include functions/pthread_cancel.texi
2472 @include functions/pthread_cleanup_pop.texi
2473 @include functions/pthread_cleanup_push.texi
2474 @include functions/pthread_cond_broadcast.texi
2475 @include functions/pthread_cond_destroy.texi
2476 @include functions/pthread_cond_init.texi
2477 @include functions/pthread_cond_signal.texi
2478 @include functions/pthread_cond_timedwait.texi
2479 @include functions/pthread_cond_wait.texi
2480 @include functions/pthread_condattr_destroy.texi
2481 @include functions/pthread_condattr_getclock.texi
2482 @include functions/pthread_condattr_getpshared.texi
2483 @include functions/pthread_condattr_init.texi
2484 @include functions/pthread_condattr_setclock.texi
2485 @include functions/pthread_condattr_setpshared.texi
2486 @include functions/pthread_create.texi
2487 @include functions/pthread_detach.texi
2488 @include functions/pthread_equal.texi
2489 @include functions/pthread_exit.texi
2490 @include functions/pthread_getconcurrency.texi
2491 @include functions/pthread_getcpuclockid.texi
2492 @include functions/pthread_getschedparam.texi
2493 @include functions/pthread_getspecific.texi
2494 @include functions/pthread_join.texi
2495 @include functions/pthread_key_create.texi
2496 @include functions/pthread_key_delete.texi
2497 @include functions/pthread_kill.texi
2498 @include functions/pthread_mutex_destroy.texi
2499 @include functions/pthread_mutex_getprioceiling.texi
2500 @include functions/pthread_mutex_init.texi
2501 @include functions/pthread_mutex_lock.texi
2502 @include functions/pthread_mutex_setprioceiling.texi
2503 @include functions/pthread_mutex_timedlock.texi
2504 @include functions/pthread_mutex_trylock.texi
2505 @include functions/pthread_mutex_unlock.texi
2506 @include functions/pthread_mutexattr_destroy.texi
2507 @include functions/pthread_mutexattr_getprioceiling.texi
2508 @include functions/pthread_mutexattr_getprotocol.texi
2509 @include functions/pthread_mutexattr_getpshared.texi
2510 @include functions/pthread_mutexattr_gettype.texi
2511 @include functions/pthread_mutexattr_init.texi
2512 @include functions/pthread_mutexattr_setprioceiling.texi
2513 @include functions/pthread_mutexattr_setprotocol.texi
2514 @include functions/pthread_mutexattr_setpshared.texi
2515 @include functions/pthread_mutexattr_settype.texi
2516 @include functions/pthread_once.texi
2517 @include functions/pthread_rwlock_destroy.texi
2518 @include functions/pthread_rwlock_init.texi
2519 @include functions/pthread_rwlock_rdlock.texi
2520 @include functions/pthread_rwlock_timedrdlock.texi
2521 @include functions/pthread_rwlock_timedwrlock.texi
2522 @include functions/pthread_rwlock_tryrdlock.texi
2523 @include functions/pthread_rwlock_trywrlock.texi
2524 @include functions/pthread_rwlock_unlock.texi
2525 @include functions/pthread_rwlock_wrlock.texi
2526 @include functions/pthread_rwlockattr_destroy.texi
2527 @include functions/pthread_rwlockattr_getpshared.texi
2528 @include functions/pthread_rwlockattr_init.texi
2529 @include functions/pthread_rwlockattr_setpshared.texi
2530 @include functions/pthread_self.texi
2531 @include functions/pthread_setcancelstate.texi
2532 @include functions/pthread_setcanceltype.texi
2533 @include functions/pthread_setconcurrency.texi
2534 @include functions/pthread_setschedparam.texi
2535 @include functions/pthread_setschedprio.texi
2536 @include functions/pthread_setspecific.texi
2537 @include functions/pthread_sigmask.texi
2538 @include functions/pthread_spin_destroy.texi
2539 @include functions/pthread_spin_init.texi
2540 @include functions/pthread_spin_lock.texi
2541 @include functions/pthread_spin_trylock.texi
2542 @include functions/pthread_spin_unlock.texi
2543 @include functions/pthread_testcancel.texi
2544 @include functions/ptsname.texi
2545 @include functions/putc.texi
2546 @include functions/putc_unlocked.texi
2547 @include functions/putchar.texi
2548 @include functions/putchar_unlocked.texi
2549 @include functions/putenv.texi
2550 @include functions/putmsg.texi
2551 @include functions/putpmsg.texi
2552 @include functions/puts.texi
2553 @include functions/pututxline.texi
2554 @include functions/putwc.texi
2555 @include functions/putwchar.texi
2556 @include functions/pwrite.texi
2557 @include functions/qsort.texi
2558 @include functions/raise.texi
2559 @include functions/rand.texi
2560 @include functions/rand_r.texi
2561 @include functions/random.texi
2562 @include functions/read.texi
2563 @include functions/readdir.texi
2564 @include functions/readdir_r.texi
2565 @include functions/readlink.texi
2566 @include functions/readv.texi
2567 @include functions/realloc.texi
2568 @include functions/realpath.texi
2569 @include functions/recv.texi
2570 @include functions/recvfrom.texi
2571 @include functions/recvmsg.texi
2572 @include functions/regcomp.texi
2573 @include functions/regerror.texi
2574 @include functions/regexec.texi
2575 @include functions/regfree.texi
2576 @include functions/remainder.texi
2577 @include functions/remainderf.texi
2578 @include functions/remainderl.texi
2579 @include functions/remove.texi
2580 @include functions/remque.texi
2581 @include functions/remquo.texi
2582 @include functions/remquof.texi
2583 @include functions/remquol.texi
2584 @include functions/rename.texi
2585 @include functions/rewind.texi
2586 @include functions/rewinddir.texi
2587 @include functions/rindex.texi
2588 @include functions/rint.texi
2589 @include functions/rintf.texi
2590 @include functions/rintl.texi
2591 @include functions/rmdir.texi
2592 @include functions/round.texi
2593 @include functions/roundf.texi
2594 @include functions/roundl.texi
2595 @include functions/scalb.texi
2596 @include functions/scalbln.texi
2597 @include functions/scalblnf.texi
2598 @include functions/scalblnl.texi
2599 @include functions/scalbn.texi
2600 @include functions/scalbnf.texi
2601 @include functions/scalbnl.texi
2602 @include functions/scanf.texi
2603 @include functions/sched_get_priority_max.texi
2604 @include functions/sched_getparam.texi
2605 @include functions/sched_getscheduler.texi
2606 @include functions/sched_rr_get_interval.texi
2607 @include functions/sched_setparam.texi
2608 @include functions/sched_setscheduler.texi
2609 @include functions/sched_yield.texi
2610 @include functions/seed48.texi
2611 @include functions/seekdir.texi
2612 @include functions/select.texi
2613 @include functions/sem_close.texi
2614 @include functions/sem_destroy.texi
2615 @include functions/sem_getvalue.texi
2616 @include functions/sem_init.texi
2617 @include functions/sem_open.texi
2618 @include functions/sem_post.texi
2619 @include functions/sem_timedwait.texi
2620 @include functions/sem_trywait.texi
2621 @include functions/sem_unlink.texi
2622 @include functions/sem_wait.texi
2623 @include functions/semctl.texi
2624 @include functions/semget.texi
2625 @include functions/semop.texi
2626 @include functions/send.texi
2627 @include functions/sendmsg.texi
2628 @include functions/sendto.texi
2629 @include functions/setbuf.texi
2630 @include functions/setcontext.texi
2631 @include functions/setegid.texi
2632 @include functions/setenv.texi
2633 @include functions/seteuid.texi
2634 @include functions/setgid.texi
2635 @include functions/setgrent.texi
2636 @include functions/sethostent.texi
2637 @include functions/setitimer.texi
2638 @include functions/setjmp.texi
2639 @include functions/setkey.texi
2640 @include functions/setlocale.texi
2641 @include functions/setlogmask.texi
2642 @include functions/setnetent.texi
2643 @include functions/setpgid.texi
2644 @include functions/setpgrp.texi
2645 @include functions/setpriority.texi
2646 @include functions/setprotoent.texi
2647 @include functions/setpwent.texi
2648 @include functions/setregid.texi
2649 @include functions/setreuid.texi
2650 @include functions/setrlimit.texi
2651 @include functions/setservent.texi
2652 @include functions/setsid.texi
2653 @include functions/setsockopt.texi
2654 @include functions/setstate.texi
2655 @include functions/setuid.texi
2656 @include functions/setutxent.texi
2657 @include functions/setvbuf.texi
2658 @include functions/shm_open.texi
2659 @include functions/shm_unlink.texi
2660 @include functions/shmat.texi
2661 @include functions/shmctl.texi
2662 @include functions/shmdt.texi
2663 @include functions/shmget.texi
2664 @include functions/shutdown.texi
2665 @include functions/sigaction.texi
2666 @include functions/sigaddset.texi
2667 @include functions/sigaltstack.texi
2668 @include functions/sigdelset.texi
2669 @include functions/sigemptyset.texi
2670 @include functions/sigfillset.texi
2671 @include functions/sighold.texi
2672 @include functions/sigignore.texi
2673 @include functions/siginterrupt.texi
2674 @include functions/sigismember.texi
2675 @include functions/siglongjmp.texi
2676 @include functions/signal.texi
2677 @include functions/signbit.texi
2678 @include functions/sigpause.texi
2679 @include functions/sigpending.texi
2680 @include functions/sigprocmask.texi
2681 @include functions/sigqueue.texi
2682 @include functions/sigrelse.texi
2683 @include functions/sigset.texi
2684 @include functions/sigsetjmp.texi
2685 @include functions/sigsuspend.texi
2686 @include functions/sigtimedwait.texi
2687 @include functions/sigwait.texi
2688 @include functions/sigwaitinfo.texi
2689 @include functions/sin.texi
2690 @include functions/sinf.texi
2691 @include functions/sinh.texi
2692 @include functions/sinhf.texi
2693 @include functions/sinhl.texi
2694 @include functions/sinl.texi
2695 @include functions/sleep.texi
2696 @include functions/snprintf.texi
2697 @include functions/sockatmark.texi
2698 @include functions/socket.texi
2699 @include functions/socketpair.texi
2700 @include functions/sprintf.texi
2701 @include functions/sqrt.texi
2702 @include functions/sqrtf.texi
2703 @include functions/sqrtl.texi
2704 @include functions/srand.texi
2705 @include functions/srand48.texi
2706 @include functions/srandom.texi
2707 @include functions/sscanf.texi
2708 @include functions/stat.texi
2709 @include functions/statvfs.texi
2710 @include functions/stderr.texi
2711 @include functions/stdin.texi
2712 @include functions/stdout.texi
2713 @include functions/strcasecmp.texi
2714 @include functions/strcat.texi
2715 @include functions/strchr.texi
2716 @include functions/strcmp.texi
2717 @include functions/strcoll.texi
2718 @include functions/strcpy.texi
2719 @include functions/strcspn.texi
2720 @include functions/strdup.texi
2721 @include functions/strerror.texi
2722 @include functions/strerror_r.texi
2723 @include functions/strfmon.texi
2724 @include functions/strftime.texi
2725 @include functions/strlen.texi
2726 @include functions/strncasecmp.texi
2727 @include functions/strncat.texi
2728 @include functions/strncmp.texi
2729 @include functions/strncpy.texi
2730 @include functions/strpbrk.texi
2731 @include functions/strptime.texi
2732 @include functions/strrchr.texi
2733 @include functions/strspn.texi
2734 @include functions/strstr.texi
2735 @include functions/strtod.texi
2736 @include functions/strtof.texi
2737 @include functions/strtoimax.texi
2738 @include functions/strtok.texi
2739 @include functions/strtok_r.texi
2740 @include functions/strtol.texi
2741 @include functions/strtold.texi
2742 @include functions/strtoll.texi
2743 @include functions/strtoul.texi
2744 @include functions/strtoull.texi
2745 @include functions/strtoumax.texi
2746 @include functions/strxfrm.texi
2747 @include functions/swab.texi
2748 @include functions/swapcontext.texi
2749 @include functions/swprintf.texi
2750 @include functions/swscanf.texi
2751 @include functions/symlink.texi
2752 @include functions/sync.texi
2753 @include functions/sysconf.texi
2754 @include functions/syslog.texi
2755 @include functions/system.texi
2756 @include functions/tan.texi
2757 @include functions/tanf.texi
2758 @include functions/tanh.texi
2759 @include functions/tanhf.texi
2760 @include functions/tanhl.texi
2761 @include functions/tanl.texi
2762 @include functions/tcdrain.texi
2763 @include functions/tcflow.texi
2764 @include functions/tcflush.texi
2765 @include functions/tcgetattr.texi
2766 @include functions/tcgetpgrp.texi
2767 @include functions/tcgetsid.texi
2768 @include functions/tcsendbreak.texi
2769 @include functions/tcsetattr.texi
2770 @include functions/tcsetpgrp.texi
2771 @include functions/tdelete.texi
2772 @include functions/telldir.texi
2773 @include functions/tempnam.texi
2774 @include functions/tfind.texi
2775 @include functions/tgamma.texi
2776 @include functions/tgammaf.texi
2777 @include functions/tgammal.texi
2778 @include functions/time.texi
2779 @include functions/timer_create.texi
2780 @include functions/timer_delete.texi
2781 @include functions/timer_getoverrun.texi
2782 @include functions/timer_settime.texi
2783 @include functions/times.texi
2784 @include functions/timezone.texi
2785 @include functions/tmpfile.texi
2786 @include functions/tmpnam.texi
2787 @include functions/toascii.texi
2788 @include functions/tolower.texi
2789 @include functions/toupper.texi
2790 @include functions/towctrans.texi
2791 @include functions/towlower.texi
2792 @include functions/towupper.texi
2793 @include functions/trunc.texi
2794 @include functions/truncate.texi
2795 @include functions/truncf.texi
2796 @include functions/truncl.texi
2797 @include functions/tsearch.texi
2798 @include functions/ttyname.texi
2799 @include functions/ttyname_r.texi
2800 @include functions/twalk.texi
2801 @include functions/tzname.texi
2802 @include functions/tzset.texi
2803 @include functions/ualarm.texi
2804 @include functions/ulimit.texi
2805 @include functions/umask.texi
2806 @include functions/uname.texi
2807 @include functions/ungetc.texi
2808 @include functions/ungetwc.texi
2809 @include functions/unlink.texi
2810 @include functions/unlockpt.texi
2811 @include functions/unsetenv.texi
2812 @include functions/usleep.texi
2813 @include functions/utime.texi
2814 @include functions/utimes.texi
2815 @include functions/va_arg.texi
2816 @include functions/va_copy.texi
2817 @include functions/va_end.texi
2818 @include functions/va_start.texi
2819 @include functions/vfork.texi
2820 @include functions/vfprintf.texi
2821 @include functions/vfscanf.texi
2822 @include functions/vfwprintf.texi
2823 @include functions/vfwscanf.texi
2824 @include functions/vprintf.texi
2825 @include functions/vscanf.texi
2826 @include functions/vsnprintf.texi
2827 @include functions/vsprintf.texi
2828 @include functions/vsscanf.texi
2829 @include functions/vswprintf.texi
2830 @include functions/vswscanf.texi
2831 @include functions/vwprintf.texi
2832 @include functions/vwscanf.texi
2833 @include functions/wait.texi
2834 @include functions/waitid.texi
2835 @include functions/waitpid.texi
2836 @include functions/wcrtomb.texi
2837 @include functions/wcscat.texi
2838 @include functions/wcschr.texi
2839 @include functions/wcscmp.texi
2840 @include functions/wcscoll.texi
2841 @include functions/wcscpy.texi
2842 @include functions/wcscspn.texi
2843 @include functions/wcsftime.texi
2844 @include functions/wcslen.texi
2845 @include functions/wcsncat.texi
2846 @include functions/wcsncmp.texi
2847 @include functions/wcsncpy.texi
2848 @include functions/wcspbrk.texi
2849 @include functions/wcsrchr.texi
2850 @include functions/wcsrtombs.texi
2851 @include functions/wcsspn.texi
2852 @include functions/wcsstr.texi
2853 @include functions/wcstod.texi
2854 @include functions/wcstof.texi
2855 @include functions/wcstoimax.texi
2856 @include functions/wcstok.texi
2857 @include functions/wcstol.texi
2858 @include functions/wcstold.texi
2859 @include functions/wcstoll.texi
2860 @include functions/wcstombs.texi
2861 @include functions/wcstoul.texi
2862 @include functions/wcstoull.texi
2863 @include functions/wcstoumax.texi
2864 @include functions/wcswcs.texi
2865 @include functions/wcswidth.texi
2866 @include functions/wcsxfrm.texi
2867 @include functions/wctob.texi
2868 @include functions/wctomb.texi
2869 @include functions/wctrans.texi
2870 @include functions/wctype.texi
2871 @include functions/wcwidth.texi
2872 @include functions/wmemchr.texi
2873 @include functions/wmemcmp.texi
2874 @include functions/wmemcpy.texi
2875 @include functions/wmemmove.texi
2876 @include functions/wmemset.texi
2877 @include functions/wordexp.texi
2878 @include functions/wordfree.texi
2879 @include functions/wprintf.texi
2880 @include functions/write.texi
2881 @include functions/writev.texi
2882 @include functions/wscanf.texi
2883 @include functions/y0.texi
2884 @include functions/y1.texi
2885 @include functions/yn.texi
2886
2887 @node Particular Modules
2888 @chapter Particular Modules
2889
2890 @menu
2891 * Quoting::
2892 * error and progname::
2893 * gcd::
2894 * Regular expressions::
2895 * Supporting Relocation::
2896 @end menu
2897
2898 @include quote.texi
2899 @include error.texi
2900 @include gcd.texi
2901 @include relocatable-maint.texi
2902
2903 @node Regular expressions
2904 @section Regular expressions
2905
2906 Gnulib supports many different types of regular expressions; although
2907 the underlying features are the same or identical, the syntax used
2908 varies.  The descriptions given here for the different types are
2909 generated automatically.
2910
2911 @include regexprops-generic.texi
2912
2913
2914 @node GNU Free Documentation License
2915 @appendix GNU Free Documentation License
2916
2917 @include fdl.texi
2918
2919
2920 @node Index
2921 @unnumbered Index
2922
2923 @printindex cp
2924
2925 @bye
2926
2927 @c Local Variables:
2928 @c indent-tabs-mode: nil
2929 @c whitespace-check-buffer-indent: nil
2930 @c End: