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