5 kx #!/bin/sh
5 kx
5 kx # Preserve new files
5 kx install_file() {
5 kx NEW="$1"
5 kx OLD="`dirname $NEW`/`basename $NEW .new`"
5 kx # If there's no file by that name, mv it over:
5 kx if [ ! -r $OLD ]; then
5 kx mv $NEW $OLD
5 kx elif [ "`cat $OLD | md5sum`" = "`cat $NEW | md5sum`" ]; then # toss the redundant copy
5 kx rm $NEW
5 kx fi
5 kx # Otherwise, we leave the .new copy for the admin to consider...
5 kx }
5 kx
5 kx
5 kx # arg 1: the new package version
5 kx pre_install() {
5 kx /bin/true
5 kx }
5 kx
5 kx # arg 1: the new package version
5 kx post_install() {
5 kx install_file etc/nscd.conf.new
5 kx install_file etc/profile.d/glibc.csh.new
5 kx install_file etc/profile.d/glibc.sh.new
5 kx # ======= Clearly you already decided this issue. :-) =======
5 kx rm -f etc/profile.d/glibc.csh.new
5 kx rm -f etc/profile.d/glibc.sh.new
5 kx
5 kx #
5 kx # NOTE:
5 kx # 'install-info' can work using relative paths and we can make use build machine
5 kx # utility during installation to the some partition and use target 'install-info'
5 kx # during installation directly on the running target machine.
5 kx #
5 kx if [ -x /usr/bin/install-info ] ; then
5 kx install-info --info-dir=usr/share/info usr/share/info/libc.info.gz 2>/dev/null
5 kx elif ! grep "(libc)" usr/share/info/dir 1> /dev/null 2> /dev/null ; then
5 kx cat << __EOF__ >> usr/share/info/dir
5 kx
5 kx GNU C library functions and macros
5 kx * __fbufsize: (libc)Controlling Buffering.
5 kx * __flbf: (libc)Controlling Buffering.
5 kx * __fpending: (libc)Controlling Buffering.
5 kx * __fpurge: (libc)Flushing Buffers.
5 kx * __freadable: (libc)Opening Streams.
5 kx * __freading: (libc)Opening Streams.
5 kx * __fsetlocking: (libc)Streams and Threads.
5 kx * __fwritable: (libc)Opening Streams.
5 kx * __fwriting: (libc)Opening Streams.
5 kx * __gconv_end_fct: (libc)glibc iconv Implementation.
5 kx * __gconv_fct: (libc)glibc iconv Implementation.
5 kx * __gconv_init_fct: (libc)glibc iconv Implementation.
5 kx * __ppc_get_timebase_freq: (libc)PowerPC.
5 kx * __ppc_get_timebase: (libc)PowerPC.
5 kx * __ppc_mdoio: (libc)PowerPC.
5 kx * __ppc_mdoom: (libc)PowerPC.
5 kx * __ppc_set_ppr_low: (libc)PowerPC.
5 kx * __ppc_set_ppr_med_high: (libc)PowerPC.
5 kx * __ppc_set_ppr_med_low: (libc)PowerPC.
5 kx * __ppc_set_ppr_med: (libc)PowerPC.
5 kx * __ppc_set_ppr_very_low: (libc)PowerPC.
5 kx * __ppc_yield: (libc)PowerPC.
5 kx * __riscv_flush_icache: (libc)RISC-V.
5 kx * __va_copy: (libc)Argument Macros.
5 kx * __x86_get_cpuid_feature_leaf: (libc)X86.
5 kx * _Complex_I: (libc)Complex Numbers.
5 kx * _dl_find_object: (libc)Dynamic Linker Introspection.
5 kx * _exit: (libc)Termination Internals.
5 kx * _Exit: (libc)Termination Internals.
5 kx * _flushlbf: (libc)Flushing Buffers.
5 kx * _Fork: (libc)Creating a Process.
5 kx * _Imaginary_I: (libc)Complex Numbers.
5 kx * _IOFBF: (libc)Controlling Buffering.
5 kx * _IOLBF: (libc)Controlling Buffering.
5 kx * _IONBF: (libc)Controlling Buffering.
5 kx * _PATH_UTMP: (libc)Manipulating the Database.
5 kx * _PATH_WTMP: (libc)Manipulating the Database.
5 kx * _POSIX2_C_DEV: (libc)System Options.
5 kx * _POSIX2_C_VERSION: (libc)Version Supported.
5 kx * _POSIX2_FORT_DEV: (libc)System Options.
5 kx * _POSIX2_FORT_RUN: (libc)System Options.
5 kx * _POSIX2_LOCALEDEF: (libc)System Options.
5 kx * _POSIX2_SW_DEV: (libc)System Options.
5 kx * _POSIX_CHOWN_RESTRICTED: (libc)Options for Files.
5 kx * _POSIX_JOB_CONTROL: (libc)System Options.
5 kx * _POSIX_NO_TRUNC: (libc)Options for Files.
5 kx * _POSIX_SAVED_IDS: (libc)System Options.
5 kx * _POSIX_VDISABLE: (libc)Options for Files.
5 kx * _POSIX_VERSION: (libc)Version Supported.
5 kx * _tolower: (libc)Case Conversion.
5 kx * _toupper: (libc)Case Conversion.
5 kx * a64l: (libc)Encode Binary Data.
5 kx * abort: (libc)Aborting a Program.
5 kx * abs: (libc)Absolute Value.
5 kx * accept: (libc)Accepting Connections.
5 kx * access: (libc)Testing File Access.
5 kx * acosfNx: (libc)Inverse Trig Functions.
5 kx * acosfN: (libc)Inverse Trig Functions.
5 kx * acosf: (libc)Inverse Trig Functions.
5 kx * acoshfNx: (libc)Hyperbolic Functions.
5 kx * acoshfN: (libc)Hyperbolic Functions.
5 kx * acoshf: (libc)Hyperbolic Functions.
5 kx * acoshl: (libc)Hyperbolic Functions.
5 kx * acosh: (libc)Hyperbolic Functions.
5 kx * acosl: (libc)Inverse Trig Functions.
5 kx * acos: (libc)Inverse Trig Functions.
5 kx * addmntent: (libc)mtab.
5 kx * addseverity: (libc)Adding Severity Classes.
5 kx * adjtimex: (libc)Setting and Adjusting the Time.
5 kx * adjtime: (libc)Setting and Adjusting the Time.
5 kx * aio_cancel: (libc)Cancel AIO Operations.
5 kx * aio_cancel64: (libc)Cancel AIO Operations.
5 kx * aio_error: (libc)Status of AIO Operations.
5 kx * aio_error64: (libc)Status of AIO Operations.
5 kx * aio_fsync: (libc)Synchronizing AIO Operations.
5 kx * aio_fsync64: (libc)Synchronizing AIO Operations.
5 kx * aio_init: (libc)Configuration of AIO.
5 kx * aio_read: (libc)Asynchronous Reads/Writes.
5 kx * aio_read64: (libc)Asynchronous Reads/Writes.
5 kx * aio_return: (libc)Status of AIO Operations.
5 kx * aio_return64: (libc)Status of AIO Operations.
5 kx * aio_suspend: (libc)Synchronizing AIO Operations.
5 kx * aio_suspend64: (libc)Synchronizing AIO Operations.
5 kx * aio_write: (libc)Asynchronous Reads/Writes.
5 kx * aio_write64: (libc)Asynchronous Reads/Writes.
5 kx * alarm: (libc)Setting an Alarm.
5 kx * aligned_alloc: (libc)Aligned Memory Blocks.
5 kx * alloca: (libc)Variable Size Automatic.
5 kx * alphasort: (libc)Scanning Directory Content.
5 kx * alphasort64: (libc)Scanning Directory Content.
5 kx * ALTWERASE: (libc)Local Modes.
5 kx * arc4random_buf: (libc)High Quality Random.
5 kx * arc4random_uniform: (libc)High Quality Random.
5 kx * arc4random: (libc)High Quality Random.
5 kx * ARG_MAX: (libc)General Limits.
5 kx * ARGP_ERR_UNKNOWN: (libc)Argp Parser Functions.
5 kx * argp_error: (libc)Argp Helper Functions.
5 kx * argp_failure: (libc)Argp Helper Functions.
5 kx * argp_help: (libc)Argp Help.
5 kx * argp_parse: (libc)Argp.
5 kx * argp_state_help: (libc)Argp Helper Functions.
5 kx * argp_usage: (libc)Argp Helper Functions.
5 kx * argz_add_sep: (libc)Argz Functions.
5 kx * argz_add: (libc)Argz Functions.
5 kx * argz_append: (libc)Argz Functions.
5 kx * argz_count: (libc)Argz Functions.
5 kx * argz_create_sep: (libc)Argz Functions.
5 kx * argz_create: (libc)Argz Functions.
5 kx * argz_delete: (libc)Argz Functions.
5 kx * argz_extract: (libc)Argz Functions.
5 kx * argz_insert: (libc)Argz Functions.
5 kx * argz_next: (libc)Argz Functions.
5 kx * argz_replace: (libc)Argz Functions.
5 kx * argz_stringify: (libc)Argz Functions.
5 kx * asctime_r: (libc)Formatting Calendar Time.
5 kx * asctime: (libc)Formatting Calendar Time.
5 kx * asinfNx: (libc)Inverse Trig Functions.
5 kx * asinfN: (libc)Inverse Trig Functions.
5 kx * asinf: (libc)Inverse Trig Functions.
5 kx * asinhfNx: (libc)Hyperbolic Functions.
5 kx * asinhfN: (libc)Hyperbolic Functions.
5 kx * asinhf: (libc)Hyperbolic Functions.
5 kx * asinhl: (libc)Hyperbolic Functions.
5 kx * asinh: (libc)Hyperbolic Functions.
5 kx * asinl: (libc)Inverse Trig Functions.
5 kx * asin: (libc)Inverse Trig Functions.
5 kx * asprintf: (libc)Dynamic Output.
5 kx * assert_perror: (libc)Consistency Checking.
5 kx * assert: (libc)Consistency Checking.
5 kx * atan2f: (libc)Inverse Trig Functions.
5 kx * atan2: (libc)Inverse Trig Functions.
5 kx * atanfNx: (libc)Inverse Trig Functions.
5 kx * atanfN: (libc)Inverse Trig Functions.
5 kx * atanf: (libc)Inverse Trig Functions.
5 kx * atanhfNx: (libc)Hyperbolic Functions.
5 kx * atanhfN: (libc)Hyperbolic Functions.
5 kx * atanhf: (libc)Hyperbolic Functions.
5 kx * atanhl: (libc)Hyperbolic Functions.
5 kx * atanh: (libc)Hyperbolic Functions.
5 kx * atanl: (libc)Inverse Trig Functions.
5 kx * atan: (libc)Inverse Trig Functions.
5 kx * atan2fNx: (libc)Inverse Trig Functions.
5 kx * atan2fN: (libc)Inverse Trig Functions.
5 kx * atan2l: (libc)Inverse Trig Functions.
5 kx * atexit: (libc)Cleanups on Exit.
5 kx * atof: (libc)Parsing of Floats.
5 kx * atoi: (libc)Parsing of Integers.
5 kx * atoll: (libc)Parsing of Integers.
5 kx * atol: (libc)Parsing of Integers.
5 kx * backtrace_symbols_fd: (libc)Backtraces.
5 kx * backtrace_symbols: (libc)Backtraces.
5 kx * backtrace: (libc)Backtraces.
5 kx * basename: (libc)Finding Tokens in a String.
5 kx * basename: (libc)Finding Tokens in a String.
5 kx * BC_BASE_MAX: (libc)Utility Limits.
5 kx * BC_DIM_MAX: (libc)Utility Limits.
5 kx * BC_SCALE_MAX: (libc)Utility Limits.
5 kx * BC_STRING_MAX: (libc)Utility Limits.
5 kx * bcmp: (libc)String/Array Comparison.
5 kx * bcopy: (libc)Copying Strings and Arrays.
5 kx * bind_textdomain_codeset: (libc)Charset conversion in gettext.
5 kx * bindtextdomain: (libc)Locating gettext catalog.
5 kx * bind: (libc)Setting Address.
5 kx * brk: (libc)Resizing the Data Segment.
5 kx * BRKINT: (libc)Input Modes.
5 kx * bsearch: (libc)Array Search Function.
5 kx * btowc: (libc)Converting a Character.
5 kx * BUFSIZ: (libc)Controlling Buffering.
5 kx * bzero: (libc)Copying Strings and Arrays.
5 kx * cabsfNx: (libc)Absolute Value.
5 kx * cabsfN: (libc)Absolute Value.
5 kx * cabsf: (libc)Absolute Value.
5 kx * cabsl: (libc)Absolute Value.
5 kx * cabs: (libc)Absolute Value.
5 kx * cacosfNx: (libc)Inverse Trig Functions.
5 kx * cacosfN: (libc)Inverse Trig Functions.
5 kx * cacosf: (libc)Inverse Trig Functions.
5 kx * cacoshfNx: (libc)Hyperbolic Functions.
5 kx * cacoshfN: (libc)Hyperbolic Functions.
5 kx * cacoshf: (libc)Hyperbolic Functions.
5 kx * cacoshl: (libc)Hyperbolic Functions.
5 kx * cacosh: (libc)Hyperbolic Functions.
5 kx * cacosl: (libc)Inverse Trig Functions.
5 kx * cacos: (libc)Inverse Trig Functions.
5 kx * call_once: (libc)Call Once.
5 kx * calloc: (libc)Allocating Cleared Space.
5 kx * canonicalize_file_name: (libc)Symbolic Links.
5 kx * canonicalizefNx: (libc)FP Bit Twiddling.
5 kx * canonicalizefN: (libc)FP Bit Twiddling.
5 kx * canonicalizef: (libc)FP Bit Twiddling.
5 kx * canonicalizel: (libc)FP Bit Twiddling.
5 kx * canonicalize: (libc)FP Bit Twiddling.
5 kx * cargfNx: (libc)Operations on Complex.
5 kx * cargfN: (libc)Operations on Complex.
5 kx * cargf: (libc)Operations on Complex.
5 kx * cargl: (libc)Operations on Complex.
5 kx * carg: (libc)Operations on Complex.
5 kx * casinfNx: (libc)Inverse Trig Functions.
5 kx * casinfN: (libc)Inverse Trig Functions.
5 kx * casinf: (libc)Inverse Trig Functions.
5 kx * casinhfNx: (libc)Hyperbolic Functions.
5 kx * casinhfN: (libc)Hyperbolic Functions.
5 kx * casinhf: (libc)Hyperbolic Functions.
5 kx * casinhl: (libc)Hyperbolic Functions.
5 kx * casinh: (libc)Hyperbolic Functions.
5 kx * casinl: (libc)Inverse Trig Functions.
5 kx * casin: (libc)Inverse Trig Functions.
5 kx * catanfNx: (libc)Inverse Trig Functions.
5 kx * catanfN: (libc)Inverse Trig Functions.
5 kx * catanf: (libc)Inverse Trig Functions.
5 kx * catanhfNx: (libc)Hyperbolic Functions.
5 kx * catanhfN: (libc)Hyperbolic Functions.
5 kx * catanhf: (libc)Hyperbolic Functions.
5 kx * catanhl: (libc)Hyperbolic Functions.
5 kx * catanh: (libc)Hyperbolic Functions.
5 kx * catanl: (libc)Inverse Trig Functions.
5 kx * catan: (libc)Inverse Trig Functions.
5 kx * catclose: (libc)The catgets Functions.
5 kx * catgets: (libc)The catgets Functions.
5 kx * catopen: (libc)The catgets Functions.
5 kx * cbrtfNx: (libc)Exponents and Logarithms.
5 kx * cbrtfN: (libc)Exponents and Logarithms.
5 kx * cbrtf: (libc)Exponents and Logarithms.
5 kx * cbrtl: (libc)Exponents and Logarithms.
5 kx * cbrt: (libc)Exponents and Logarithms.
5 kx * ccosfNx: (libc)Trig Functions.
5 kx * ccosfN: (libc)Trig Functions.
5 kx * ccosf: (libc)Trig Functions.
5 kx * ccoshfNx: (libc)Hyperbolic Functions.
5 kx * ccoshfN: (libc)Hyperbolic Functions.
5 kx * ccoshf: (libc)Hyperbolic Functions.
5 kx * ccoshl: (libc)Hyperbolic Functions.
5 kx * ccosh: (libc)Hyperbolic Functions.
5 kx * ccosl: (libc)Trig Functions.
5 kx * ccos: (libc)Trig Functions.
5 kx * CCTS_OFLOW: (libc)Control Modes.
5 kx * ceilfNx: (libc)Rounding Functions.
5 kx * ceilfN: (libc)Rounding Functions.
5 kx * ceilf: (libc)Rounding Functions.
5 kx * ceill: (libc)Rounding Functions.
5 kx * ceil: (libc)Rounding Functions.
5 kx * cexpfNx: (libc)Exponents and Logarithms.
5 kx * cexpfN: (libc)Exponents and Logarithms.
5 kx * cexpf: (libc)Exponents and Logarithms.
5 kx * cexpl: (libc)Exponents and Logarithms.
5 kx * cexp: (libc)Exponents and Logarithms.
5 kx * cfgetispeed: (libc)Line Speed.
5 kx * cfgetospeed: (libc)Line Speed.
5 kx * cfmakeraw: (libc)Noncanonical Input.
5 kx * cfsetispeed: (libc)Line Speed.
5 kx * cfsetospeed: (libc)Line Speed.
5 kx * cfsetspeed: (libc)Line Speed.
5 kx * CHAR_BIT: (libc)Width of Type.
5 kx * chdir: (libc)Working Directory.
5 kx * CHILD_MAX: (libc)General Limits.
5 kx * chmod: (libc)Setting Permissions.
5 kx * chown: (libc)File Owner.
5 kx * CIGNORE: (libc)Control Modes.
5 kx * cimagfNx: (libc)Operations on Complex.
5 kx * cimagfN: (libc)Operations on Complex.
5 kx * cimagf: (libc)Operations on Complex.
5 kx * cimagl: (libc)Operations on Complex.
5 kx * cimag: (libc)Operations on Complex.
5 kx * clearenv: (libc)Environment Access.
5 kx * clearerr_unlocked: (libc)Error Recovery.
5 kx * clearerr: (libc)Error Recovery.
5 kx * CLK_TCK: (libc)Processor Time.
5 kx * CLOCAL: (libc)Control Modes.
5 kx * clock_getres: (libc)Getting the Time.
5 kx * clock_gettime: (libc)Getting the Time.
5 kx * CLOCK_MONOTONIC: (libc)Getting the Time.
5 kx * CLOCK_REALTIME: (libc)Getting the Time.
5 kx * clock_settime: (libc)Setting and Adjusting the Time.
5 kx * clock: (libc)CPU Time.
5 kx * CLOCKS_PER_SEC: (libc)CPU Time.
5 kx * clog10fNx: (libc)Exponents and Logarithms.
5 kx * clog10fN: (libc)Exponents and Logarithms.
5 kx * clog10f: (libc)Exponents and Logarithms.
5 kx * clog10l: (libc)Exponents and Logarithms.
5 kx * clog10: (libc)Exponents and Logarithms.
5 kx * clogfNx: (libc)Exponents and Logarithms.
5 kx * clogfN: (libc)Exponents and Logarithms.
5 kx * clogf: (libc)Exponents and Logarithms.
5 kx * clogl: (libc)Exponents and Logarithms.
5 kx * clog: (libc)Exponents and Logarithms.
5 kx * close_range: (libc)Opening and Closing Files.
5 kx * closedir: (libc)Reading/Closing Directory.
5 kx * closefrom: (libc)Opening and Closing Files.
5 kx * closelog: (libc)closelog.
5 kx * close: (libc)Opening and Closing Files.
5 kx * cnd_broadcast: (libc)ISO C Condition Variables.
5 kx * cnd_destroy: (libc)ISO C Condition Variables.
5 kx * cnd_init: (libc)ISO C Condition Variables.
5 kx * cnd_signal: (libc)ISO C Condition Variables.
5 kx * cnd_timedwait: (libc)ISO C Condition Variables.
5 kx * cnd_wait: (libc)ISO C Condition Variables.
5 kx * COLL_WEIGHTS_MAX: (libc)Utility Limits.
5 kx * confstr: (libc)String Parameters.
5 kx * conjfNx: (libc)Operations on Complex.
5 kx * conjfN: (libc)Operations on Complex.
5 kx * conjf: (libc)Operations on Complex.
5 kx * conjl: (libc)Operations on Complex.
5 kx * conj: (libc)Operations on Complex.
5 kx * connect: (libc)Connecting.
5 kx * copy_file_range: (libc)Copying File Data.
5 kx * copysignfNx: (libc)FP Bit Twiddling.
5 kx * copysignfN: (libc)FP Bit Twiddling.
5 kx * copysignf: (libc)FP Bit Twiddling.
5 kx * copysignl: (libc)FP Bit Twiddling.
5 kx * copysign: (libc)FP Bit Twiddling.
5 kx * cosfNx: (libc)Trig Functions.
5 kx * cosfN: (libc)Trig Functions.
5 kx * cosf: (libc)Trig Functions.
5 kx * coshfNx: (libc)Hyperbolic Functions.
5 kx * coshfN: (libc)Hyperbolic Functions.
5 kx * coshf: (libc)Hyperbolic Functions.
5 kx * coshl: (libc)Hyperbolic Functions.
5 kx * cosh: (libc)Hyperbolic Functions.
5 kx * cosl: (libc)Trig Functions.
5 kx * cos: (libc)Trig Functions.
5 kx * cpowfNx: (libc)Exponents and Logarithms.
5 kx * cpowfN: (libc)Exponents and Logarithms.
5 kx * cpowf: (libc)Exponents and Logarithms.
5 kx * cpowl: (libc)Exponents and Logarithms.
5 kx * cpow: (libc)Exponents and Logarithms.
5 kx * cprojfNx: (libc)Operations on Complex.
5 kx * cprojfN: (libc)Operations on Complex.
5 kx * cprojf: (libc)Operations on Complex.
5 kx * cprojl: (libc)Operations on Complex.
5 kx * cproj: (libc)Operations on Complex.
5 kx * CPU_CLR: (libc)CPU Affinity.
5 kx * CPU_FEATURE_ACTIVE: (libc)X86.
5 kx * CPU_FEATURE_PRESENT: (libc)X86.
5 kx * CPU_ISSET: (libc)CPU Affinity.
5 kx * CPU_SETSIZE: (libc)CPU Affinity.
5 kx * CPU_SET: (libc)CPU Affinity.
5 kx * CPU_ZERO: (libc)CPU Affinity.
5 kx * CREAD: (libc)Control Modes.
5 kx * crealfNx: (libc)Operations on Complex.
5 kx * crealfN: (libc)Operations on Complex.
5 kx * crealf: (libc)Operations on Complex.
5 kx * creall: (libc)Operations on Complex.
5 kx * creal: (libc)Operations on Complex.
5 kx * creat: (libc)Opening and Closing Files.
5 kx * creat64: (libc)Opening and Closing Files.
5 kx * CRTS_IFLOW: (libc)Control Modes.
5 kx * crypt_r: (libc)Passphrase Storage.
5 kx * crypt: (libc)Passphrase Storage.
5 kx * CS5: (libc)Control Modes.
5 kx * CS6: (libc)Control Modes.
5 kx * CS7: (libc)Control Modes.
5 kx * CS8: (libc)Control Modes.
5 kx * csinfNx: (libc)Trig Functions.
5 kx * csinfN: (libc)Trig Functions.
5 kx * csinf: (libc)Trig Functions.
5 kx * csinhfNx: (libc)Hyperbolic Functions.
5 kx * csinhfN: (libc)Hyperbolic Functions.
5 kx * csinhf: (libc)Hyperbolic Functions.
5 kx * csinhl: (libc)Hyperbolic Functions.
5 kx * csinh: (libc)Hyperbolic Functions.
5 kx * csinl: (libc)Trig Functions.
5 kx * csin: (libc)Trig Functions.
5 kx * CSIZE: (libc)Control Modes.
5 kx * csqrtfNx: (libc)Exponents and Logarithms.
5 kx * csqrtfN: (libc)Exponents and Logarithms.
5 kx * csqrtf: (libc)Exponents and Logarithms.
5 kx * csqrtl: (libc)Exponents and Logarithms.
5 kx * csqrt: (libc)Exponents and Logarithms.
5 kx * CSTOPB: (libc)Control Modes.
5 kx * ctanfNx: (libc)Trig Functions.
5 kx * ctanfN: (libc)Trig Functions.
5 kx * ctanf: (libc)Trig Functions.
5 kx * ctanhfNx: (libc)Hyperbolic Functions.
5 kx * ctanhfN: (libc)Hyperbolic Functions.
5 kx * ctanhf: (libc)Hyperbolic Functions.
5 kx * ctanhl: (libc)Hyperbolic Functions.
5 kx * ctanh: (libc)Hyperbolic Functions.
5 kx * ctanl: (libc)Trig Functions.
5 kx * ctan: (libc)Trig Functions.
5 kx * ctermid: (libc)Identifying the Terminal.
5 kx * ctime_r: (libc)Formatting Calendar Time.
5 kx * ctime: (libc)Formatting Calendar Time.
5 kx * cuserid: (libc)Who Logged In.
5 kx * daddl: (libc)Misc FP Arithmetic.
5 kx * dcgettext: (libc)Translation with gettext.
5 kx * dcngettext: (libc)Advanced gettext functions.
5 kx * ddivl: (libc)Misc FP Arithmetic.
5 kx * dfmal: (libc)Misc FP Arithmetic.
5 kx * dgettext: (libc)Translation with gettext.
5 kx * difftime: (libc)Calculating Elapsed Time.
5 kx * dirfd: (libc)Opening a Directory.
5 kx * dirname: (libc)Finding Tokens in a String.
5 kx * div: (libc)Integer Division.
5 kx * DLFO_EH_SEGMENT_TYPE: (libc)Dynamic Linker Introspection.
5 kx * DLFO_STRUCT_HAS_EH_COUNT: (libc)Dynamic Linker Introspection.
5 kx * DLFO_STRUCT_HAS_EH_DBASE: (libc)Dynamic Linker Introspection.
5 kx * dlinfo: (libc)Dynamic Linker Introspection.
5 kx * dmull: (libc)Misc FP Arithmetic.
5 kx * dngettext: (libc)Advanced gettext functions.
5 kx * drand48_r: (libc)SVID Random.
5 kx * drand48: (libc)SVID Random.
5 kx * dremf: (libc)Remainder Functions.
5 kx * dreml: (libc)Remainder Functions.
5 kx * drem: (libc)Remainder Functions.
5 kx * dsqrtl: (libc)Misc FP Arithmetic.
5 kx * dsubl: (libc)Misc FP Arithmetic.
5 kx * DTTOIF: (libc)Directory Entries.
5 kx * dup: (libc)Duplicating Descriptors.
5 kx * dup2: (libc)Duplicating Descriptors.
5 kx * E2BIG: (libc)Error Codes.
5 kx * EACCES: (libc)Error Codes.
5 kx * EADDRINUSE: (libc)Error Codes.
5 kx * EADDRNOTAVAIL: (libc)Error Codes.
5 kx * EADV: (libc)Error Codes.
5 kx * EAFNOSUPPORT: (libc)Error Codes.
5 kx * EAGAIN: (libc)Error Codes.
5 kx * EALREADY: (libc)Error Codes.
5 kx * EAUTH: (libc)Error Codes.
5 kx * EBACKGROUND: (libc)Error Codes.
5 kx * EBADE: (libc)Error Codes.
5 kx * EBADFD: (libc)Error Codes.
5 kx * EBADF: (libc)Error Codes.
5 kx * EBADMSG: (libc)Error Codes.
5 kx * EBADRPC: (libc)Error Codes.
5 kx * EBADRQC: (libc)Error Codes.
5 kx * EBADR: (libc)Error Codes.
5 kx * EBADSLT: (libc)Error Codes.
5 kx * EBFONT: (libc)Error Codes.
5 kx * EBUSY: (libc)Error Codes.
5 kx * ECANCELED: (libc)Error Codes.
5 kx * ECHILD: (libc)Error Codes.
5 kx * ECHOCTL: (libc)Local Modes.
5 kx * ECHOE: (libc)Local Modes.
5 kx * ECHOKE: (libc)Local Modes.
5 kx * ECHOK: (libc)Local Modes.
5 kx * ECHONL: (libc)Local Modes.
5 kx * ECHOPRT: (libc)Local Modes.
5 kx * ECHO: (libc)Local Modes.
5 kx * ECHRNG: (libc)Error Codes.
5 kx * ECOMM: (libc)Error Codes.
5 kx * ECONNABORTED: (libc)Error Codes.
5 kx * ECONNREFUSED: (libc)Error Codes.
5 kx * ECONNRESET: (libc)Error Codes.
5 kx * ecvt_r: (libc)System V Number Conversion.
5 kx * ecvt: (libc)System V Number Conversion.
5 kx * EDEADLK: (libc)Error Codes.
5 kx * EDEADLOCK: (libc)Error Codes.
5 kx * EDESTADDRREQ: (libc)Error Codes.
5 kx * EDIED: (libc)Error Codes.
5 kx * EDOM: (libc)Error Codes.
5 kx * EDOTDOT: (libc)Error Codes.
5 kx * EDQUOT: (libc)Error Codes.
5 kx * ED: (libc)Error Codes.
5 kx * EEXIST: (libc)Error Codes.
5 kx * EFAULT: (libc)Error Codes.
5 kx * EFBIG: (libc)Error Codes.
5 kx * EFTYPE: (libc)Error Codes.
5 kx * EGRATUITOUS: (libc)Error Codes.
5 kx * EGREGIOUS: (libc)Error Codes.
5 kx * EHOSTDOWN: (libc)Error Codes.
5 kx * EHOSTUNREACH: (libc)Error Codes.
5 kx * EHWPOISON: (libc)Error Codes.
5 kx * EIDRM: (libc)Error Codes.
5 kx * EIEIO: (libc)Error Codes.
5 kx * EILSEQ: (libc)Error Codes.
5 kx * EINPROGRESS: (libc)Error Codes.
5 kx * EINTR: (libc)Error Codes.
5 kx * EINVAL: (libc)Error Codes.
5 kx * EIO: (libc)Error Codes.
5 kx * EISCONN: (libc)Error Codes.
5 kx * EISDIR: (libc)Error Codes.
5 kx * EISNAM: (libc)Error Codes.
5 kx * EKEYEXPIRED: (libc)Error Codes.
5 kx * EKEYREJECTED: (libc)Error Codes.
5 kx * EKEYREVOKED: (libc)Error Codes.
5 kx * EL2HLT: (libc)Error Codes.
5 kx * EL2NSYNC: (libc)Error Codes.
5 kx * EL3HLT: (libc)Error Codes.
5 kx * EL3RST: (libc)Error Codes.
5 kx * ELIBACC: (libc)Error Codes.
5 kx * ELIBBAD: (libc)Error Codes.
5 kx * ELIBEXEC: (libc)Error Codes.
5 kx * ELIBMAX: (libc)Error Codes.
5 kx * ELIBSCN: (libc)Error Codes.
5 kx * ELNRNG: (libc)Error Codes.
5 kx * ELOOP: (libc)Error Codes.
5 kx * EMEDIUMTYPE: (libc)Error Codes.
5 kx * EMFILE: (libc)Error Codes.
5 kx * EMLINK: (libc)Error Codes.
5 kx * EMSGSIZE: (libc)Error Codes.
5 kx * EMULTIHOP: (libc)Error Codes.
5 kx * ENAMETOOLONG: (libc)Error Codes.
5 kx * ENAVAIL: (libc)Error Codes.
5 kx * endfsent: (libc)fstab.
5 kx * endgrent: (libc)Scanning All Groups.
5 kx * endhostent: (libc)Host Names.
5 kx * endmntent: (libc)mtab.
5 kx * endnetent: (libc)Networks Database.
5 kx * endnetgrent: (libc)Lookup Netgroup.
5 kx * endprotoent: (libc)Protocols Database.
5 kx * endpwent: (libc)Scanning All Users.
5 kx * endservent: (libc)Services Database.
5 kx * endutent: (libc)Manipulating the Database.
5 kx * endutxent: (libc)XPG Functions.
5 kx * ENEEDAUTH: (libc)Error Codes.
5 kx * ENETDOWN: (libc)Error Codes.
5 kx * ENETRESET: (libc)Error Codes.
5 kx * ENETUNREACH: (libc)Error Codes.
5 kx * ENFILE: (libc)Error Codes.
5 kx * ENOANO: (libc)Error Codes.
5 kx * ENOBUFS: (libc)Error Codes.
5 kx * ENOCSI: (libc)Error Codes.
5 kx * ENODATA: (libc)Error Codes.
5 kx * ENODEV: (libc)Error Codes.
5 kx * ENOENT: (libc)Error Codes.
5 kx * ENOEXEC: (libc)Error Codes.
5 kx * ENOKEY: (libc)Error Codes.
5 kx * ENOLCK: (libc)Error Codes.
5 kx * ENOLINK: (libc)Error Codes.
5 kx * ENOMEDIUM: (libc)Error Codes.
5 kx * ENOMEM: (libc)Error Codes.
5 kx * ENOMSG: (libc)Error Codes.
5 kx * ENONET: (libc)Error Codes.
5 kx * ENOPKG: (libc)Error Codes.
5 kx * ENOPROTOOPT: (libc)Error Codes.
5 kx * ENOSPC: (libc)Error Codes.
5 kx * ENOSR: (libc)Error Codes.
5 kx * ENOSTR: (libc)Error Codes.
5 kx * ENOSYS: (libc)Error Codes.
5 kx * ENOTBLK: (libc)Error Codes.
5 kx * ENOTCONN: (libc)Error Codes.
5 kx * ENOTDIR: (libc)Error Codes.
5 kx * ENOTEMPTY: (libc)Error Codes.
5 kx * ENOTNAM: (libc)Error Codes.
5 kx * ENOTRECOVERABLE: (libc)Error Codes.
5 kx * ENOTSOCK: (libc)Error Codes.
5 kx * ENOTSUP: (libc)Error Codes.
5 kx * ENOTTY: (libc)Error Codes.
5 kx * ENOTUNIQ: (libc)Error Codes.
5 kx * envz_add: (libc)Envz Functions.
5 kx * envz_entry: (libc)Envz Functions.
5 kx * envz_get: (libc)Envz Functions.
5 kx * envz_merge: (libc)Envz Functions.
5 kx * envz_remove: (libc)Envz Functions.
5 kx * envz_strip: (libc)Envz Functions.
5 kx * ENXIO: (libc)Error Codes.
5 kx * EOF: (libc)EOF and Errors.
5 kx * EOPNOTSUPP: (libc)Error Codes.
5 kx * EOVERFLOW: (libc)Error Codes.
5 kx * EOWNERDEAD: (libc)Error Codes.
5 kx * EPERM: (libc)Error Codes.
5 kx * EPFNOSUPPORT: (libc)Error Codes.
5 kx * EPIPE: (libc)Error Codes.
5 kx * EPROCLIM: (libc)Error Codes.
5 kx * EPROCUNAVAIL: (libc)Error Codes.
5 kx * EPROGMISMATCH: (libc)Error Codes.
5 kx * EPROGUNAVAIL: (libc)Error Codes.
5 kx * EPROTONOSUPPORT: (libc)Error Codes.
5 kx * EPROTOTYPE: (libc)Error Codes.
5 kx * EPROTO: (libc)Error Codes.
5 kx * EQUIV_CLASS_MAX: (libc)Utility Limits.
5 kx * erand48_r: (libc)SVID Random.
5 kx * erand48: (libc)SVID Random.
5 kx * ERANGE: (libc)Error Codes.
5 kx * EREMCHG: (libc)Error Codes.
5 kx * EREMOTEIO: (libc)Error Codes.
5 kx * EREMOTE: (libc)Error Codes.
5 kx * ERESTART: (libc)Error Codes.
5 kx * erfcfNx: (libc)Special Functions.
5 kx * erfcfN: (libc)Special Functions.
5 kx * erfcf: (libc)Special Functions.
5 kx * erfcl: (libc)Special Functions.
5 kx * erfc: (libc)Special Functions.
5 kx * erffNx: (libc)Special Functions.
5 kx * erffN: (libc)Special Functions.
5 kx * erff: (libc)Special Functions.
5 kx * ERFKILL: (libc)Error Codes.
5 kx * erfl: (libc)Special Functions.
5 kx * erf: (libc)Special Functions.
5 kx * EROFS: (libc)Error Codes.
5 kx * ERPCMISMATCH: (libc)Error Codes.
5 kx * errno: (libc)Checking for Errors.
5 kx * error_at_line: (libc)Error Messages.
5 kx * error: (libc)Error Messages.
5 kx * errx: (libc)Error Messages.
5 kx * err: (libc)Error Messages.
5 kx * ESHUTDOWN: (libc)Error Codes.
5 kx * ESOCKTNOSUPPORT: (libc)Error Codes.
5 kx * ESPIPE: (libc)Error Codes.
5 kx * ESRCH: (libc)Error Codes.
5 kx * ESRMNT: (libc)Error Codes.
5 kx * ESTALE: (libc)Error Codes.
5 kx * ESTRPIPE: (libc)Error Codes.
5 kx * ETIMEDOUT: (libc)Error Codes.
5 kx * ETIME: (libc)Error Codes.
5 kx * ETOOMANYREFS: (libc)Error Codes.
5 kx * ETXTBSY: (libc)Error Codes.
5 kx * EUCLEAN: (libc)Error Codes.
5 kx * EUNATCH: (libc)Error Codes.
5 kx * EUSERS: (libc)Error Codes.
5 kx * EWOULDBLOCK: (libc)Error Codes.
5 kx * EXDEV: (libc)Error Codes.
5 kx * execle: (libc)Executing a File.
5 kx * execlp: (libc)Executing a File.
5 kx * execl: (libc)Executing a File.
5 kx * execve: (libc)Executing a File.
5 kx * execvp: (libc)Executing a File.
5 kx * execv: (libc)Executing a File.
5 kx * EXFULL: (libc)Error Codes.
5 kx * exit: (libc)Normal Termination.
5 kx * EXIT_FAILURE: (libc)Exit Status.
5 kx * EXIT_SUCCESS: (libc)Exit Status.
5 kx * exp10fNx: (libc)Exponents and Logarithms.
5 kx * exp10fN: (libc)Exponents and Logarithms.
5 kx * exp10f: (libc)Exponents and Logarithms.
5 kx * exp10l: (libc)Exponents and Logarithms.
5 kx * exp10: (libc)Exponents and Logarithms.
5 kx * exp2f: (libc)Exponents and Logarithms.
5 kx * exp2: (libc)Exponents and Logarithms.
5 kx * expfNx: (libc)Exponents and Logarithms.
5 kx * expfN: (libc)Exponents and Logarithms.
5 kx * expf: (libc)Exponents and Logarithms.
5 kx * explicit_bzero: (libc)Erasing Sensitive Data.
5 kx * expl: (libc)Exponents and Logarithms.
5 kx * expm1fNx: (libc)Exponents and Logarithms.
5 kx * expm1fN: (libc)Exponents and Logarithms.
5 kx * expm1f: (libc)Exponents and Logarithms.
5 kx * expm1l: (libc)Exponents and Logarithms.
5 kx * expm1: (libc)Exponents and Logarithms.
5 kx * exp: (libc)Exponents and Logarithms.
5 kx * exp2fNx: (libc)Exponents and Logarithms.
5 kx * exp2fN: (libc)Exponents and Logarithms.
5 kx * exp2l: (libc)Exponents and Logarithms.
5 kx * EXPR_NEST_MAX: (libc)Utility Limits.
5 kx * F_DUPFD: (libc)Duplicating Descriptors.
5 kx * F_GETFD: (libc)Descriptor Flags.
5 kx * F_GETFL: (libc)Getting File Status Flags.
5 kx * F_GETLK: (libc)File Locks.
5 kx * F_GETOWN: (libc)Interrupt Input.
5 kx * F_OFD_GETLK: (libc)Open File Description Locks.
5 kx * F_OFD_SETLKW: (libc)Open File Description Locks.
5 kx * F_OFD_SETLK: (libc)Open File Description Locks.
5 kx * F_OK: (libc)Testing File Access.
5 kx * F_SETFD: (libc)Descriptor Flags.
5 kx * F_SETFL: (libc)Getting File Status Flags.
5 kx * F_SETLKW: (libc)File Locks.
5 kx * F_SETLK: (libc)File Locks.
5 kx * F_SETOWN: (libc)Interrupt Input.
5 kx * fabsfNx: (libc)Absolute Value.
5 kx * fabsfN: (libc)Absolute Value.
5 kx * fabsf: (libc)Absolute Value.
5 kx * fabsl: (libc)Absolute Value.
5 kx * fabs: (libc)Absolute Value.
5 kx * faddl: (libc)Misc FP Arithmetic.
5 kx * fadd: (libc)Misc FP Arithmetic.
5 kx * fchdir: (libc)Working Directory.
5 kx * fchmod: (libc)Setting Permissions.
5 kx * fchown: (libc)File Owner.
5 kx * fcloseall: (libc)Closing Streams.
5 kx * fclose: (libc)Closing Streams.
5 kx * fcntl: (libc)Control Operations.
5 kx * fcvt_r: (libc)System V Number Conversion.
5 kx * fcvt: (libc)System V Number Conversion.
5 kx * FD_CLOEXEC: (libc)Descriptor Flags.
5 kx * FD_CLR: (libc)Waiting for I/O.
5 kx * FD_ISSET: (libc)Waiting for I/O.
5 kx * FD_SETSIZE: (libc)Waiting for I/O.
5 kx * FD_SET: (libc)Waiting for I/O.
5 kx * FD_ZERO: (libc)Waiting for I/O.
5 kx * fdatasync: (libc)Synchronizing I/O.
5 kx * fdimfNx: (libc)Misc FP Arithmetic.
5 kx * fdimfN: (libc)Misc FP Arithmetic.
5 kx * fdimf: (libc)Misc FP Arithmetic.
5 kx * fdiml: (libc)Misc FP Arithmetic.
5 kx * fdim: (libc)Misc FP Arithmetic.
5 kx * fdivl: (libc)Misc FP Arithmetic.
5 kx * fdiv: (libc)Misc FP Arithmetic.
5 kx * fdopendir: (libc)Opening a Directory.
5 kx * fdopen: (libc)Descriptors and Streams.
5 kx * FE_SNANS_ALWAYS_SIGNAL: (libc)Infinity and NaN.
5 kx * feclearexcept: (libc)Status bit operations.
5 kx * fedisableexcept: (libc)Control Functions.
5 kx * feenableexcept: (libc)Control Functions.
5 kx * fegetenv: (libc)Control Functions.
5 kx * fegetexceptflag: (libc)Status bit operations.
5 kx * fegetexcept: (libc)Control Functions.
5 kx * fegetmode: (libc)Control Functions.
5 kx * fegetround: (libc)Rounding.
5 kx * feholdexcept: (libc)Control Functions.
5 kx * feof_unlocked: (libc)EOF and Errors.
5 kx * feof: (libc)EOF and Errors.
5 kx * feraiseexcept: (libc)Status bit operations.
5 kx * ferror_unlocked: (libc)EOF and Errors.
5 kx * ferror: (libc)EOF and Errors.
5 kx * fesetenv: (libc)Control Functions.
5 kx * fesetexceptflag: (libc)Status bit operations.
5 kx * fesetexcept: (libc)Status bit operations.
5 kx * fesetmode: (libc)Control Functions.
5 kx * fesetround: (libc)Rounding.
5 kx * fetestexceptflag: (libc)Status bit operations.
5 kx * fetestexcept: (libc)Status bit operations.
5 kx * feupdateenv: (libc)Control Functions.
5 kx * fexecve: (libc)Executing a File.
5 kx * fflush_unlocked: (libc)Flushing Buffers.
5 kx * fflush: (libc)Flushing Buffers.
5 kx * ffmal: (libc)Misc FP Arithmetic.
5 kx * ffma: (libc)Misc FP Arithmetic.
5 kx * fgetc_unlocked: (libc)Character Input.
5 kx * fgetc: (libc)Character Input.
5 kx * fgetgrent_r: (libc)Scanning All Groups.
5 kx * fgetgrent: (libc)Scanning All Groups.
5 kx * fgetpos: (libc)Portable Positioning.
5 kx * fgetpos64: (libc)Portable Positioning.
5 kx * fgetpwent_r: (libc)Scanning All Users.
5 kx * fgetpwent: (libc)Scanning All Users.
5 kx * fgets_unlocked: (libc)Line Input.
5 kx * fgets: (libc)Line Input.
5 kx * fgetwc_unlocked: (libc)Character Input.
5 kx * fgetwc: (libc)Character Input.
5 kx * fgetws_unlocked: (libc)Line Input.
5 kx * fgetws: (libc)Line Input.
5 kx * FILENAME_MAX: (libc)Limits for Files.
5 kx * fileno_unlocked: (libc)Descriptors and Streams.
5 kx * fileno: (libc)Descriptors and Streams.
5 kx * finitef: (libc)Floating Point Classes.
5 kx * finitel: (libc)Floating Point Classes.
5 kx * finite: (libc)Floating Point Classes.
5 kx * flockfile: (libc)Streams and Threads.
5 kx * floorfNx: (libc)Rounding Functions.
5 kx * floorfN: (libc)Rounding Functions.
5 kx * floorf: (libc)Rounding Functions.
5 kx * floorl: (libc)Rounding Functions.
5 kx * floor: (libc)Rounding Functions.
5 kx * FLUSHO: (libc)Local Modes.
5 kx * fMaddfNx: (libc)Misc FP Arithmetic.
5 kx * fMaddfN: (libc)Misc FP Arithmetic.
5 kx * fmafNx: (libc)Misc FP Arithmetic.
5 kx * fmafN: (libc)Misc FP Arithmetic.
5 kx * fmaf: (libc)Misc FP Arithmetic.
5 kx * fmal: (libc)Misc FP Arithmetic.
5 kx * fmaxfNx: (libc)Misc FP Arithmetic.
5 kx * fmaxfN: (libc)Misc FP Arithmetic.
5 kx * fmaxf: (libc)Misc FP Arithmetic.
5 kx * fmaximum_mag_numfNx: (libc)Misc FP Arithmetic.
5 kx * fmaximum_mag_numfN: (libc)Misc FP Arithmetic.
5 kx * fmaximum_mag_numf: (libc)Misc FP Arithmetic.
5 kx * fmaximum_mag_numl: (libc)Misc FP Arithmetic.
5 kx * fmaximum_mag_num: (libc)Misc FP Arithmetic.
5 kx * fmaximum_magfNx: (libc)Misc FP Arithmetic.
5 kx * fmaximum_magfN: (libc)Misc FP Arithmetic.
5 kx * fmaximum_magf: (libc)Misc FP Arithmetic.
5 kx * fmaximum_magl: (libc)Misc FP Arithmetic.
5 kx * fmaximum_mag: (libc)Misc FP Arithmetic.
5 kx * fmaximum_numfNx: (libc)Misc FP Arithmetic.
5 kx * fmaximum_numfN: (libc)Misc FP Arithmetic.
5 kx * fmaximum_numf: (libc)Misc FP Arithmetic.
5 kx * fmaximum_numl: (libc)Misc FP Arithmetic.
5 kx * fmaximum_num: (libc)Misc FP Arithmetic.
5 kx * fmaximumfNx: (libc)Misc FP Arithmetic.
5 kx * fmaximumfN: (libc)Misc FP Arithmetic.
5 kx * fmaximumf: (libc)Misc FP Arithmetic.
5 kx * fmaximuml: (libc)Misc FP Arithmetic.
5 kx * fmaximum: (libc)Misc FP Arithmetic.
5 kx * fmaxl: (libc)Misc FP Arithmetic.
5 kx * fmaxmagfNx: (libc)Misc FP Arithmetic.
5 kx * fmaxmagfN: (libc)Misc FP Arithmetic.
5 kx * fmaxmagf: (libc)Misc FP Arithmetic.
5 kx * fmaxmagl: (libc)Misc FP Arithmetic.
5 kx * fmaxmag: (libc)Misc FP Arithmetic.
5 kx * fmax: (libc)Misc FP Arithmetic.
5 kx * fma: (libc)Misc FP Arithmetic.
5 kx * fMdivfNx: (libc)Misc FP Arithmetic.
5 kx * fMdivfN: (libc)Misc FP Arithmetic.
5 kx * fmemopen: (libc)String Streams.
5 kx * fMfmafNx: (libc)Misc FP Arithmetic.
5 kx * fMfmafN: (libc)Misc FP Arithmetic.
5 kx * fminfNx: (libc)Misc FP Arithmetic.
5 kx * fminfN: (libc)Misc FP Arithmetic.
5 kx * fminf: (libc)Misc FP Arithmetic.
5 kx * fminimum_mag_numfNx: (libc)Misc FP Arithmetic.
5 kx * fminimum_mag_numfN: (libc)Misc FP Arithmetic.
5 kx * fminimum_mag_numf: (libc)Misc FP Arithmetic.
5 kx * fminimum_mag_numl: (libc)Misc FP Arithmetic.
5 kx * fminimum_mag_num: (libc)Misc FP Arithmetic.
5 kx * fminimum_magfNx: (libc)Misc FP Arithmetic.
5 kx * fminimum_magfN: (libc)Misc FP Arithmetic.
5 kx * fminimum_magf: (libc)Misc FP Arithmetic.
5 kx * fminimum_magl: (libc)Misc FP Arithmetic.
5 kx * fminimum_mag: (libc)Misc FP Arithmetic.
5 kx * fminimum_numfNx: (libc)Misc FP Arithmetic.
5 kx * fminimum_numfN: (libc)Misc FP Arithmetic.
5 kx * fminimum_numf: (libc)Misc FP Arithmetic.
5 kx * fminimum_numl: (libc)Misc FP Arithmetic.
5 kx * fminimum_num: (libc)Misc FP Arithmetic.
5 kx * fminimumfNx: (libc)Misc FP Arithmetic.
5 kx * fminimumfN: (libc)Misc FP Arithmetic.
5 kx * fminimumf: (libc)Misc FP Arithmetic.
5 kx * fminimuml: (libc)Misc FP Arithmetic.
5 kx * fminimum: (libc)Misc FP Arithmetic.
5 kx * fminl: (libc)Misc FP Arithmetic.
5 kx * fminmagfNx: (libc)Misc FP Arithmetic.
5 kx * fminmagfN: (libc)Misc FP Arithmetic.
5 kx * fminmagf: (libc)Misc FP Arithmetic.
5 kx * fminmagl: (libc)Misc FP Arithmetic.
5 kx * fminmag: (libc)Misc FP Arithmetic.
5 kx * fmin: (libc)Misc FP Arithmetic.
5 kx * fMmulfNx: (libc)Misc FP Arithmetic.
5 kx * fMmulfN: (libc)Misc FP Arithmetic.
5 kx * fmodfNx: (libc)Remainder Functions.
5 kx * fmodfN: (libc)Remainder Functions.
5 kx * fmodf: (libc)Remainder Functions.
5 kx * fmodl: (libc)Remainder Functions.
5 kx * fmod: (libc)Remainder Functions.
5 kx * fMsqrtfNx: (libc)Misc FP Arithmetic.
5 kx * fMsqrtfN: (libc)Misc FP Arithmetic.
5 kx * fMsubfNx: (libc)Misc FP Arithmetic.
5 kx * fMsubfN: (libc)Misc FP Arithmetic.
5 kx * fmtmsg: (libc)Printing Formatted Messages.
5 kx * fmull: (libc)Misc FP Arithmetic.
5 kx * fmul: (libc)Misc FP Arithmetic.
5 kx * fMxaddfNx: (libc)Misc FP Arithmetic.
5 kx * fMxaddfN: (libc)Misc FP Arithmetic.
5 kx * fMxdivfNx: (libc)Misc FP Arithmetic.
5 kx * fMxdivfN: (libc)Misc FP Arithmetic.
5 kx * fMxfmafNx: (libc)Misc FP Arithmetic.
5 kx * fMxfmafN: (libc)Misc FP Arithmetic.
5 kx * fMxmulfNx: (libc)Misc FP Arithmetic.
5 kx * fMxmulfN: (libc)Misc FP Arithmetic.
5 kx * fMxsqrtfNx: (libc)Misc FP Arithmetic.
5 kx * fMxsqrtfN: (libc)Misc FP Arithmetic.
5 kx * fMxsubfNx: (libc)Misc FP Arithmetic.
5 kx * fMxsubfN: (libc)Misc FP Arithmetic.
5 kx * fnmatch: (libc)Wildcard Matching.
5 kx * FOPEN_MAX: (libc)Opening Streams.
5 kx * fopencookie: (libc)Streams and Cookies.
5 kx * fopen: (libc)Opening Streams.
5 kx * fopen64: (libc)Opening Streams.
5 kx * forkpty: (libc)Pseudo-Terminal Pairs.
5 kx * fork: (libc)Creating a Process.
5 kx * FP_ILOGB0: (libc)Exponents and Logarithms.
5 kx * FP_ILOGBNAN: (libc)Exponents and Logarithms.
5 kx * FP_LLOGB0: (libc)Exponents and Logarithms.
5 kx * FP_LLOGBNAN: (libc)Exponents and Logarithms.
5 kx * fpathconf: (libc)Pathconf.
5 kx * fpclassify: (libc)Floating Point Classes.
5 kx * fprintf: (libc)Formatted Output Functions.
5 kx * fputc_unlocked: (libc)Simple Output.
5 kx * fputc: (libc)Simple Output.
5 kx * fputs_unlocked: (libc)Simple Output.
5 kx * fputs: (libc)Simple Output.
5 kx * fputwc_unlocked: (libc)Simple Output.
5 kx * fputwc: (libc)Simple Output.
5 kx * fputws_unlocked: (libc)Simple Output.
5 kx * fputws: (libc)Simple Output.
5 kx * fread_unlocked: (libc)Block Input/Output.
5 kx * fread: (libc)Block Input/Output.
5 kx * free: (libc)Freeing after Malloc.
5 kx * freopen: (libc)Opening Streams.
5 kx * freopen64: (libc)Opening Streams.
5 kx * frexpfNx: (libc)Normalization Functions.
5 kx * frexpfN: (libc)Normalization Functions.
5 kx * frexpf: (libc)Normalization Functions.
5 kx * frexpl: (libc)Normalization Functions.
5 kx * frexp: (libc)Normalization Functions.
5 kx * fromfpfNx: (libc)Rounding Functions.
5 kx * fromfpfN: (libc)Rounding Functions.
5 kx * fromfpf: (libc)Rounding Functions.
5 kx * fromfpl: (libc)Rounding Functions.
5 kx * fromfpxfNx: (libc)Rounding Functions.
5 kx * fromfpxfN: (libc)Rounding Functions.
5 kx * fromfpxf: (libc)Rounding Functions.
5 kx * fromfpxl: (libc)Rounding Functions.
5 kx * fromfpx: (libc)Rounding Functions.
5 kx * fromfp: (libc)Rounding Functions.
5 kx * fscanf: (libc)Formatted Input Functions.
5 kx * fseeko: (libc)File Positioning.
5 kx * fseeko64: (libc)File Positioning.
5 kx * fseek: (libc)File Positioning.
5 kx * fsetpos: (libc)Portable Positioning.
5 kx * fsetpos64: (libc)Portable Positioning.
5 kx * fsqrtl: (libc)Misc FP Arithmetic.
5 kx * fsqrt: (libc)Misc FP Arithmetic.
5 kx * fstat: (libc)Reading Attributes.
5 kx * fstat64: (libc)Reading Attributes.
5 kx * fsubl: (libc)Misc FP Arithmetic.
5 kx * fsub: (libc)Misc FP Arithmetic.
5 kx * fsync: (libc)Synchronizing I/O.
5 kx * ftello: (libc)File Positioning.
5 kx * ftello64: (libc)File Positioning.
5 kx * ftell: (libc)File Positioning.
5 kx * ftruncate: (libc)File Size.
5 kx * ftruncate64: (libc)File Size.
5 kx * ftrylockfile: (libc)Streams and Threads.
5 kx * ftw: (libc)Working with Directory Trees.
5 kx * ftw64: (libc)Working with Directory Trees.
5 kx * funlockfile: (libc)Streams and Threads.
5 kx * futimes: (libc)File Times.
5 kx * fwide: (libc)Streams and I18N.
5 kx * fwprintf: (libc)Formatted Output Functions.
5 kx * fwrite_unlocked: (libc)Block Input/Output.
5 kx * fwrite: (libc)Block Input/Output.
5 kx * fwscanf: (libc)Formatted Input Functions.
5 kx * gammaf: (libc)Special Functions.
5 kx * gammal: (libc)Special Functions.
5 kx * gamma: (libc)Special Functions.
5 kx * gcvt: (libc)System V Number Conversion.
5 kx * get_avphys_pages: (libc)Query Memory Parameters.
5 kx * get_current_dir_name: (libc)Working Directory.
5 kx * get_nprocs_conf: (libc)Processor Resources.
5 kx * get_nprocs: (libc)Processor Resources.
5 kx * get_phys_pages: (libc)Query Memory Parameters.
5 kx * getauxval: (libc)Auxiliary Vector.
5 kx * getc_unlocked: (libc)Character Input.
5 kx * getchar_unlocked: (libc)Character Input.
5 kx * getchar: (libc)Character Input.
5 kx * getcontext: (libc)System V contexts.
5 kx * getcpu: (libc)CPU Affinity.
5 kx * getcwd: (libc)Working Directory.
5 kx * getc: (libc)Character Input.
5 kx * getdate_r: (libc)General Time String Parsing.
5 kx * getdate: (libc)General Time String Parsing.
5 kx * getdelim: (libc)Line Input.
5 kx * getdents64: (libc)Low-level Directory Access.
5 kx * getdomainnname: (libc)Host Identification.
5 kx * getegid: (libc)Reading Persona.
5 kx * getentropy: (libc)Unpredictable Bytes.
5 kx * getenv: (libc)Environment Access.
5 kx * geteuid: (libc)Reading Persona.
5 kx * getfsent: (libc)fstab.
5 kx * getfsfile: (libc)fstab.
5 kx * getfsspec: (libc)fstab.
5 kx * getgid: (libc)Reading Persona.
5 kx * getgrent_r: (libc)Scanning All Groups.
5 kx * getgrent: (libc)Scanning All Groups.
5 kx * getgrgid_r: (libc)Lookup Group.
5 kx * getgrgid: (libc)Lookup Group.
5 kx * getgrnam_r: (libc)Lookup Group.
5 kx * getgrnam: (libc)Lookup Group.
5 kx * getgrouplist: (libc)Setting Groups.
5 kx * getgroups: (libc)Reading Persona.
5 kx * gethostbyaddr_r: (libc)Host Names.
5 kx * gethostbyaddr: (libc)Host Names.
5 kx * gethostbyname2_r: (libc)Host Names.
5 kx * gethostbyname2: (libc)Host Names.
5 kx * gethostbyname_r: (libc)Host Names.
5 kx * gethostbyname: (libc)Host Names.
5 kx * gethostent: (libc)Host Names.
5 kx * gethostid: (libc)Host Identification.
5 kx * gethostname: (libc)Host Identification.
5 kx * getitimer: (libc)Setting an Alarm.
5 kx * getline: (libc)Line Input.
5 kx * getloadavg: (libc)Processor Resources.
5 kx * getlogin: (libc)Who Logged In.
5 kx * getmntent_r: (libc)mtab.
5 kx * getmntent: (libc)mtab.
5 kx * getnetbyaddr: (libc)Networks Database.
5 kx * getnetbyname: (libc)Networks Database.
5 kx * getnetent: (libc)Networks Database.
5 kx * getnetgrent_r: (libc)Lookup Netgroup.
5 kx * getnetgrent: (libc)Lookup Netgroup.
5 kx * getopt_long_only: (libc)Getopt Long Options.
5 kx * getopt_long: (libc)Getopt Long Options.
5 kx * getopt: (libc)Using Getopt.
5 kx * getpagesize: (libc)Query Memory Parameters.
5 kx * getpass: (libc)getpass.
5 kx * getpayloadfNx: (libc)FP Bit Twiddling.
5 kx * getpayloadfN: (libc)FP Bit Twiddling.
5 kx * getpayloadf: (libc)FP Bit Twiddling.
5 kx * getpayloadl: (libc)FP Bit Twiddling.
5 kx * getpayload: (libc)FP Bit Twiddling.
5 kx * getpeername: (libc)Who is Connected.
5 kx * getpgid: (libc)Process Group Functions.
5 kx * getpgrp: (libc)Process Group Functions.
5 kx * getpid: (libc)Process Identification.
5 kx * getppid: (libc)Process Identification.
5 kx * getpriority: (libc)Traditional Scheduling Functions.
5 kx * getprotobyname: (libc)Protocols Database.
5 kx * getprotobynumber: (libc)Protocols Database.
5 kx * getprotoent: (libc)Protocols Database.
5 kx * getpt: (libc)Allocation.
5 kx * getpwent_r: (libc)Scanning All Users.
5 kx * getpwent: (libc)Scanning All Users.
5 kx * getpwnam_r: (libc)Lookup User.
5 kx * getpwnam: (libc)Lookup User.
5 kx * getpwuid_r: (libc)Lookup User.
5 kx * getpwuid: (libc)Lookup User.
5 kx * getrandom: (libc)Unpredictable Bytes.
5 kx * getrlimit: (libc)Limits on Resources.
5 kx * getrlimit64: (libc)Limits on Resources.
5 kx * getrusage: (libc)Resource Usage.
5 kx * getservbyname: (libc)Services Database.
5 kx * getservbyport: (libc)Services Database.
5 kx * getservent: (libc)Services Database.
5 kx * getsid: (libc)Process Group Functions.
5 kx * getsockname: (libc)Reading Address.
5 kx * getsockopt: (libc)Socket Option Functions.
5 kx * getsubopt: (libc)Suboptions.
5 kx * gets: (libc)Line Input.
5 kx * gettext: (libc)Translation with gettext.
5 kx * gettid: (libc)Process Identification.
5 kx * gettimeofday: (libc)Getting the Time.
5 kx * getuid: (libc)Reading Persona.
5 kx * getumask: (libc)Setting Permissions.
5 kx * getutent_r: (libc)Manipulating the Database.
5 kx * getutent: (libc)Manipulating the Database.
5 kx * getutid_r: (libc)Manipulating the Database.
5 kx * getutid: (libc)Manipulating the Database.
5 kx * getutline_r: (libc)Manipulating the Database.
5 kx * getutline: (libc)Manipulating the Database.
5 kx * getutmpx: (libc)XPG Functions.
5 kx * getutmp: (libc)XPG Functions.
5 kx * getutxent: (libc)XPG Functions.
5 kx * getutxid: (libc)XPG Functions.
5 kx * getutxline: (libc)XPG Functions.
5 kx * getwc_unlocked: (libc)Character Input.
5 kx * getwchar_unlocked: (libc)Character Input.
5 kx * getwchar: (libc)Character Input.
5 kx * getwc: (libc)Character Input.
5 kx * getwd: (libc)Working Directory.
5 kx * getw: (libc)Character Input.
5 kx * globfree: (libc)More Flags for Globbing.
5 kx * globfree64: (libc)More Flags for Globbing.
5 kx * glob: (libc)Calling Glob.
5 kx * glob64: (libc)Calling Glob.
5 kx * gmtime_r: (libc)Broken-down Time.
5 kx * gmtime: (libc)Broken-down Time.
5 kx * grantpt: (libc)Allocation.
5 kx * gsignal: (libc)Signaling Yourself.
5 kx * gtty: (libc)BSD Terminal Modes.
5 kx * hasmntopt: (libc)mtab.
5 kx * hcreate_r: (libc)Hash Search Function.
5 kx * hcreate: (libc)Hash Search Function.
5 kx * hdestroy_r: (libc)Hash Search Function.
5 kx * hdestroy: (libc)Hash Search Function.
5 kx * hsearch_r: (libc)Hash Search Function.
5 kx * hsearch: (libc)Hash Search Function.
5 kx * htonl: (libc)Byte Order.
5 kx * htons: (libc)Byte Order.
5 kx * HUGE_VAL_FNx: (libc)Math Error Reporting.
5 kx * HUGE_VAL_FN: (libc)Math Error Reporting.
5 kx * HUGE_VALF: (libc)Math Error Reporting.
5 kx * HUGE_VALL: (libc)Math Error Reporting.
5 kx * HUGE_VAL: (libc)Math Error Reporting.
5 kx * HUPCL: (libc)Control Modes.
5 kx * hypotfNx: (libc)Exponents and Logarithms.
5 kx * hypotfN: (libc)Exponents and Logarithms.
5 kx * hypotf: (libc)Exponents and Logarithms.
5 kx * hypotl: (libc)Exponents and Logarithms.
5 kx * hypot: (libc)Exponents and Logarithms.
5 kx * ICANON: (libc)Local Modes.
5 kx * iconv_close: (libc)Generic Conversion Interface.
5 kx * iconv_open: (libc)Generic Conversion Interface.
5 kx * iconv: (libc)Generic Conversion Interface.
5 kx * ICRNL: (libc)Input Modes.
5 kx * IEXTEN: (libc)Local Modes.
5 kx * if_freenameindex: (libc)Interface Naming.
5 kx * if_indextoname: (libc)Interface Naming.
5 kx * if_nameindex: (libc)Interface Naming.
5 kx * if_nametoindex: (libc)Interface Naming.
5 kx * IFNAMSIZ: (libc)Interface Naming.
5 kx * IFTODT: (libc)Directory Entries.
5 kx * IGNBRK: (libc)Input Modes.
5 kx * IGNCR: (libc)Input Modes.
5 kx * IGNPAR: (libc)Input Modes.
5 kx * ilogbfNx: (libc)Exponents and Logarithms.
5 kx * ilogbfN: (libc)Exponents and Logarithms.
5 kx * ilogbf: (libc)Exponents and Logarithms.
5 kx * ilogbl: (libc)Exponents and Logarithms.
5 kx * ilogb: (libc)Exponents and Logarithms.
5 kx * imaxabs: (libc)Absolute Value.
5 kx * IMAXBEL: (libc)Input Modes.
5 kx * imaxdiv: (libc)Integer Division.
5 kx * in6addr_any: (libc)Host Address Data Type.
5 kx * in6addr_loopback: (libc)Host Address Data Type.
5 kx * INADDR_ANY: (libc)Host Address Data Type.
5 kx * INADDR_BROADCAST: (libc)Host Address Data Type.
5 kx * INADDR_LOOPBACK: (libc)Host Address Data Type.
5 kx * INADDR_NONE: (libc)Host Address Data Type.
5 kx * index: (libc)Search Functions.
5 kx * inet_addr: (libc)Host Address Functions.
5 kx * inet_aton: (libc)Host Address Functions.
5 kx * inet_lnaof: (libc)Host Address Functions.
5 kx * inet_makeaddr: (libc)Host Address Functions.
5 kx * inet_netof: (libc)Host Address Functions.
5 kx * inet_network: (libc)Host Address Functions.
5 kx * inet_ntoa: (libc)Host Address Functions.
5 kx * inet_ntop: (libc)Host Address Functions.
5 kx * inet_pton: (libc)Host Address Functions.
5 kx * INFINITY: (libc)Infinity and NaN.
5 kx * initgroups: (libc)Setting Groups.
5 kx * initstate_r: (libc)BSD Random.
5 kx * initstate: (libc)BSD Random.
5 kx * INLCR: (libc)Input Modes.
5 kx * innetgr: (libc)Netgroup Membership.
5 kx * INPCK: (libc)Input Modes.
5 kx * ioctl: (libc)IOCTLs.
5 kx * IPPORT_RESERVED: (libc)Ports.
5 kx * IPPORT_USERRESERVED: (libc)Ports.
5 kx * isalnum: (libc)Classification of Characters.
5 kx * isalpha: (libc)Classification of Characters.
5 kx * isascii: (libc)Classification of Characters.
5 kx * isatty: (libc)Is It a Terminal.
5 kx * isblank: (libc)Classification of Characters.
5 kx * iscanonical: (libc)Floating Point Classes.
5 kx * iscntrl: (libc)Classification of Characters.
5 kx * isdigit: (libc)Classification of Characters.
5 kx * iseqsig: (libc)FP Comparison Functions.
5 kx * isfinite: (libc)Floating Point Classes.
5 kx * isgraph: (libc)Classification of Characters.
5 kx * isgreaterequal: (libc)FP Comparison Functions.
5 kx * isgreater: (libc)FP Comparison Functions.
5 kx * ISIG: (libc)Local Modes.
5 kx * isinff: (libc)Floating Point Classes.
5 kx * isinfl: (libc)Floating Point Classes.
5 kx * isinf: (libc)Floating Point Classes.
5 kx * islessequal: (libc)FP Comparison Functions.
5 kx * islessgreater: (libc)FP Comparison Functions.
5 kx * isless: (libc)FP Comparison Functions.
5 kx * islower: (libc)Classification of Characters.
5 kx * isnanf: (libc)Floating Point Classes.
5 kx * isnanl: (libc)Floating Point Classes.
5 kx * isnan: (libc)Floating Point Classes.
5 kx * isnan: (libc)Floating Point Classes.
5 kx * isnormal: (libc)Floating Point Classes.
5 kx * isprint: (libc)Classification of Characters.
5 kx * ispunct: (libc)Classification of Characters.
5 kx * issignaling: (libc)Floating Point Classes.
5 kx * isspace: (libc)Classification of Characters.
5 kx * issubnormal: (libc)Floating Point Classes.
5 kx * ISTRIP: (libc)Input Modes.
5 kx * isunordered: (libc)FP Comparison Functions.
5 kx * isupper: (libc)Classification of Characters.
5 kx * iswalnum: (libc)Classification of Wide Characters.
5 kx * iswalpha: (libc)Classification of Wide Characters.
5 kx * iswblank: (libc)Classification of Wide Characters.
5 kx * iswcntrl: (libc)Classification of Wide Characters.
5 kx * iswctype: (libc)Classification of Wide Characters.
5 kx * iswdigit: (libc)Classification of Wide Characters.
5 kx * iswgraph: (libc)Classification of Wide Characters.
5 kx * iswlower: (libc)Classification of Wide Characters.
5 kx * iswprint: (libc)Classification of Wide Characters.
5 kx * iswpunct: (libc)Classification of Wide Characters.
5 kx * iswspace: (libc)Classification of Wide Characters.
5 kx * iswupper: (libc)Classification of Wide Characters.
5 kx * iswxdigit: (libc)Classification of Wide Characters.
5 kx * isxdigit: (libc)Classification of Characters.
5 kx * iszero: (libc)Floating Point Classes.
5 kx * IXANY: (libc)Input Modes.
5 kx * IXOFF: (libc)Input Modes.
5 kx * IXON: (libc)Input Modes.
5 kx * I: (libc)Complex Numbers.
5 kx * j0fNx: (libc)Special Functions.
5 kx * j0fN: (libc)Special Functions.
5 kx * j0f: (libc)Special Functions.
5 kx * j0l: (libc)Special Functions.
5 kx * j0: (libc)Special Functions.
5 kx * j1fNx: (libc)Special Functions.
5 kx * j1fN: (libc)Special Functions.
5 kx * j1f: (libc)Special Functions.
5 kx * j1l: (libc)Special Functions.
5 kx * j1: (libc)Special Functions.
5 kx * jnfNx: (libc)Special Functions.
5 kx * jnfN: (libc)Special Functions.
5 kx * jnf: (libc)Special Functions.
5 kx * jnl: (libc)Special Functions.
5 kx * jn: (libc)Special Functions.
5 kx * jrand48_r: (libc)SVID Random.
5 kx * jrand48: (libc)SVID Random.
5 kx * killpg: (libc)Signaling Another Process.
5 kx * kill: (libc)Signaling Another Process.
5 kx * l64a: (libc)Encode Binary Data.
5 kx * L_ctermid: (libc)Identifying the Terminal.
5 kx * L_cuserid: (libc)Who Logged In.
5 kx * L_tmpnam: (libc)Temporary Files.
5 kx * labs: (libc)Absolute Value.
5 kx * lcong48_r: (libc)SVID Random.
5 kx * lcong48: (libc)SVID Random.
5 kx * ldexpfNx: (libc)Normalization Functions.
5 kx * ldexpfN: (libc)Normalization Functions.
5 kx * ldexpf: (libc)Normalization Functions.
5 kx * ldexpl: (libc)Normalization Functions.
5 kx * ldexp: (libc)Normalization Functions.
5 kx * ldiv: (libc)Integer Division.
5 kx * lfind: (libc)Array Search Function.
5 kx * lgamma_r: (libc)Special Functions.
5 kx * lgammaf_r: (libc)Special Functions.
5 kx * lgammafN_r: (libc)Special Functions.
5 kx * lgammafNx_r: (libc)Special Functions.
5 kx * lgammafNx: (libc)Special Functions.
5 kx * lgammafN: (libc)Special Functions.
5 kx * lgammaf: (libc)Special Functions.
5 kx * lgammal_r: (libc)Special Functions.
5 kx * lgammal: (libc)Special Functions.
5 kx * lgamma: (libc)Special Functions.
5 kx * LINE_MAX: (libc)Utility Limits.
5 kx * LINK_MAX: (libc)Limits for Files.
5 kx * linkat: (libc)Hard Links.
5 kx * link: (libc)Hard Links.
5 kx * lio_listio: (libc)Asynchronous Reads/Writes.
5 kx * lio_listio64: (libc)Asynchronous Reads/Writes.
5 kx * listen: (libc)Listening.
5 kx * llabs: (libc)Absolute Value.
5 kx * lldiv: (libc)Integer Division.
5 kx * llogbfNx: (libc)Exponents and Logarithms.
5 kx * llogbfN: (libc)Exponents and Logarithms.
5 kx * llogbf: (libc)Exponents and Logarithms.
5 kx * llogbl: (libc)Exponents and Logarithms.
5 kx * llogb: (libc)Exponents and Logarithms.
5 kx * llrintfNx: (libc)Rounding Functions.
5 kx * llrintfN: (libc)Rounding Functions.
5 kx * llrintf: (libc)Rounding Functions.
5 kx * llrintl: (libc)Rounding Functions.
5 kx * llrint: (libc)Rounding Functions.
5 kx * llroundfNx: (libc)Rounding Functions.
5 kx * llroundfN: (libc)Rounding Functions.
5 kx * llroundf: (libc)Rounding Functions.
5 kx * llroundl: (libc)Rounding Functions.
5 kx * llround: (libc)Rounding Functions.
5 kx * localeconv: (libc)The Lame Way to Locale Data.
5 kx * localtime_r: (libc)Broken-down Time.
5 kx * localtime: (libc)Broken-down Time.
5 kx * log10fNx: (libc)Exponents and Logarithms.
5 kx * log10fN: (libc)Exponents and Logarithms.
5 kx * log10f: (libc)Exponents and Logarithms.
5 kx * log10l: (libc)Exponents and Logarithms.
5 kx * log10: (libc)Exponents and Logarithms.
5 kx * log1pfNx: (libc)Exponents and Logarithms.
5 kx * log1pfN: (libc)Exponents and Logarithms.
5 kx * log1pf: (libc)Exponents and Logarithms.
5 kx * log1pl: (libc)Exponents and Logarithms.
5 kx * log1p: (libc)Exponents and Logarithms.
5 kx * log2fN: (libc)Exponents and Logarithms.
5 kx * log2f: (libc)Exponents and Logarithms.
5 kx * log2: (libc)Exponents and Logarithms.
5 kx * logbfNx: (libc)Exponents and Logarithms.
5 kx * logbfN: (libc)Exponents and Logarithms.
5 kx * logbf: (libc)Exponents and Logarithms.
5 kx * logbl: (libc)Exponents and Logarithms.
5 kx * logb: (libc)Exponents and Logarithms.
5 kx * logfNx: (libc)Exponents and Logarithms.
5 kx * logfN: (libc)Exponents and Logarithms.
5 kx * logf: (libc)Exponents and Logarithms.
5 kx * login_tty: (libc)Logging In and Out.
5 kx * login: (libc)Logging In and Out.
5 kx * logl: (libc)Exponents and Logarithms.
5 kx * logout: (libc)Logging In and Out.
5 kx * logwtmp: (libc)Logging In and Out.
5 kx * log: (libc)Exponents and Logarithms.
5 kx * log2fNx: (libc)Exponents and Logarithms.
5 kx * log2l: (libc)Exponents and Logarithms.
5 kx * longjmp: (libc)Non-Local Details.
5 kx * lrand48_r: (libc)SVID Random.
5 kx * lrand48: (libc)SVID Random.
5 kx * lrintfNx: (libc)Rounding Functions.
5 kx * lrintfN: (libc)Rounding Functions.
5 kx * lrintf: (libc)Rounding Functions.
5 kx * lrintl: (libc)Rounding Functions.
5 kx * lrint: (libc)Rounding Functions.
5 kx * lroundfNx: (libc)Rounding Functions.
5 kx * lroundfN: (libc)Rounding Functions.
5 kx * lroundf: (libc)Rounding Functions.
5 kx * lroundl: (libc)Rounding Functions.
5 kx * lround: (libc)Rounding Functions.
5 kx * lsearch: (libc)Array Search Function.
5 kx * lseek: (libc)File Position Primitive.
5 kx * lseek64: (libc)File Position Primitive.
5 kx * lstat: (libc)Reading Attributes.
5 kx * lstat64: (libc)Reading Attributes.
5 kx * lutimes: (libc)File Times.
5 kx * madvise: (libc)Memory-mapped I/O.
5 kx * makecontext: (libc)System V contexts.
5 kx * mallinfo2: (libc)Statistics of Malloc.
5 kx * malloc: (libc)Basic Allocation.
5 kx * mallopt: (libc)Malloc Tunable Parameters.
5 kx * MAX_CANON: (libc)Limits for Files.
5 kx * MAX_INPUT: (libc)Limits for Files.
5 kx * MAXNAMLEN: (libc)Limits for Files.
5 kx * MAXSYMLINKS: (libc)Symbolic Links.
5 kx * MB_CUR_MAX: (libc)Selecting the Conversion.
5 kx * MB_LEN_MAX: (libc)Selecting the Conversion.
5 kx * mblen: (libc)Non-reentrant Character Conversion.
5 kx * mbrlen: (libc)Converting a Character.
5 kx * mbrtowc: (libc)Converting a Character.
5 kx * mbsinit: (libc)Keeping the state.
5 kx * mbsnrtowcs: (libc)Converting Strings.
5 kx * mbsrtowcs: (libc)Converting Strings.
5 kx * mbstowcs: (libc)Non-reentrant String Conversion.
5 kx * mbtowc: (libc)Non-reentrant Character Conversion.
5 kx * mcheck: (libc)Heap Consistency Checking.
5 kx * MDMBUF: (libc)Control Modes.
5 kx * memalign: (libc)Aligned Memory Blocks.
5 kx * memccpy: (libc)Copying Strings and Arrays.
5 kx * memchr: (libc)Search Functions.
5 kx * memcmp: (libc)String/Array Comparison.
5 kx * memcpy: (libc)Copying Strings and Arrays.
5 kx * memfd_create: (libc)Memory-mapped I/O.
5 kx * memfrob: (libc)Obfuscating Data.
5 kx * memmem: (libc)Search Functions.
5 kx * memmove: (libc)Copying Strings and Arrays.
5 kx * mempcpy: (libc)Copying Strings and Arrays.
5 kx * memrchr: (libc)Search Functions.
5 kx * memset: (libc)Copying Strings and Arrays.
5 kx * mkdir: (libc)Creating Directories.
5 kx * mkdtemp: (libc)Temporary Files.
5 kx * mkfifo: (libc)FIFO Special Files.
5 kx * mknod: (libc)Making Special Files.
5 kx * mkstemp: (libc)Temporary Files.
5 kx * mktemp: (libc)Temporary Files.
5 kx * mktime: (libc)Broken-down Time.
5 kx * mlockall: (libc)Page Lock Functions.
5 kx * mlock: (libc)Page Lock Functions.
5 kx * mlock2: (libc)Page Lock Functions.
5 kx * mmap: (libc)Memory-mapped I/O.
5 kx * mmap64: (libc)Memory-mapped I/O.
5 kx * modffNx: (libc)Rounding Functions.
5 kx * modffN: (libc)Rounding Functions.
5 kx * modff: (libc)Rounding Functions.
5 kx * modfl: (libc)Rounding Functions.
5 kx * modf: (libc)Rounding Functions.
5 kx * mount: (libc)Mount-Unmount-Remount.
5 kx * mprobe: (libc)Heap Consistency Checking.
5 kx * mprotect: (libc)Memory Protection.
5 kx * mrand48_r: (libc)SVID Random.
5 kx * mrand48: (libc)SVID Random.
5 kx * mremap: (libc)Memory-mapped I/O.
5 kx * MSG_DONTROUTE: (libc)Socket Data Options.
5 kx * MSG_OOB: (libc)Socket Data Options.
5 kx * MSG_PEEK: (libc)Socket Data Options.
5 kx * msync: (libc)Memory-mapped I/O.
5 kx * mtrace: (libc)Tracing malloc.
5 kx * mtx_destroy: (libc)ISO C Mutexes.
5 kx * mtx_init: (libc)ISO C Mutexes.
5 kx * mtx_lock: (libc)ISO C Mutexes.
5 kx * mtx_timedlock: (libc)ISO C Mutexes.
5 kx * mtx_trylock: (libc)ISO C Mutexes.
5 kx * mtx_unlock: (libc)ISO C Mutexes.
5 kx * munlockall: (libc)Page Lock Functions.
5 kx * munlock: (libc)Page Lock Functions.
5 kx * munmap: (libc)Memory-mapped I/O.
5 kx * muntrace: (libc)Tracing malloc.
5 kx * NAME_MAX: (libc)Limits for Files.
5 kx * nanfNx: (libc)FP Bit Twiddling.
5 kx * nanfN: (libc)FP Bit Twiddling.
5 kx * nanf: (libc)FP Bit Twiddling.
5 kx * nanl: (libc)FP Bit Twiddling.
5 kx * nanosleep: (libc)Sleeping.
5 kx * nan: (libc)FP Bit Twiddling.
5 kx * NAN: (libc)Infinity and NaN.
5 kx * NCCS: (libc)Mode Data Types.
5 kx * nearbyintfNx: (libc)Rounding Functions.
5 kx * nearbyintfN: (libc)Rounding Functions.
5 kx * nearbyintf: (libc)Rounding Functions.
5 kx * nearbyintl: (libc)Rounding Functions.
5 kx * nearbyint: (libc)Rounding Functions.
5 kx * nextafterfNx: (libc)FP Bit Twiddling.
5 kx * nextafterfN: (libc)FP Bit Twiddling.
5 kx * nextafterf: (libc)FP Bit Twiddling.
5 kx * nextafterl: (libc)FP Bit Twiddling.
5 kx * nextafter: (libc)FP Bit Twiddling.
5 kx * nextdownfNx: (libc)FP Bit Twiddling.
5 kx * nextdownfN: (libc)FP Bit Twiddling.
5 kx * nextdownf: (libc)FP Bit Twiddling.
5 kx * nextdownl: (libc)FP Bit Twiddling.
5 kx * nextdown: (libc)FP Bit Twiddling.
5 kx * nexttowardf: (libc)FP Bit Twiddling.
5 kx * nexttowardl: (libc)FP Bit Twiddling.
5 kx * nexttoward: (libc)FP Bit Twiddling.
5 kx * nextupfNx: (libc)FP Bit Twiddling.
5 kx * nextupfN: (libc)FP Bit Twiddling.
5 kx * nextupf: (libc)FP Bit Twiddling.
5 kx * nextupl: (libc)FP Bit Twiddling.
5 kx * nextup: (libc)FP Bit Twiddling.
5 kx * nftw: (libc)Working with Directory Trees.
5 kx * nftw64: (libc)Working with Directory Trees.
5 kx * ngettext: (libc)Advanced gettext functions.
5 kx * NGROUPS_MAX: (libc)General Limits.
5 kx * nice: (libc)Traditional Scheduling Functions.
5 kx * nl_langinfo: (libc)The Elegant and Fast Way.
5 kx * NOFLSH: (libc)Local Modes.
5 kx * NOKERNINFO: (libc)Local Modes.
5 kx * nrand48_r: (libc)SVID Random.
5 kx * nrand48: (libc)SVID Random.
5 kx * NSIG: (libc)Standard Signals.
5 kx * ntohl: (libc)Byte Order.
5 kx * ntohs: (libc)Byte Order.
5 kx * ntp_adjtime: (libc)Setting and Adjusting the Time.
5 kx * ntp_gettime: (libc)Setting and Adjusting the Time.
5 kx * NULL: (libc)Null Pointer Constant.
5 kx * O_ACCMODE: (libc)Access Modes.
5 kx * O_APPEND: (libc)Operating Modes.
5 kx * O_ASYNC: (libc)Operating Modes.
5 kx * O_CREAT: (libc)Open-time Flags.
5 kx * O_DIRECTORY: (libc)Open-time Flags.
5 kx * O_EXCL: (libc)Open-time Flags.
5 kx * O_EXEC: (libc)Access Modes.
5 kx * O_EXLOCK: (libc)Open-time Flags.
5 kx * O_FSYNC: (libc)Operating Modes.
5 kx * O_IGNORE_CTTY: (libc)Open-time Flags.
5 kx * O_NDELAY: (libc)Operating Modes.
5 kx * O_NOATIME: (libc)Operating Modes.
5 kx * O_NOCTTY: (libc)Open-time Flags.
5 kx * O_NOFOLLOW: (libc)Open-time Flags.
5 kx * O_NOLINK: (libc)Open-time Flags.
5 kx * O_NONBLOCK: (libc)Operating Modes.
5 kx * O_NONBLOCK: (libc)Open-time Flags.
5 kx * O_NOTRANS: (libc)Open-time Flags.
5 kx * O_PATH: (libc)Access Modes.
5 kx * O_RDONLY: (libc)Access Modes.
5 kx * O_RDWR: (libc)Access Modes.
5 kx * O_READ: (libc)Access Modes.
5 kx * O_SHLOCK: (libc)Open-time Flags.
5 kx * O_SYNC: (libc)Operating Modes.
5 kx * O_TMPFILE: (libc)Open-time Flags.
5 kx * O_TRUNC: (libc)Open-time Flags.
5 kx * O_WRITE: (libc)Access Modes.
5 kx * O_WRONLY: (libc)Access Modes.
5 kx * obstack_1grow_fast: (libc)Extra Fast Growing.
5 kx * obstack_1grow: (libc)Growing Objects.
5 kx * obstack_alignment_mask: (libc)Obstacks Data Alignment.
5 kx * obstack_alloc: (libc)Allocation in an Obstack.
5 kx * obstack_base: (libc)Status of an Obstack.
5 kx * obstack_blank_fast: (libc)Extra Fast Growing.
5 kx * obstack_blank: (libc)Growing Objects.
5 kx * obstack_chunk_size: (libc)Obstack Chunks.
5 kx * obstack_copy: (libc)Allocation in an Obstack.
5 kx * obstack_copy0: (libc)Allocation in an Obstack.
5 kx * obstack_finish: (libc)Growing Objects.
5 kx * obstack_free: (libc)Freeing Obstack Objects.
5 kx * obstack_grow: (libc)Growing Objects.
5 kx * obstack_grow0: (libc)Growing Objects.
5 kx * obstack_init: (libc)Preparing for Obstacks.
5 kx * obstack_int_grow_fast: (libc)Extra Fast Growing.
5 kx * obstack_int_grow: (libc)Growing Objects.
5 kx * obstack_next_free: (libc)Status of an Obstack.
5 kx * obstack_object_size: (libc)Status of an Obstack.
5 kx * obstack_object_size: (libc)Growing Objects.
5 kx * obstack_printf: (libc)Dynamic Output.
5 kx * obstack_ptr_grow_fast: (libc)Extra Fast Growing.
5 kx * obstack_ptr_grow: (libc)Growing Objects.
5 kx * obstack_room: (libc)Extra Fast Growing.
5 kx * obstack_vprintf: (libc)Variable Arguments Output.
5 kx * offsetof: (libc)Structure Measurement.
5 kx * on_exit: (libc)Cleanups on Exit.
5 kx * ONLCR: (libc)Output Modes.
5 kx * ONOEOT: (libc)Output Modes.
5 kx * open64: (libc)Opening and Closing Files.
5 kx * OPEN_MAX: (libc)General Limits.
5 kx * open_memstream: (libc)String Streams.
5 kx * opendir: (libc)Opening a Directory.
5 kx * openlog: (libc)openlog.
5 kx * openpty: (libc)Pseudo-Terminal Pairs.
5 kx * open: (libc)Opening and Closing Files.
5 kx * OPOST: (libc)Output Modes.
5 kx * OXTABS: (libc)Output Modes.
5 kx * P_tmpdir: (libc)Temporary Files.
5 kx * PA_FLAG_MASK: (libc)Parsing a Template String.
5 kx * PARENB: (libc)Control Modes.
5 kx * PARMRK: (libc)Input Modes.
5 kx * PARODD: (libc)Control Modes.
5 kx * parse_printf_format: (libc)Parsing a Template String.
5 kx * PATH_MAX: (libc)Limits for Files.
5 kx * pathconf: (libc)Pathconf.
5 kx * pause: (libc)Using Pause.
5 kx * pclose: (libc)Pipe to a Subprocess.
5 kx * PENDIN: (libc)Local Modes.
5 kx * perror: (libc)Error Messages.
5 kx * PF_FILE: (libc)Local Namespace Details.
5 kx * PF_INET: (libc)Internet Namespace.
5 kx * PF_INET6: (libc)Internet Namespace.
5 kx * PF_LOCAL: (libc)Local Namespace Details.
5 kx * PF_UNIX: (libc)Local Namespace Details.
5 kx * pipe: (libc)Creating a Pipe.
5 kx * PIPE_BUF: (libc)Limits for Files.
5 kx * pkey_alloc: (libc)Memory Protection.
5 kx * pkey_free: (libc)Memory Protection.
5 kx * pkey_get: (libc)Memory Protection.
5 kx * pkey_mprotect: (libc)Memory Protection.
5 kx * pkey_set: (libc)Memory Protection.
5 kx * popen: (libc)Pipe to a Subprocess.
5 kx * posix_fallocate: (libc)Storage Allocation.
5 kx * posix_fallocate64: (libc)Storage Allocation.
5 kx * posix_memalign: (libc)Aligned Memory Blocks.
5 kx * powfNx: (libc)Exponents and Logarithms.
5 kx * powfN: (libc)Exponents and Logarithms.
5 kx * powf: (libc)Exponents and Logarithms.
5 kx * powl: (libc)Exponents and Logarithms.
5 kx * pow: (libc)Exponents and Logarithms.
5 kx * preadv: (libc)Scatter-Gather.
5 kx * preadv2: (libc)Scatter-Gather.
5 kx * preadv64v2: (libc)Scatter-Gather.
5 kx * preadv64: (libc)Scatter-Gather.
5 kx * pread: (libc)I/O Primitives.
5 kx * pread64: (libc)I/O Primitives.
5 kx * printf_size_info: (libc)Predefined Printf Handlers.
5 kx * printf_size: (libc)Predefined Printf Handlers.
5 kx * printf: (libc)Formatted Output Functions.
5 kx * psignal: (libc)Signal Messages.
5 kx * pthread_attr_getsigmask_np: (libc)Initial Thread Signal Mask.
5 kx * PTHREAD_ATTR_NO_SIGMASK_NP: (libc)Initial Thread Signal Mask.
5 kx * pthread_attr_setsigmask_np: (libc)Initial Thread Signal Mask.
5 kx * pthread_clockjoin_np: (libc)Waiting with Explicit Clocks.
5 kx * pthread_cond_clockwait: (libc)Waiting with Explicit Clocks.
5 kx * pthread_getattr_default_np: (libc)Default Thread Attributes.
5 kx * pthread_getspecific: (libc)Thread-specific Data.
5 kx * pthread_key_create: (libc)Thread-specific Data.
5 kx * pthread_key_delete: (libc)Thread-specific Data.
5 kx * pthread_rwlock_clockrdlock: (libc)Waiting with Explicit Clocks.
5 kx * pthread_rwlock_clockwrlock: (libc)Waiting with Explicit Clocks.
5 kx * pthread_setattr_default_np: (libc)Default Thread Attributes.
5 kx * pthread_setspecific: (libc)Thread-specific Data.
5 kx * pthread_timedjoin_np: (libc)Waiting with Explicit Clocks.
5 kx * pthread_tryjoin_np: (libc)Waiting with Explicit Clocks.
5 kx * ptsname_r: (libc)Allocation.
5 kx * ptsname: (libc)Allocation.
5 kx * putc_unlocked: (libc)Simple Output.
5 kx * putchar_unlocked: (libc)Simple Output.
5 kx * putchar: (libc)Simple Output.
5 kx * putc: (libc)Simple Output.
5 kx * putenv: (libc)Environment Access.
5 kx * putpwent: (libc)Writing a User Entry.
5 kx * puts: (libc)Simple Output.
5 kx * pututline: (libc)Manipulating the Database.
5 kx * pututxline: (libc)XPG Functions.
5 kx * putwc_unlocked: (libc)Simple Output.
5 kx * putwchar_unlocked: (libc)Simple Output.
5 kx * putwchar: (libc)Simple Output.
5 kx * putwc: (libc)Simple Output.
5 kx * putw: (libc)Simple Output.
5 kx * pwritev: (libc)Scatter-Gather.
5 kx * pwritev2: (libc)Scatter-Gather.
5 kx * pwritev64v2: (libc)Scatter-Gather.
5 kx * pwritev64: (libc)Scatter-Gather.
5 kx * pwrite: (libc)I/O Primitives.
5 kx * pwrite64: (libc)I/O Primitives.
5 kx * qecvt_r: (libc)System V Number Conversion.
5 kx * qecvt: (libc)System V Number Conversion.
5 kx * qfcvt_r: (libc)System V Number Conversion.
5 kx * qfcvt: (libc)System V Number Conversion.
5 kx * qgcvt: (libc)System V Number Conversion.
5 kx * qsort: (libc)Array Sort Function.
5 kx * R_OK: (libc)Testing File Access.
5 kx * raise: (libc)Signaling Yourself.
5 kx * RAND_MAX: (libc)ISO Random.
5 kx * rand_r: (libc)ISO Random.
5 kx * random_r: (libc)BSD Random.
5 kx * random: (libc)BSD Random.
5 kx * rand: (libc)ISO Random.
5 kx * rawmemchr: (libc)Search Functions.
5 kx * RE_DUP_MAX: (libc)General Limits.
5 kx * readdir64_r: (libc)Reading/Closing Directory.
5 kx * readdir64: (libc)Reading/Closing Directory.
5 kx * readdir_r: (libc)Reading/Closing Directory.
5 kx * readdir: (libc)Reading/Closing Directory.
5 kx * readlink: (libc)Symbolic Links.
5 kx * readv: (libc)Scatter-Gather.
5 kx * read: (libc)I/O Primitives.
5 kx * reallocarray: (libc)Changing Block Size.
5 kx * realloc: (libc)Changing Block Size.
5 kx * realpath: (libc)Symbolic Links.
5 kx * recvfrom: (libc)Receiving Datagrams.
5 kx * recvmsg: (libc)Receiving Datagrams.
5 kx * recv: (libc)Receiving Data.
5 kx * regcomp: (libc)POSIX Regexp Compilation.
5 kx * regerror: (libc)Regexp Cleanup.
5 kx * regexec: (libc)Matching POSIX Regexps.
5 kx * regfree: (libc)Regexp Cleanup.
5 kx * register_printf_function: (libc)Registering New Conversions.
5 kx * remainderfNx: (libc)Remainder Functions.
5 kx * remainderfN: (libc)Remainder Functions.
5 kx * remainderf: (libc)Remainder Functions.
5 kx * remainderl: (libc)Remainder Functions.
5 kx * remainder: (libc)Remainder Functions.
5 kx * remove: (libc)Deleting Files.
5 kx * rename: (libc)Renaming Files.
5 kx * rewinddir: (libc)Random Access Directory.
5 kx * rewind: (libc)File Positioning.
5 kx * rindex: (libc)Search Functions.
5 kx * rintfNx: (libc)Rounding Functions.
5 kx * rintfN: (libc)Rounding Functions.
5 kx * rintf: (libc)Rounding Functions.
5 kx * rintl: (libc)Rounding Functions.
5 kx * rint: (libc)Rounding Functions.
5 kx * RLIM_INFINITY: (libc)Limits on Resources.
5 kx * rmdir: (libc)Deleting Files.
5 kx * roundevenfNx: (libc)Rounding Functions.
5 kx * roundevenfN: (libc)Rounding Functions.
5 kx * roundevenf: (libc)Rounding Functions.
5 kx * roundevenl: (libc)Rounding Functions.
5 kx * roundeven: (libc)Rounding Functions.
5 kx * roundfNx: (libc)Rounding Functions.
5 kx * roundfN: (libc)Rounding Functions.
5 kx * roundf: (libc)Rounding Functions.
5 kx * roundl: (libc)Rounding Functions.
5 kx * round: (libc)Rounding Functions.
5 kx * rpmatch: (libc)Yes-or-No Questions.
5 kx * RSEQ_SIG: (libc)Restartable Sequences.
5 kx * S_IFMT: (libc)Testing File Type.
5 kx * S_ISBLK: (libc)Testing File Type.
5 kx * S_ISCHR: (libc)Testing File Type.
5 kx * S_ISDIR: (libc)Testing File Type.
5 kx * S_ISFIFO: (libc)Testing File Type.
5 kx * S_ISLNK: (libc)Testing File Type.
5 kx * S_ISREG: (libc)Testing File Type.
5 kx * S_ISSOCK: (libc)Testing File Type.
5 kx * S_TYPEISMQ: (libc)Testing File Type.
5 kx * S_TYPEISSEM: (libc)Testing File Type.
5 kx * S_TYPEISSHM: (libc)Testing File Type.
5 kx * SA_NOCLDSTOP: (libc)Flags for Sigaction.
5 kx * SA_ONSTACK: (libc)Flags for Sigaction.
5 kx * SA_RESTART: (libc)Flags for Sigaction.
5 kx * sbrk: (libc)Resizing the Data Segment.
5 kx * scalbf: (libc)Normalization Functions.
5 kx * scalblnfNx: (libc)Normalization Functions.
5 kx * scalblnfN: (libc)Normalization Functions.
5 kx * scalblnf: (libc)Normalization Functions.
5 kx * scalblnl: (libc)Normalization Functions.
5 kx * scalbln: (libc)Normalization Functions.
5 kx * scalbl: (libc)Normalization Functions.
5 kx * scalbnfNx: (libc)Normalization Functions.
5 kx * scalbnfN: (libc)Normalization Functions.
5 kx * scalbnf: (libc)Normalization Functions.
5 kx * scalbnl: (libc)Normalization Functions.
5 kx * scalbn: (libc)Normalization Functions.
5 kx * scalb: (libc)Normalization Functions.
5 kx * scandir: (libc)Scanning Directory Content.
5 kx * scandir64: (libc)Scanning Directory Content.
5 kx * scanf: (libc)Formatted Input Functions.
5 kx * sched_get_priority_max: (libc)Basic Scheduling Functions.
5 kx * sched_get_priority_min: (libc)Basic Scheduling Functions.
5 kx * sched_getaffinity: (libc)CPU Affinity.
5 kx * sched_getparam: (libc)Basic Scheduling Functions.
5 kx * sched_getscheduler: (libc)Basic Scheduling Functions.
5 kx * sched_rr_get_interval: (libc)Basic Scheduling Functions.
5 kx * sched_setaffinity: (libc)CPU Affinity.
5 kx * sched_setparam: (libc)Basic Scheduling Functions.
5 kx * sched_setscheduler: (libc)Basic Scheduling Functions.
5 kx * sched_yield: (libc)Basic Scheduling Functions.
5 kx * secure_getenv: (libc)Environment Access.
5 kx * seed48_r: (libc)SVID Random.
5 kx * seed48: (libc)SVID Random.
5 kx * SEEK_CUR: (libc)File Positioning.
5 kx * SEEK_END: (libc)File Positioning.
5 kx * SEEK_SET: (libc)File Positioning.
5 kx * seekdir: (libc)Random Access Directory.
5 kx * select: (libc)Waiting for I/O.
5 kx * sem_clockwait: (libc)Waiting with Explicit Clocks.
5 kx * sem_close: (libc)Semaphores.
5 kx * sem_destroy: (libc)Semaphores.
5 kx * sem_getvalue: (libc)Semaphores.
5 kx * sem_init: (libc)Semaphores.
5 kx * sem_open: (libc)Semaphores.
5 kx * sem_post: (libc)Semaphores.
5 kx * sem_timedwait: (libc)Semaphores.
5 kx * sem_trywait: (libc)Semaphores.
5 kx * sem_unlink: (libc)Semaphores.
5 kx * sem_wait: (libc)Semaphores.
5 kx * semctl: (libc)Semaphores.
5 kx * semget: (libc)Semaphores.
5 kx * semop: (libc)Semaphores.
5 kx * semtimedop: (libc)Semaphores.
5 kx * sendmsg: (libc)Receiving Datagrams.
5 kx * sendto: (libc)Sending Datagrams.
5 kx * send: (libc)Sending Data.
5 kx * setbuffer: (libc)Controlling Buffering.
5 kx * setbuf: (libc)Controlling Buffering.
5 kx * setcontext: (libc)System V contexts.
5 kx * setdomainname: (libc)Host Identification.
5 kx * setegid: (libc)Setting Groups.
5 kx * setenv: (libc)Environment Access.
5 kx * seteuid: (libc)Setting User ID.
5 kx * setfsent: (libc)fstab.
5 kx * setgid: (libc)Setting Groups.
5 kx * setgrent: (libc)Scanning All Groups.
5 kx * setgroups: (libc)Setting Groups.
5 kx * sethostent: (libc)Host Names.
5 kx * sethostid: (libc)Host Identification.
5 kx * sethostname: (libc)Host Identification.
5 kx * setitimer: (libc)Setting an Alarm.
5 kx * setjmp: (libc)Non-Local Details.
5 kx * setlinebuf: (libc)Controlling Buffering.
5 kx * setlocale: (libc)Setting the Locale.
5 kx * setlogmask: (libc)setlogmask.
5 kx * setmntent: (libc)mtab.
5 kx * setnetent: (libc)Networks Database.
5 kx * setnetgrent: (libc)Lookup Netgroup.
5 kx * setpayloadfNx: (libc)FP Bit Twiddling.
5 kx * setpayloadfN: (libc)FP Bit Twiddling.
5 kx * setpayloadf: (libc)FP Bit Twiddling.
5 kx * setpayloadl: (libc)FP Bit Twiddling.
5 kx * setpayloadsigfNx: (libc)FP Bit Twiddling.
5 kx * setpayloadsigfN: (libc)FP Bit Twiddling.
5 kx * setpayloadsigf: (libc)FP Bit Twiddling.
5 kx * setpayloadsigl: (libc)FP Bit Twiddling.
5 kx * setpayloadsig: (libc)FP Bit Twiddling.
5 kx * setpayload: (libc)FP Bit Twiddling.
5 kx * setpgid: (libc)Process Group Functions.
5 kx * setpgrp: (libc)Process Group Functions.
5 kx * setpriority: (libc)Traditional Scheduling Functions.
5 kx * setprotoent: (libc)Protocols Database.
5 kx * setpwent: (libc)Scanning All Users.
5 kx * setregid: (libc)Setting Groups.
5 kx * setreuid: (libc)Setting User ID.
5 kx * setrlimit: (libc)Limits on Resources.
5 kx * setrlimit64: (libc)Limits on Resources.
5 kx * setservent: (libc)Services Database.
5 kx * setsid: (libc)Process Group Functions.
5 kx * setsockopt: (libc)Socket Option Functions.
5 kx * setstate_r: (libc)BSD Random.
5 kx * setstate: (libc)BSD Random.
5 kx * settimeofday: (libc)Setting and Adjusting the Time.
5 kx * setuid: (libc)Setting User ID.
5 kx * setutent: (libc)Manipulating the Database.
5 kx * setutxent: (libc)XPG Functions.
5 kx * setvbuf: (libc)Controlling Buffering.
5 kx * shm_open: (libc)Memory-mapped I/O.
5 kx * shm_unlink: (libc)Memory-mapped I/O.
5 kx * shutdown: (libc)Closing a Socket.
5 kx * SIG_ERR: (libc)Basic Signal Handling.
5 kx * sigabbrev_np: (libc)Signal Messages.
5 kx * SIGABRT: (libc)Program Error Signals.
5 kx * sigaction: (libc)Advanced Signal Handling.
5 kx * sigaddset: (libc)Signal Sets.
5 kx * SIGALRM: (libc)Alarm Signals.
5 kx * sigaltstack: (libc)Signal Stack.
5 kx * sigblock: (libc)BSD Signal Handling.
5 kx * SIGBUS: (libc)Program Error Signals.
5 kx * SIGCHLD: (libc)Job Control Signals.
5 kx * SIGCLD: (libc)Job Control Signals.
5 kx * SIGCONT: (libc)Job Control Signals.
5 kx * sigdelset: (libc)Signal Sets.
5 kx * sigdescr_np: (libc)Signal Messages.
5 kx * sigemptyset: (libc)Signal Sets.
5 kx * SIGEMT: (libc)Program Error Signals.
5 kx * sigfillset: (libc)Signal Sets.
5 kx * SIGFPE: (libc)Program Error Signals.
5 kx * SIGHUP: (libc)Termination Signals.
5 kx * SIGILL: (libc)Program Error Signals.
5 kx * SIGINFO: (libc)Miscellaneous Signals.
5 kx * siginterrupt: (libc)BSD Signal Handling.
5 kx * SIGINT: (libc)Termination Signals.
5 kx * SIGIOT: (libc)Program Error Signals.
5 kx * SIGIO: (libc)Asynchronous I/O Signals.
5 kx * sigismember: (libc)Signal Sets.
5 kx * SIGKILL: (libc)Termination Signals.
5 kx * siglongjmp: (libc)Non-Local Exits and Signals.
5 kx * SIGLOST: (libc)Operation Error Signals.
5 kx * sigmask: (libc)BSD Signal Handling.
5 kx * signal: (libc)Basic Signal Handling.
5 kx * signbit: (libc)FP Bit Twiddling.
5 kx * significandf: (libc)Normalization Functions.
5 kx * significandl: (libc)Normalization Functions.
5 kx * significand: (libc)Normalization Functions.
5 kx * sigpause: (libc)BSD Signal Handling.
5 kx * sigpending: (libc)Checking for Pending Signals.
5 kx * SIGPIPE: (libc)Operation Error Signals.
5 kx * SIGPOLL: (libc)Asynchronous I/O Signals.
5 kx * sigprocmask: (libc)Process Signal Mask.
5 kx * SIGPROF: (libc)Alarm Signals.
5 kx * SIGQUIT: (libc)Termination Signals.
5 kx * SIGSEGV: (libc)Program Error Signals.
5 kx * sigsetjmp: (libc)Non-Local Exits and Signals.
5 kx * sigsetmask: (libc)BSD Signal Handling.
5 kx * sigstack: (libc)Signal Stack.
5 kx * SIGSTOP: (libc)Job Control Signals.
5 kx * sigsuspend: (libc)Sigsuspend.
5 kx * SIGSYS: (libc)Program Error Signals.
5 kx * SIGTERM: (libc)Termination Signals.
5 kx * SIGTRAP: (libc)Program Error Signals.
5 kx * SIGTSTP: (libc)Job Control Signals.
5 kx * SIGTTIN: (libc)Job Control Signals.
5 kx * SIGTTOU: (libc)Job Control Signals.
5 kx * SIGURG: (libc)Asynchronous I/O Signals.
5 kx * SIGUSR1: (libc)Miscellaneous Signals.
5 kx * SIGUSR2: (libc)Miscellaneous Signals.
5 kx * SIGVTALRM: (libc)Alarm Signals.
5 kx * SIGWINCH: (libc)Miscellaneous Signals.
5 kx * SIGXCPU: (libc)Operation Error Signals.
5 kx * SIGXFSZ: (libc)Operation Error Signals.
5 kx * sincosfNx: (libc)Trig Functions.
5 kx * sincosfN: (libc)Trig Functions.
5 kx * sincosf: (libc)Trig Functions.
5 kx * sincosl: (libc)Trig Functions.
5 kx * sincos: (libc)Trig Functions.
5 kx * sinfNx: (libc)Trig Functions.
5 kx * sinfN: (libc)Trig Functions.
5 kx * sinf: (libc)Trig Functions.
5 kx * sinhfNx: (libc)Hyperbolic Functions.
5 kx * sinhfN: (libc)Hyperbolic Functions.
5 kx * sinhf: (libc)Hyperbolic Functions.
5 kx * sinhl: (libc)Hyperbolic Functions.
5 kx * sinh: (libc)Hyperbolic Functions.
5 kx * sinl: (libc)Trig Functions.
5 kx * sin: (libc)Trig Functions.
5 kx * sleep: (libc)Sleeping.
5 kx * SNANFNx: (libc)Infinity and NaN.
5 kx * SNANFN: (libc)Infinity and NaN.
5 kx * SNANF: (libc)Infinity and NaN.
5 kx * SNANL: (libc)Infinity and NaN.
5 kx * SNAN: (libc)Infinity and NaN.
5 kx * snprintf: (libc)Formatted Output Functions.
5 kx * SOCK_DGRAM: (libc)Communication Styles.
5 kx * SOCK_RAW: (libc)Communication Styles.
5 kx * SOCK_RDM: (libc)Communication Styles.
5 kx * SOCK_SEQPACKET: (libc)Communication Styles.
5 kx * SOCK_STREAM: (libc)Communication Styles.
5 kx * socketpair: (libc)Socket Pairs.
5 kx * socket: (libc)Creating a Socket.
5 kx * SOL_SOCKET: (libc)Socket-Level Options.
5 kx * sprintf: (libc)Formatted Output Functions.
5 kx * sqrtfNx: (libc)Exponents and Logarithms.
5 kx * sqrtfN: (libc)Exponents and Logarithms.
5 kx * sqrtf: (libc)Exponents and Logarithms.
5 kx * sqrtl: (libc)Exponents and Logarithms.
5 kx * sqrt: (libc)Exponents and Logarithms.
5 kx * srandom_r: (libc)BSD Random.
5 kx * srandom: (libc)BSD Random.
5 kx * srand: (libc)ISO Random.
5 kx * srand48_r: (libc)SVID Random.
5 kx * srand48: (libc)SVID Random.
5 kx * sscanf: (libc)Formatted Input Functions.
5 kx * ssignal: (libc)Basic Signal Handling.
5 kx * SSIZE_MAX: (libc)General Limits.
5 kx * stat: (libc)Reading Attributes.
5 kx * stat64: (libc)Reading Attributes.
5 kx * stime: (libc)Setting and Adjusting the Time.
5 kx * stpcpy: (libc)Copying Strings and Arrays.
5 kx * stpncpy: (libc)Truncating Strings.
5 kx * strcasecmp: (libc)String/Array Comparison.
5 kx * strcasestr: (libc)Search Functions.
5 kx * strcat: (libc)Concatenating Strings.
5 kx * strchrnul: (libc)Search Functions.
5 kx * strchr: (libc)Search Functions.
5 kx * strcmp: (libc)String/Array Comparison.
5 kx * strcoll: (libc)Collation Functions.
5 kx * strcpy: (libc)Copying Strings and Arrays.
5 kx * strcspn: (libc)Search Functions.
5 kx * strdupa: (libc)Copying Strings and Arrays.
5 kx * strdup: (libc)Copying Strings and Arrays.
5 kx * STREAM_MAX: (libc)General Limits.
5 kx * strerror_r: (libc)Error Messages.
5 kx * strerrordesc_np: (libc)Error Messages.
5 kx * strerrorname_np: (libc)Error Messages.
5 kx * strerror: (libc)Error Messages.
5 kx * strfmon: (libc)Formatting Numbers.
5 kx * strfromd: (libc)Printing of Floats.
5 kx * strfromfNx: (libc)Printing of Floats.
5 kx * strfromfN: (libc)Printing of Floats.
5 kx * strfromf: (libc)Printing of Floats.
5 kx * strfroml: (libc)Printing of Floats.
5 kx * strfry: (libc)Shuffling Bytes.
5 kx * strftime: (libc)Formatting Calendar Time.
5 kx * strlen: (libc)String Length.
5 kx * strncasecmp: (libc)String/Array Comparison.
5 kx * strncat: (libc)Truncating Strings.
5 kx * strncmp: (libc)String/Array Comparison.
5 kx * strncpy: (libc)Truncating Strings.
5 kx * strndupa: (libc)Truncating Strings.
5 kx * strndup: (libc)Truncating Strings.
5 kx * strnlen: (libc)String Length.
5 kx * strpbrk: (libc)Search Functions.
5 kx * strptime: (libc)Low-Level Time String Parsing.
5 kx * strrchr: (libc)Search Functions.
5 kx * strsep: (libc)Finding Tokens in a String.
5 kx * strsignal: (libc)Signal Messages.
5 kx * strspn: (libc)Search Functions.
5 kx * strstr: (libc)Search Functions.
5 kx * strtod: (libc)Parsing of Floats.
5 kx * strtofNx: (libc)Parsing of Floats.
5 kx * strtofN: (libc)Parsing of Floats.
5 kx * strtof: (libc)Parsing of Floats.
5 kx * strtoimax: (libc)Parsing of Integers.
5 kx * strtok_r: (libc)Finding Tokens in a String.
5 kx * strtok: (libc)Finding Tokens in a String.
5 kx * strtold: (libc)Parsing of Floats.
5 kx * strtoll: (libc)Parsing of Integers.
5 kx * strtol: (libc)Parsing of Integers.
5 kx * strtoq: (libc)Parsing of Integers.
5 kx * strtoull: (libc)Parsing of Integers.
5 kx * strtoul: (libc)Parsing of Integers.
5 kx * strtoumax: (libc)Parsing of Integers.
5 kx * strtouq: (libc)Parsing of Integers.
5 kx * strverscmp: (libc)String/Array Comparison.
5 kx * strxfrm: (libc)Collation Functions.
5 kx * stty: (libc)BSD Terminal Modes.
5 kx * SUN_LEN: (libc)Local Namespace Details.
5 kx * swapcontext: (libc)System V contexts.
5 kx * swprintf: (libc)Formatted Output Functions.
5 kx * swscanf: (libc)Formatted Input Functions.
5 kx * symlink: (libc)Symbolic Links.
5 kx * sync: (libc)Synchronizing I/O.
5 kx * syscall: (libc)System Calls.
5 kx * sysconf: (libc)Sysconf Definition.
5 kx * syslog: (libc)syslog; vsyslog.
5 kx * system: (libc)Running a Command.
5 kx * sysv_signal: (libc)Basic Signal Handling.
5 kx * tanfNx: (libc)Trig Functions.
5 kx * tanfN: (libc)Trig Functions.
5 kx * tanf: (libc)Trig Functions.
5 kx * tanhfNx: (libc)Hyperbolic Functions.
5 kx * tanhfN: (libc)Hyperbolic Functions.
5 kx * tanhf: (libc)Hyperbolic Functions.
5 kx * tanhl: (libc)Hyperbolic Functions.
5 kx * tanh: (libc)Hyperbolic Functions.
5 kx * tanl: (libc)Trig Functions.
5 kx * tan: (libc)Trig Functions.
5 kx * tcdrain: (libc)Line Control.
5 kx * tcflow: (libc)Line Control.
5 kx * tcflush: (libc)Line Control.
5 kx * tcgetattr: (libc)Mode Functions.
5 kx * tcgetpgrp: (libc)Terminal Access Functions.
5 kx * tcgetsid: (libc)Terminal Access Functions.
5 kx * tcsendbreak: (libc)Line Control.
5 kx * tcsetattr: (libc)Mode Functions.
5 kx * tcsetpgrp: (libc)Terminal Access Functions.
5 kx * tdelete: (libc)Tree Search Function.
5 kx * tdestroy: (libc)Tree Search Function.
5 kx * telldir: (libc)Random Access Directory.
5 kx * tempnam: (libc)Temporary Files.
5 kx * textdomain: (libc)Locating gettext catalog.
5 kx * tfind: (libc)Tree Search Function.
5 kx * tgammafNx: (libc)Special Functions.
5 kx * tgammafN: (libc)Special Functions.
5 kx * tgammaf: (libc)Special Functions.
5 kx * tgammal: (libc)Special Functions.
5 kx * tgamma: (libc)Special Functions.
5 kx * tgkill: (libc)Signaling Another Process.
5 kx * thrd_create: (libc)ISO C Thread Management.
5 kx * thrd_current: (libc)ISO C Thread Management.
5 kx * thrd_detach: (libc)ISO C Thread Management.
5 kx * thrd_equal: (libc)ISO C Thread Management.
5 kx * thrd_exit: (libc)ISO C Thread Management.
5 kx * thrd_join: (libc)ISO C Thread Management.
5 kx * thrd_sleep: (libc)ISO C Thread Management.
5 kx * thrd_yield: (libc)ISO C Thread Management.
5 kx * timegm: (libc)Broken-down Time.
5 kx * timelocal: (libc)Broken-down Time.
5 kx * times: (libc)Processor Time.
5 kx * time: (libc)Getting the Time.
5 kx * TMP_MAX: (libc)Temporary Files.
5 kx * tmpfile: (libc)Temporary Files.
5 kx * tmpfile64: (libc)Temporary Files.
5 kx * tmpnam_r: (libc)Temporary Files.
5 kx * tmpnam: (libc)Temporary Files.
5 kx * toascii: (libc)Case Conversion.
5 kx * tolower: (libc)Case Conversion.
5 kx * TOSTOP: (libc)Local Modes.
5 kx * totalorderfNx: (libc)FP Comparison Functions.
5 kx * totalorderfN: (libc)FP Comparison Functions.
5 kx * totalorderf: (libc)FP Comparison Functions.
5 kx * totalorderl: (libc)FP Comparison Functions.
5 kx * totalordermagfNx: (libc)FP Comparison Functions.
5 kx * totalordermagfN: (libc)FP Comparison Functions.
5 kx * totalordermagf: (libc)FP Comparison Functions.
5 kx * totalordermagl: (libc)FP Comparison Functions.
5 kx * totalordermag: (libc)FP Comparison Functions.
5 kx * totalorder: (libc)FP Comparison Functions.
5 kx * toupper: (libc)Case Conversion.
5 kx * towctrans: (libc)Wide Character Case Conversion.
5 kx * towlower: (libc)Wide Character Case Conversion.
5 kx * towupper: (libc)Wide Character Case Conversion.
5 kx * truncate: (libc)File Size.
5 kx * truncate64: (libc)File Size.
5 kx * truncfNx: (libc)Rounding Functions.
5 kx * truncfN: (libc)Rounding Functions.
5 kx * truncf: (libc)Rounding Functions.
5 kx * truncl: (libc)Rounding Functions.
5 kx * trunc: (libc)Rounding Functions.
5 kx * tsearch: (libc)Tree Search Function.
5 kx * tss_create: (libc)ISO C Thread-local Storage.
5 kx * tss_delete: (libc)ISO C Thread-local Storage.
5 kx * tss_get: (libc)ISO C Thread-local Storage.
5 kx * tss_set: (libc)ISO C Thread-local Storage.
5 kx * ttyname_r: (libc)Is It a Terminal.
5 kx * ttyname: (libc)Is It a Terminal.
5 kx * twalk_r: (libc)Tree Search Function.
5 kx * twalk: (libc)Tree Search Function.
5 kx * TZNAME_MAX: (libc)General Limits.
5 kx * tzset: (libc)Time Zone Functions.
5 kx * ufromfpfNx: (libc)Rounding Functions.
5 kx * ufromfpfN: (libc)Rounding Functions.
5 kx * ufromfpf: (libc)Rounding Functions.
5 kx * ufromfpl: (libc)Rounding Functions.
5 kx * ufromfpxfNx: (libc)Rounding Functions.
5 kx * ufromfpxfN: (libc)Rounding Functions.
5 kx * ufromfpxf: (libc)Rounding Functions.
5 kx * ufromfpxl: (libc)Rounding Functions.
5 kx * ufromfpx: (libc)Rounding Functions.
5 kx * ufromfp: (libc)Rounding Functions.
5 kx * ulimit: (libc)Limits on Resources.
5 kx * umask: (libc)Setting Permissions.
5 kx * umount: (libc)Mount-Unmount-Remount.
5 kx * umount2: (libc)Mount-Unmount-Remount.
5 kx * uname: (libc)Platform Type.
5 kx * ungetc: (libc)How Unread.
5 kx * ungetwc: (libc)How Unread.
5 kx * unlink: (libc)Deleting Files.
5 kx * unlockpt: (libc)Allocation.
5 kx * unsetenv: (libc)Environment Access.
5 kx * updwtmp: (libc)Manipulating the Database.
5 kx * utimes: (libc)File Times.
5 kx * utime: (libc)File Times.
5 kx * utmpname: (libc)Manipulating the Database.
5 kx * utmpxname: (libc)XPG Functions.
5 kx * va_arg: (libc)Argument Macros.
5 kx * va_copy: (libc)Argument Macros.
5 kx * va_end: (libc)Argument Macros.
5 kx * va_start: (libc)Argument Macros.
5 kx * valloc: (libc)Aligned Memory Blocks.
5 kx * vasprintf: (libc)Variable Arguments Output.
5 kx * VDISCARD: (libc)Other Special.
5 kx * VDSUSP: (libc)Signal Characters.
5 kx * VEOF: (libc)Editing Characters.
5 kx * VEOL: (libc)Editing Characters.
5 kx * VEOL2: (libc)Editing Characters.
5 kx * VERASE: (libc)Editing Characters.
5 kx * verrx: (libc)Error Messages.
5 kx * verr: (libc)Error Messages.
5 kx * versionsort: (libc)Scanning Directory Content.
5 kx * versionsort64: (libc)Scanning Directory Content.
5 kx * vfork: (libc)Creating a Process.
5 kx * vfprintf: (libc)Variable Arguments Output.
5 kx * vfscanf: (libc)Variable Arguments Input.
5 kx * vfwprintf: (libc)Variable Arguments Output.
5 kx * vfwscanf: (libc)Variable Arguments Input.
5 kx * VINTR: (libc)Signal Characters.
5 kx * VKILL: (libc)Editing Characters.
5 kx * vlimit: (libc)Limits on Resources.
5 kx * VLNEXT: (libc)Other Special.
5 kx * VMIN: (libc)Noncanonical Input.
5 kx * vprintf: (libc)Variable Arguments Output.
5 kx * VQUIT: (libc)Signal Characters.
5 kx * VREPRINT: (libc)Editing Characters.
5 kx * vscanf: (libc)Variable Arguments Input.
5 kx * vsnprintf: (libc)Variable Arguments Output.
5 kx * vsprintf: (libc)Variable Arguments Output.
5 kx * vsscanf: (libc)Variable Arguments Input.
5 kx * VSTART: (libc)Start/Stop Characters.
5 kx * VSTATUS: (libc)Other Special.
5 kx * VSTOP: (libc)Start/Stop Characters.
5 kx * VSUSP: (libc)Signal Characters.
5 kx * vswprintf: (libc)Variable Arguments Output.
5 kx * vswscanf: (libc)Variable Arguments Input.
5 kx * vsyslog: (libc)syslog; vsyslog.
5 kx * VTIME: (libc)Noncanonical Input.
5 kx * vwarnx: (libc)Error Messages.
5 kx * vwarn: (libc)Error Messages.
5 kx * VWERASE: (libc)Editing Characters.
5 kx * vwprintf: (libc)Variable Arguments Output.
5 kx * vwscanf: (libc)Variable Arguments Input.
5 kx * W_OK: (libc)Testing File Access.
5 kx * wait3: (libc)BSD Wait Functions.
5 kx * waitpid: (libc)Process Completion.
5 kx * wait: (libc)Process Completion.
5 kx * wait4: (libc)Process Completion.
5 kx * warnx: (libc)Error Messages.
5 kx * warn: (libc)Error Messages.
5 kx * WCHAR_MAX: (libc)Extended Char Intro.
5 kx * WCHAR_MIN: (libc)Extended Char Intro.
5 kx * WCOREDUMP: (libc)Process Completion Status.
5 kx * wcpcpy: (libc)Copying Strings and Arrays.
5 kx * wcpncpy: (libc)Truncating Strings.
5 kx * wcrtomb: (libc)Converting a Character.
5 kx * wcscasecmp: (libc)String/Array Comparison.
5 kx * wcscat: (libc)Concatenating Strings.
5 kx * wcschrnul: (libc)Search Functions.
5 kx * wcschr: (libc)Search Functions.
5 kx * wcscmp: (libc)String/Array Comparison.
5 kx * wcscoll: (libc)Collation Functions.
5 kx * wcscpy: (libc)Copying Strings and Arrays.
5 kx * wcscspn: (libc)Search Functions.
5 kx * wcsdup: (libc)Copying Strings and Arrays.
5 kx * wcsftime: (libc)Formatting Calendar Time.
5 kx * wcslen: (libc)String Length.
5 kx * wcsncasecmp: (libc)String/Array Comparison.
5 kx * wcsncat: (libc)Truncating Strings.
5 kx * wcsncmp: (libc)String/Array Comparison.
5 kx * wcsncpy: (libc)Truncating Strings.
5 kx * wcsnlen: (libc)String Length.
5 kx * wcsnrtombs: (libc)Converting Strings.
5 kx * wcspbrk: (libc)Search Functions.
5 kx * wcsrchr: (libc)Search Functions.
5 kx * wcsrtombs: (libc)Converting Strings.
5 kx * wcsspn: (libc)Search Functions.
5 kx * wcsstr: (libc)Search Functions.
5 kx * wcstod: (libc)Parsing of Floats.
5 kx * wcstofNx: (libc)Parsing of Floats.
5 kx * wcstofN: (libc)Parsing of Floats.
5 kx * wcstof: (libc)Parsing of Floats.
5 kx * wcstoimax: (libc)Parsing of Integers.
5 kx * wcstok: (libc)Finding Tokens in a String.
5 kx * wcstold: (libc)Parsing of Floats.
5 kx * wcstoll: (libc)Parsing of Integers.
5 kx * wcstol: (libc)Parsing of Integers.
5 kx * wcstombs: (libc)Non-reentrant String Conversion.
5 kx * wcstoq: (libc)Parsing of Integers.
5 kx * wcstoull: (libc)Parsing of Integers.
5 kx * wcstoul: (libc)Parsing of Integers.
5 kx * wcstoumax: (libc)Parsing of Integers.
5 kx * wcstouq: (libc)Parsing of Integers.
5 kx * wcswcs: (libc)Search Functions.
5 kx * wcsxfrm: (libc)Collation Functions.
5 kx * wctob: (libc)Converting a Character.
5 kx * wctomb: (libc)Non-reentrant Character Conversion.
5 kx * wctrans: (libc)Wide Character Case Conversion.
5 kx * wctype: (libc)Classification of Wide Characters.
5 kx * WEOF: (libc)Extended Char Intro.
5 kx * WEOF: (libc)EOF and Errors.
5 kx * WEXITSTATUS: (libc)Process Completion Status.
5 kx * WIFEXITED: (libc)Process Completion Status.
5 kx * WIFSIGNALED: (libc)Process Completion Status.
5 kx * WIFSTOPPED: (libc)Process Completion Status.
5 kx * wmemchr: (libc)Search Functions.
5 kx * wmemcmp: (libc)String/Array Comparison.
5 kx * wmemcpy: (libc)Copying Strings and Arrays.
5 kx * wmemmove: (libc)Copying Strings and Arrays.
5 kx * wmempcpy: (libc)Copying Strings and Arrays.
5 kx * wmemset: (libc)Copying Strings and Arrays.
5 kx * wordexp: (libc)Calling Wordexp.
5 kx * wordfree: (libc)Calling Wordexp.
5 kx * wprintf: (libc)Formatted Output Functions.
5 kx * writev: (libc)Scatter-Gather.
5 kx * write: (libc)I/O Primitives.
5 kx * wscanf: (libc)Formatted Input Functions.
5 kx * WSTOPSIG: (libc)Process Completion Status.
5 kx * WTERMSIG: (libc)Process Completion Status.
5 kx * X_OK: (libc)Testing File Access.
5 kx * y0fNx: (libc)Special Functions.
5 kx * y0fN: (libc)Special Functions.
5 kx * y0f: (libc)Special Functions.
5 kx * y0l: (libc)Special Functions.
5 kx * y0: (libc)Special Functions.
5 kx * y1fNx: (libc)Special Functions.
5 kx * y1fN: (libc)Special Functions.
5 kx * y1f: (libc)Special Functions.
5 kx * y1l: (libc)Special Functions.
5 kx * y1: (libc)Special Functions.
5 kx * ynfNx: (libc)Special Functions.
5 kx * ynfN: (libc)Special Functions.
5 kx * ynf: (libc)Special Functions.
5 kx * ynl: (libc)Special Functions.
5 kx * yn: (libc)Special Functions.
5 kx
5 kx Software libraries
5 kx * Libc: (libc). C library.
5 kx __EOF__
5 kx fi
5 kx }
5 kx
5 kx # arg 1: the new package version
5 kx # arg 2: the old package version
5 kx pre_update() {
5 kx /bin/true
5 kx }
5 kx
5 kx # arg 1: the new package version
5 kx # arg 2: the old package version
5 kx post_update() {
5 kx post_install
5 kx }
5 kx
5 kx # arg 1: the old package version
5 kx pre_remove() {
5 kx if [ -x /usr/bin/install-info ] ; then
5 kx install-info --delete --info-file=usr/share/info/libc.info.gz --dir-file=usr/share/info/dir 2> /dev/null || /bin/true
5 kx fi
5 kx }
5 kx
5 kx # arg 1: the old package version
5 kx post_remove() {
5 kx /bin/true
5 kx }
5 kx
5 kx
5 kx operation=$1
5 kx shift
5 kx
5 kx $operation $*