Summary Report for OLVER Test Run

Host tester under OS Fedora release 18 (Spherical Cow) at Time 2013_01_21 12:09:51

Scenarios Problems Functions Requirements
Passed228
Failed24
 

Total252
Known47
New2
Internal0

Total49
Tested1193
Not tested339
 

Total1532
Passed7009
Failed158
Checked7167

Total18238

Problems

Known

ScenarioBug IdDescriptionFailures
math_cexp_scenariobug516_2(cexp)The cexp() family of functions function shall compute the complex exponent of their argument. At the specified point the result of computing the exponent is very imprecise (inaccuracy is more then 20 bits from the end of the floating point number). failure 1 | 11 more...
math_cexp_scenariobug516_2(cpow)The cpow(x, y) family of functions shall compute the complex power function x^y, with a branch cut for the first parameter along the negative real axis. If the argument is x = (-1) + (-0) * i and y = (-1) + (-0) * i then the function cpow(x, y) return (-1) + (near)(1e-16) * i. This result is too far from (-1). If the argument is x = (-1) + (0) * i and y = (-1) + (0) * i then the function cpow(x, y) return (-1) - (near)(1e-16) * i. This result is too far from (-1). If the argument is x = (-1) + (-0) * i and y = (-1) + (-0) * i then the function cpowl(x, y) return (-1) + (near)(1e-20) * i. This result is too far from (-1). If the argument is x = (-1) + (0) * i and y = (-1) + (0) * i then the function cpowl(x, y) return (-1) + (near)(1e-20) * i. This result is too far from (-1). failure 13 | 3 more...
math_complex_scenariobug841(cproj)According to LSB, the cproj(z) family of functions shall compute a projection of z onto Riemann sphere: z projects to z except all complex infinities. The old implementation in glibc does a stereographic projection that contradicts the standard. failure 17 | 5 more...
math_exp_scenariobug512_1(log1p)The log1p(x) family of functions shall compute log(1.0 + x). According to LSB, the functions shall fail if argument is less than -1 and set error code to EDOM. But on the target machine the functions set error code EOK instead of EDOM if the argument is less than -1. failure 27 | 8 more...
math_exp_scenariobug512_2(log1p)The log1p(x) family of functions shall compute log(1.0 + x). According to LSB, the functions shall fail if argument equals to -1 and set error code to ERANGE. But on the target machine the functions set error code EOK instead of ERANGE in this case. failure 28 | 2 more...
math_exp_scenariobug543(hypotl)The hypotl() function shall compute the value of the square root of x^2+ y^2 without undue overflow or underflow. According to LSB, if both arguments are subnormal and the correct result is subnormal, a range error may occur and the correct result is returned. But on the target machine the function returns Inf instead of correct subnormal result on both subnormal arguments. failure 23 | 3 more...
math_gamma_scenariobug512(tgamma)The tgamma(x) family of functions shall compute the mathematical gamma() function of x. According to LSB, if x is negative infinity then a domain error shall occur and error code shall be set to EDOM. But on the target machine, the functions set error code EOK instead of EDOM. failure 46 | 2 more...
math_gamma_scenariobug516(gamma)According to LSB, gamma(x) family of functions shall return either HUGE_VAL or NaN if x is a non-positive integer. But on the target machine the functions don't return HUGE_VAL or NaN if the argument is not positive. failure 51 | 2 more...
math_gamma_scenariobug516(lgamma)According to LSB, lgamma(x) family of functions shall return +HUGE_VAL if x is a non-positive integer. But on the target machine the functions don't return +HUGE_VAL if the argument is not positive. failure 39 | 2 more...
math_gamma_scenariobug516(lgamma_r)According to LSB, lgamma_r(x) family of functions shall return +HUGE_VAL if x is a non-positive integer. But on the target machine the functions don't return +HUGE_VAL if the argument is not positive. failure 40 | 2 more...
math_gamma_scenariobug516(tgamma)The tgamma(x) family of functions shall compute the mathematical gamma() function of x. According to LSB, if x is a negative integer NaN shall be returned. But on the target machine, the functions don't return NaN if the argument is negative. failure 45 | 2 more...
math_rand_scenariobug511_1(initstate)The initstate() function handles restarting of random-number generator. One of the argument to initstate() function is size of the state array. The larger the state array, the more random the numbers. According to LSB, values for the amount of state information are 8, 32, 64, 128, and 256 bytes and if initstate() is called with size less than 8, it shall return NULL. But on the target machine the function doesn't return NULL when called with size less than 8. failure 54 | 2 more...
math_rand_scenariobug511_2(initstate)The initstate() function handles restarting of random-number generator. According to LSB, upon successful completion, initstate() shall return a pointer to the previous state array; otherwise, a null pointer shall be returned. But on the target machine the function returns neither a pointer to the previous state, nor NULL pointer. failure 55 | 2 more...
math_real_fdim_overflow_scenariobug512(fdim)The fdim(x, y) family of functions shall determine the positive difference between their arguments. According to LSB, if the result overflows then fdim() shall fail and shall set ERANGE error code. But on the target machine, the functions set error code EOK instead of ERANGE when overflow occurs. failure 60 | 2 more...
math_real_scenariobug512(llrint)The llrint() family of functions shall round their argument to the nearest integer value, rounding according to the current rounding direction. According to LSB, if argument is NaN, +Inf, -Inf, or the correct value is not representable as an integer then the functions shall set EDOM error code. But on the target machine, the functions set error code EOK instead of EDOM in these cases. failure 63 | 17 more...
math_real_scenariobug512(llround)The llround() family of functions shall round their argument to the nearest integer value, rounding halfway cases away from zero, regardless of the current rounding direction. According to LSB, if argument is NaN, +Inf -Inf, or the correct value is not representable as an integer then the functions shall set EDOM error code. But on the target machine, the functions set error code EOK instead of EDOM in these cases. failure 64 | 17 more...
math_real_scenariobug512(lrint)The lrint() family of functions shall round their argument to the nearest integer value, rounding according to the current rounding direction. According to LSB, if argument is NaN, +Inf, -Inf, or the correct value is not representable as an integer then the functions shall set EDOM error code. But on the target machine, the functions set error code EOK instead of EDOM in these cases. failure 65 | 17 more...
math_real_scenariobug512(lround)The lround() family of functions shall round their argument to the nearest integer value, rounding halfway cases away from zero, regardless of the current rounding direction. According to LSB, if argument is NaN, +Inf, -Inf, or the correct value is not representable as an integer then the functions shall set EDOM error code. But on the target machine, the functions set error code EOK instead of EDOM in these cases. failure 66 | 17 more...
math_real_scenariobug512(remquo)The remquo(x, y, quo) family of functions shall return the floating-point remainder r = x-ny when y is non-zero und update quo variable. According to LSB, if the x argument is +Inf, -Inf, or the y argument is +0 or -0 and the other argument is non-NaN. then error code shall be set to EDOM. But on the target machine, the functions set error code EOK instead of EDOM in these cases. failure 135 | 5 more...
process_meta_user_scenariobug102(setuid)The setuid() function sets the real user ID, effective user ID, and the saved set-user-ID of the calling process to the value, specified as its argument. According to LSB, if this argument equals to the real user ID or the saved set-user-ID, setuid() shall set the effective user ID to this value. But on the target machine setuid() fails when trying to set the effective user ID to the saved set-user-ID value. Additional information about this bug may be found at http://linuxtesting.org/results/report?num=S0102. failure 163 | 1 more...
process_meta_user_scenariobug103(setreuid)The setreuid() function shall set the real and effective user IDs of the calling process to the value, specified as its argument. According to LSB, if this argument equals to the saved set-user-ID, setreuid() shall always be successful to set the real user ID to this value. But on the target machine setreuid() fails when trying to set the real user ID to the saved set-user-ID value. Additional information about this bug may be found at http://linuxtesting.org/results/report?num=S0102. failure 161 | 1 more...
process_meta_user_scenariobug104(setgid)The setgid() function sets the real group ID, effective group ID, and the saved set-group-ID of the calling process to the value, specified as its argument. According to LSB, if this argument equals to the real group ID or the saved set-group-ID, setgid() shall set the effective group ID to this value. But on the target machine setgid() fails when trying to set the effective group ID to the saved set-group-ID value. Additional information about this bug may be found at http://linuxtesting.org/results/report?num=S0102. failure 145 | 1 more...
process_meta_user_scenariobug106(setregid)The setregid() function shall set the real and effective group IDs of the calling process to the value, specified as its argument. According to LSB, if this argument equals to the saved set-group-ID, setregid() shall always be successful to set the real group ID to this value. But on the target machine setregid() fails when trying to set the real group ID to the saved set-group-ID value. Additional information about this bug may be found at http://linuxtesting.org/results/report?num=S0102. failure 147 | 13 more...
process_meta_user_scenariobug82(seteuid)The seteuid() function sets the effective user ID of the calling process to the value, specified as its argument. According to LSB, if this argument equals to the real user ID or the saved set-user-ID, or if the process has appropriate privileges, seteuid() shall set the effective user ID to this value. But on the target machine seteuid() fails when trying to set effective user ID to the saved set-user-ID value. Additional information about this bug may be found at http://linuxtesting.org/results/report?num=S0102. failure 143 | 1 more...
process_meta_user_scenariobug83(setegid)The setegid() function sets the effective group ID of the calling process to the value, specified as its argument. According to LSB, if this argument equals to the real group ID or the saved set-group-ID, or if the process has appropriate privileges, setegid() shall set the effective group ID to this value. But on the target machine setegid() fails when trying to set effective group ID to the saved set-group-ID value. Additional information about this bug may be found at http://linuxtesting.org/results/report?num=S0102. failure 141 | 1 more...
process_resources_ulimit_priviledged_scenariobug794(ulimit)It is a test suite deficiency that will be fixed soon. failure 165
process_resources_ulimit_unpriviledged_scenariobug794(ulimit)It is a test suite deficiency that will be fixed soon. failure 166
process_scheduler_scenariobug504(sched_setscheduler)The sched_setscheduler() function shall set the scheduling policy and scheduling parameters of the specified process. According to LSB, upon successful completion, the function shall return the former scheduling policy of the specified process. But it always returns 0 on the target machine. Additional information about this bug may be found at http://linuxtesting.org/results/report?num=S0504. failure 167 | 15 more...
signal_sigstr_basic_scenariobug685(strsignal)If sig is not a valid signal number, strsignal shall return either a pointer either a pointer to the string "unknown signal", or a null pointer. SYNOPSIS ... char * strsignal(int sig); ... RETURN VALUE If sig is a valid signal number, strsignal() shall return a pointer to the appropriate description string. Otherwise, strsignal() shall return either a pointer to the string "unknown signal", or a null pointer. ... But in real, strsignal return "Unknown signal", a space, and a number sig. Additional information about this bug may be found at http://linuxtesting.org/results/report?num=S0685. failure 183
time_conversion_scenariobug379(asctime_r)The asctime_r() function converts date and time to a string and returns it. According to LSB, if the function is unsuccessful, it should return NULL, But on the target machine it returns a string with '?' symbols, for example "??? Oct 9 09:09:09 1909". Additional information about this bug may be found at http://linuxtesting.org/results/report?num=S0379. failure 185 | 1 more...
time_conversion_scenariobug380(asctime)The asctime() function converts date and time to a string and returns it. According to LSB, if the function is unsuccessful, it should return NULL, But on the target machine it returns a string with '?' symbols, for example "??? Oct 9 09:09:09 1909". Additional information about this bug may be found at http://linuxtesting.org/results/report?num=S0379. failure 184
time_time_scenariobug377(stime)The stime() function shall set the system's idea of the time and date to the time referenced by function argument. According to LSB, if this argument is NULL then stime() shall set error code to EINVAL. But it sets error code to EFAULT instead of EINVAL. The bug was fixed in libc 2.4. Additional information about this bug may be found at http://linuxtesting.org/results/report?num=S0377. failure 187 | 8 more...
util_assert_errx_scenariobug488(errx)The errx() function shall display a formatted error message on the standard error stream. According to LSB, the formatted error message, the last component of the program name, a colon character, a space and a newline character shall be output. But on the target machine colon character, and a space are not output after the formatted error message. Additional information about this bug may be found at http://linuxtesting.org/results/report?num=S0488. failure 196 | 8 more...
util_assert_verrx_scenariobug489(verrx)The verrx() function shall display a formatted error message on the standard error stream. According to LSB, the formatted error message, the last component of the program name, a colon character, a space and a newline character shall be output. But on the target machine colon character, and a space are not output after the formatted error message. Additional information about this bug may be found at http://linuxtesting.org/results/report?num=S0488. failure 205 | 8 more...
util_assert_warnx_scenariobug486(warnx)The warnx() function shall display a formatted error message on the standard error stream. According to LSB, the formatted error message, the last component of the program name, a colon character, a space and a newline character shall be output. But on the target machine colon character, and a space are not output after the formatted error message. Additional information about this bug may be found at http://linuxtesting.org/results/report?num=S0488. failure 214 | 199 more...
util_float_scenariobug518_2(logb)The logb() function shall compute the exponent of the integral part of logarithm of its argument as a signed floating-point value. According to LSB, if this argument is 0, ERANGE error shall be set in errno. But on the target machine this function sets error code EOK instead of ERANGE. failure 416 | 5 more...
util_float_scenariobug518_3(nextafter)The nextafter(x, y) family of functions functions shall compute the next representable floating-point value following x in the direction of y. According to LSB, if the correct value is subnormal or underflows then ERANGE error code shall be set. But on the target machine the function sets error code EOK instead of ERANGE. failure 422 | 29 more...
util_float_scenariobug518_4(nexttoward)The nexttoward(x, y) family of functions functions shall compute the next representable floating-point value following x in the direction of y. According to LSB, if the correct value is subnormal or underflows then ERANGE error code shall be set. But on the target machine the function sets error code EOK instead of ERANGE. failure 452 | 29 more...
util_float_scenariobug518_5(scalb)The scalb() family of functions shall compute x*r^n, where r is the radix of the machine's floating-point arithmetic. According to LSB, the functions shall set EDOM error code when x is zero and n is +Inf, or x is Inf and n is -Inf and ERANGE when overflow occurs. But the functions sets error code EOK in these cases. failure 482 | 11 more...
util_float_scenariobug518_6(scalbln)The scalbln() family of functions shall compute x * FLT_RADIX^n efficiently, not normally by computing FLT_RADIX^n explicitly. According to LSB, the functions shall set ERANGE error code when overflow occurs. But on the target machine the function sets error code EOK instead of ERANGE in this case. failure 494 | 8 more...
util_float_scenariobug518_7(scalbn)The scalbn() family of functions shall compute x * FLT_RADIX^n efficiently, not normally by computing FLT_RADIX^n explicitly. According to LSB, the functions shall set ERANGE error code when overflow occurs. But on the target machine the function sets error code EOK instead of ERANGE in this case. failure 503 | 8 more...
util_format_time_scenariobug803(getdate)The requirement claims: "Extra whitespace in either the template file or in string shall be ignored." But if there are any white spaces at the end of the query, the function returns with error 7. Additional information about this bug may be found at http://linuxtesting.org/results/report?num=S0803. failure 512
util_format_time_scenariobug808(strptime)Values of all fields of struct tm shall be positive or 0. Additional information about this bug may be found at http://linuxtesting.org/results/report?num=S0808. failure 515
util_format_time_scenariobug810(strptime)The char *strptime(const char *restrict buf, const char *restrict format, struct tm *restrict tm); function shall convert the character string pointed to by buf to values which are stored in the tm structure pointed to by tm, using the format specified by format. The <time.h> header shall declare the structure tm, which shall include at least the following members: int tm_sec Seconds [0,60]. int tm_min Minutes [0,59]. int tm_hour Hour [0,23]. int tm_mday Day of month [1,31]. int tm_mon Month of year [0,11]. int tm_year Years since 1900. int tm_wday Day of week [0,6] (Sunday =0). int tm_yday Day of year [0,365]. int tm_isdst Daylight Savings flag. Function strptime can not rigth work with some input data. If buf = "0 Sun 2006" and format = "%U %a %Y" then strptime must find first Sunday in first week (Sunday as the first day of the week) 2006 year. 2006 year begins with Sunday. But after call to strptime tm.tm_yday = -7. if buf = "0 Mon 2007" and format = "%W %a %Y" then strptime must find first Monday in first week (Monday as the first day of the week) 2007 year. 2007 year begins with Monday. But after call to strptime tm.tm_yday = -7. Additional information about this bug may be found at http://linuxtesting.org/results/report?num=S0810. failure 513 | 1 more...
util_format_wprintf_swprintf_scenariobug505(swprintf)According to LSB, on error swprintf() function shall return -1 and set errno global variable. On the target machine, swprintf() function returns -1, but doesn't set error code in errno global variable. This contradicts LSB standard for this function. Additional information about this bug may be found at http://linuxtesting.org/results/report?num=S0505. failure 516
util_format_wprintf_vswprintf_scenariobug506(vswprintf)According to LSB, on error vswprintf() function shall return -1 and set errno global variable. On the target machine, vswprintf() function returns -1, but doesn't set error code in errno global variable. This contradicts LSB standard for this function. Additional information about this bug may be found at http://linuxtesting.org/results/report?num=S0505. failure 517
util_format_wtime_scenariobug561(wcsftime)%z Replaced by the offset from UTC in the ISO 8601:2000 standard format, or by no characters if no timezone is determinable; depending on the field tm_isdst in tm structure. But on the target machine it is detected incorrect processing of this conversion pattern when tm_isdst is set to a positive number - no daylight savings time offset is used. Additional information about this bug may be found at http://linuxtesting.org/results/report?num=S0561. failure 518

New

ScenarioReq IdDescriptionFailures
util_crypt_scenariocrypt.09 Requirement failed: Unexpected error code returned: [EINVAL] code 0x16 failure 414
util_dl_scenariodlsym.03 Requirement failed: {dlsym.03} correct symbol not found failure 415

Function coverage

_Exitfegetroundmemcmpsigtimedwaitcurs_set
_IO_feoffeholdexceptmemcpysigwaitdef_prog_mode
_IO_getcfeofmemmemsigwaitinfodef_shell_mode
_IO_putcferaiseexceptmemmovesindeflate
_IO_putsferrormemrchrsincosdeflateBound
__assert_failfesetenvmemsetsincosfdeflateCopy
__ctype_b_locfesetexceptflagmkdirsincosldeflateEnd
__ctype_get_mb_cur_maxfesetroundmkfifosinfdeflateInit2_
__ctype_tolower_locfetestexceptmkstempsinhdeflateInit_
__ctype_toupper_locfeupdateenvmkstemp64sinhfdeflateParams
__cxa_atexitfflushmktempsinhldeflateReset
__errno_locationfflush_unlockedmktimesinldeflateSetDictionary
__finiteffsmlocksleepdel_curterm
__finiteffgetcmlockallsnprintfdelay_output
__finitelfgetposmmapsockatmarkdelch
__fpclassifyfgetpos64mmap64socketdeleteln
__fpclassifyffgetsmodfsocketpairdelscreen
__fpendingfgetwcmodffsprintfdelwin
__fxstatfgetwc_unlockedmodflsqrtderwin
__fxstat64fgetwsmprotectsqrtfdlclose
__getpagesizefilenomrand48sqrtldoupdate
__getpgidfinitemsgctlsranddupwin
__h_errno_locationfinitefmsggetsrand48echo
__isinffinitelmsgrcvsrandomechochar
__isinffflockmsgsndsscanfencrypt
__isinflflockfilemsyncstatvfsendwin
__isnanfloormunlockstatvfs64erase
__isnanffloorfmunlockallstimeerasechar
__isnanlfloorlmunmapstpcpyfilter
__libc_current_sigrtmaxfmananstpncpyflash
__libc_current_sigrtminfmafnanfstrcasecmpflushinp
__libc_start_mainfmalnanlstrcasestrget_crc_table
__lxstatfmaxnanosleepstrcatgetbkgd
__lxstat64fmaxfnearbyintstrchrgetch
__mempcpyfmaxlnearbyintfstrcmpgetnstr
__rawmemchrfminnearbyintlstrcollgetstr
__register_atforkfminfnewlocalestrcpygetwin
__signbitfminlnextafterstrcspngzclose
__signbitffmodnextafterfstrdupgzdopen
__sigsetjmpfmodfnextafterlstrerrorgzeof
__stpcpyfmodlnexttowardstrerror_rgzerror
__strdupfmtmsgnexttowardfstrfmongzflush
__strtod_internalfnmatchnexttowardlstrlengzgetc
__strtof_internalfopennftwstrncasecmpgzgets
__strtok_rfopen64nftw64strncatgzopen
__strtol_internalforkngettextstrncmpgzprintf
__strtold_internalforkptynicestrncpygzputc
__strtoll_internalfpathconfnl_langinfostrndupgzputs
__strtoul_internalfprintfnrand48strnlengzread
__strtoull_internalfputcntohlstrpbrkgzrewind
__sysconffputsntohsstrptimegzseek
__sysv_signalfputwcopenstrrchrgzsetparams
__wcstod_internalfputwsopen64strsepgztell
__wcstof_internalfreadopendirstrsignalgzwrite
__wcstol_internalfreeopenlogstrspnhalfdelay
__wcstold_internalfreeaddrinfoopenptystrstrhas_colors
__wcstoul_internalfreelocalepathconfstrtodhas_ic
__xmknodfreopenpausestrtofhas_il
__xstatfreopen64pclosestrtoimaxhline
__xstat64frexpperrorstrtokidcok
_exitfrexpfpipestrtok_ridlok
_longjmpfrexplpmap_getportstrtolimmedok
_pthread_cleanup_popfscanfpmap_setstrtoldinch
_pthread_cleanup_pushfseekpmap_unsetstrtollinchnstr
_setjmpfseekopollstrtoqinchstr
_tolowerfseeko64popenstrtoulinflate
_toupperfsetposposix_memalignstrtoullinflateEnd
a64lfsetpos64posix_openptstrtoumaxinflateInit2_
abortfstatvfspowstrtouqinflateInit_
absfstatvfs64pow10strxfrminflateReset
acceptfsyncpow10fsvc_registerinflateSetDictionary
accessftellpow10lsvc_runinflateSync
acctftellopowfsvc_sendreplyinflateSyncPoint
acosftello64powlsvcerr_authinit_color
acosfftimepreadsvcerr_decodeinit_pair
acoshftokpread64svcerr_noprocinitscr
acoshfftruncateprintfsvcerr_noproginnstr
acoshlftruncate64psignalsvcerr_progversinsch
acoslftrylockfilepthread_attr_destroysvcerr_systemerrinsdelln
adjtimeftwpthread_attr_getdetachstatesvcerr_weakauthinsertln
alarmftw64pthread_attr_getguardsizesvctcp_createinsnstr
asctimefunlockfilepthread_attr_getinheritschedsvcudp_createinsstr
asctime_rfwidepthread_attr_getschedparamswabinstr
asinfwprintfpthread_attr_getschedpolicyswapcontextintrflush
asinffwritepthread_attr_getscopeswprintfis_linetouched
asinhfwscanfpthread_attr_getstackswscanfis_wintouched
asinhfgai_strerrorpthread_attr_getstackaddrsymlinkisendwin
asinhlgammapthread_attr_getstacksizesynckeyname
asinlgammafpthread_attr_initsysconfkeypad
asprintfgammalpthread_attr_setdetachstatesyslogkillchar
atangcvtpthread_attr_setguardsizetanleaveok
atan2getaddrinfopthread_attr_setinheritschedtanflongname
atan2fgetcpthread_attr_setschedparamtanhmatherr
atan2lgetc_unlockedpthread_attr_setschedpolicytanhfmeta
atanfgetcharpthread_attr_setscopetanhlmove
atanhgetchar_unlockedpthread_attr_setstacktanlmvaddch
atanhfgetcontextpthread_attr_setstackaddrtcdrainmvaddchnstr
atanhlgetcwdpthread_attr_setstacksizetcflowmvaddchstr
atanlgetdatepthread_canceltcflushmvaddnstr
atofgetegidpthread_cond_broadcasttcgetattrmvaddstr
atoigetenvpthread_cond_destroytcgetpgrpmvchgat
atolgeteuidpthread_cond_inittcgetsidmvcur
atollgetgidpthread_cond_signaltcsendbreakmvdelch
authnone_creategetgrentpthread_cond_timedwaittcsetattrmvderwin
basenamegetgrgidpthread_cond_waittcsetpgrpmvgetch
bcmpgetgrgid_rpthread_condattr_destroytdeletemvgetnstr
bcopygetgrnampthread_condattr_getpsharedtelldirmvgetstr
bindgetgrnam_rpthread_condattr_inittempnammvhline
bind_textdomain_codesetgetgrouplistpthread_condattr_setpsharedtextdomainmvinch
bindresvportgetgroupspthread_createtfindmvinchnstr
bindtextdomaingethostbyaddrpthread_detachtgammamvinchstr
brkgethostbynamepthread_equaltgammafmvinnstr
bsd_signalgethostidpthread_exittgammalmvinsch
bsearchgethostnamepthread_getconcurrencytimemvinsnstr
btowcgetitimerpthread_getschedparamtimer_createmvinsstr
bzerogetloadavgpthread_getspecifictimer_deletemvinstr
cabsgetloginpthread_jointimer_getoverrunmvprintw
cabsfgetlogin_rpthread_key_createtimer_gettimemvscanw
cabslgetnameinfopthread_key_deletetimer_settimemvvline
cacosgetoptpthread_killtimesmvwaddch
cacosfgetopt_longpthread_mutex_destroytmpfilemvwaddchnstr
cacoshgetopt_long_onlypthread_mutex_inittmpfile64mvwaddchstr
cacoshfgetpagesizepthread_mutex_locktmpnammvwaddnstr
cacoshlgetpeernamepthread_mutex_trylocktoasciimvwaddstr
cacoslgetpgidpthread_mutex_unlocktolowermvwchgat
callocgetpgrppthread_mutexattr_destroytouppermvwdelch
carggetpidpthread_mutexattr_getpsharedtowctransmvwgetch
cargfgetppidpthread_mutexattr_gettypetowlowermvwgetnstr
carglgetprioritypthread_mutexattr_inittowuppermvwgetstr
casingetprotobynamepthread_mutexattr_setpsharedtruncmvwhline
casinfgetprotobynumberpthread_mutexattr_settypetruncatemvwin
casinhgetprotoentpthread_oncetruncate64mvwinch
casinhfgetpwentpthread_rwlock_destroytruncfmvwinchnstr
casinhlgetpwnampthread_rwlock_inittrunclmvwinchstr
casinlgetpwnam_rpthread_rwlock_rdlocktsearchmvwinnstr
catangetpwuidpthread_rwlock_timedrdlockttynamemvwinsch
catanfgetpwuid_rpthread_rwlock_timedwrlockttyname_rmvwinsnstr
catanhgetrlimitpthread_rwlock_tryrdlocktwalkmvwinsstr
catanhfgetrlimit64pthread_rwlock_trywrlocktzsetmvwinstr
catanhlgetrusagepthread_rwlock_unlockualarmmvwprintw
catanlgetservbynamepthread_rwlock_wrlockulimitmvwscanw
catclosegetservbyportpthread_rwlockattr_destroyumaskmvwvline
catgetsgetserventpthread_rwlockattr_getpsharedunamenapms
catopengetsidpthread_rwlockattr_initungetcnewpad
cbrtgetsocknamepthread_rwlockattr_setpsharedungetwcnewterm
cbrtfgetsockoptpthread_selfunlinknewwin
cbrtlgetsuboptpthread_setcancelstateunlockptnl
ccosgettextpthread_setcanceltypeunsetenvnocbreak
ccosfgettimeofdaypthread_setconcurrencyuselocalenodelay
ccoshgetuidpthread_setschedparamusleepnoecho
ccoshfgetutentpthread_setschedprioutimenonl
ccoshlgetutent_rpthread_setspecificutimesnoqiflush
ccoslgetutxentpthread_sigmaskutmpnamenoraw
ceilgetutxidpthread_testcancelvasprintfnotimeout
ceilfgetutxlineptsnamevdprintfoverlay
ceillgetwputcverrxoverwrite
cexpgetwcputc_unlockedvforkpair_content
cexpfgetwcharputcharvfprintfpam_acct_mgmt
cexplgetwdputchar_unlockedvfscanfpam_authenticate
cfgetispeedglobputenvvfwprintfpam_chauthtok
cfgetospeedglob64putsvfwscanfpam_close_session
cfmakerawglobfreepututxlinevprintfpam_end
cfsetispeedglobfree64putwvscanfpam_fail_delay
cfsetospeedgmtimeputwcvsnprintfpam_get_item
cfsetspeedgmtime_rputwcharvsprintfpam_getenvlist
chdirgrantptpwritevsscanfpam_open_session
chmodhcreatepwrite64vswprintfpam_set_item
chownhdestroyqsortvswscanfpam_setcred
chroothsearchraisevsyslogpam_start
cimaghtonlrandvwprintfpam_strerror
cimagfhtonsrand_rvwscanfpechochar
cimaglhypotrandomwaitpnoutrefresh
clearerrhypotfreadwait4prefresh
clnt_createhypotlreaddirwaitpidprintw
clnt_pcreateerroriconvreaddir64warnputp
clnt_perrnoiconv_closereaddir_rwarnxputwin
clnt_perroriconv_openreadlinkwcpcpyqiflush
clnt_spcreateerrorif_freenameindexreadvwcpncpyraw
clnt_sperrnoif_indextonamereallocwcrtombredrawwin
clnt_sperrorif_nameindexrealpathwcscasecmprefresh
clockif_nametoindexrecvwcscatreset_prog_mode
clock_getcpuclockidilogbrecvfromwcschrreset_shell_mode
clock_getresilogbfrecvmsgwcscmpresetty
clock_gettimeilogblregcompwcscollrestartterm
clock_nanosleepimaxabsregerrorwcscpyripoffline
clock_settimeimaxdivregexecwcscspnsavetty
clogindexregfreewcsdupscanw
clog10inet_addrremainderwcsftimescr_dump
clog10finet_ntoaremainderfwcslenscr_init
clog10linet_ntopremainderlwcsncasecmpscr_restore
clogfinet_ptonremovewcsncatscr_set
cloglinitgroupsremquewcsncmpscrl
closeinitstateremquowcsncpyscroll
closedirinsqueremquofwcsnlenscrollok
closelogioctlremquolwcsnrtombsset_curterm
confstrisalnumrenamewcspbrkset_term
conjisalpharewindwcsrchrsetkey
conjfisasciirewinddirwcsrtombssetscrreg
conjlisattyrindexwcsspnsetupterm
connectisblankrintwcsstrsigreturn
copysigniscntrlrintfwcstodslk_attr_set
copysignfisdigitrintlwcstofslk_attroff
copysignlisgraphrmdirwcstoimaxslk_attron
cosislowerroundwcstokslk_attrset
cosfisprintroundfwcstolslk_clear
coshispunctroundlwcstoldslk_color
coshfisspacesbrkwcstollslk_init
coshlisupperscalbwcstombsslk_label
cosliswalnumscalbfwcstoqslk_noutrefresh
cpowiswalphascalblwcstoulslk_refresh
cpowfiswblankscalblnwcstoullslk_restore
cpowliswcntrlscalblnfwcstoumaxslk_set
cprojiswctypescalblnlwcstouqslk_touch
cprojfiswdigitscalbnwcswcsstandend
cprojliswgraphscalbnfwcswidthstandout
crealiswlowerscalbnlwcsxfrmstart_color
crealfiswprintscanfwctobstrftime
crealliswpunctsched_get_priority_maxwctombsubpad
creatiswspacesched_get_priority_minwctranssubwin
creat64iswuppersched_getparamwctypesvc_getreqset
cryptiswxdigitsched_getschedulerwcwidthsyncok
csinisxdigitsched_rr_get_intervalwmemchrsystem
csinfj0sched_setparamwmemcmptermattrs
csinhj0fsched_setschedulerwmemcpytermname
csinhfj0lsched_yieldwmemmovetgetent
csinhlj1seed48wmemsettgetflag
csinlj1fseekdirwordexptgetnum
csqrtj1lselectwordfreetgetstr
csqrtfjnsem_closewprintftgoto
csqrtljnfsem_destroywritetigetflag
ctanjnlsem_getvaluewritevtigetnum
ctanfjrand48sem_initwscanftigetstr
ctanhkey_decryptsessionsem_openxdr_accepted_replytimeout
ctanhfkillsem_postxdr_arraytouchline
ctanhlkillpgsem_timedwaitxdr_booltouchwin
ctanll64asem_trywaitxdr_bytestparm
ctermidlabssem_unlinkxdr_callhdrtputs
ctimelchownsem_waitxdr_callmsgtypeahead
ctime_rlcong48semctlxdr_charuncompress
cuseridldexpsemgetxdr_doubleunctrl
daemonldexpfsemopxdr_enumungetch
dcgettextldexplsendxdr_floatuntouchwin
dcngettextldivsendmsgxdr_freeuse_env
dgettextlfindsendtoxdr_intvidattr
difftimelgammasetbufxdr_longvidputs
dirnamelgamma_rsetbufferxdr_opaquevline
divlgammafsetcontextxdr_opaque_authvw_printw
dladdrlgammaf_rsetegidxdr_pointervw_scanw
dlerrorlgammalsetenvxdr_referencevwprintw
dlopenlgammal_rseteuidxdr_rejected_replyvwscanw
dlsymlinksetgidxdr_replymsgwaddch
dngettextlistensetgrentxdr_shortwaddchnstr
drand48llabssetgroupsxdr_stringwaddchstr
dremflldivsethostnamexdr_u_charwaddnstr
dremlllrintsetitimerxdr_u_intwaddstr
dupllrintfsetlocalexdr_u_longwattr_get
dup2llrintlsetlogmaskxdr_u_shortwattr_off
duplocalellroundsetpgidxdr_unionwattr_on
ecvtllroundfsetpgrpxdr_vectorwattr_set
endgrentllroundlsetpriorityxdr_voidwattroff
endprotoentlocaleconvsetprotoentxdr_wrapstringwattron
endpwentlocaltimesetpwentxdrmem_createwattrset
endserventlocaltime_rsetregidxdrrec_createwbkgd
endutentlockfsetreuidxdrrec_eofwbkgdset
endutxentlockf64setrlimity0wborder
erand48logsetrlimit64y0fwchgat
erflog10setserventy0lwclear
erfclog10fsetsidy1wclrtobot
erfcflog10lsetsockopty1fwclrtoeol
erfcllog1psetstatey1lwcolor_set
erfflog1pfsetuidynwcursyncup
erfllog1plsetutentynfwdelch
errlog2setutxentynlwdeleteln
errorlog2fsetvbufaddchwechochar
errxlog2lshm_openaddchnstrwerase
execllogbshm_unlinkaddchstrwgetch
execlelogbfshmataddnstrwgetnstr
execlplogblshmctladdstrwgetstr
execvlogfshmdtadler32whline
execveloginshmgetattr_getwinch
execvplogin_ttyshutdownattr_offwinchnstr
exitloglsigactionattr_onwinchstr
explogoutsigaddsetattr_setwinnstr
exp2logwtmpsigaltstackattroffwinsch
exp2flongjmpsigandsetattronwinsdelln
expflrand48sigdelsetattrsetwinsertln
expllrintsigemptysetbaudratewinsnstr
expm1lrintfsigfillsetbeepwinsstr
expm1flrintlsigholdbkgdwinstr
expm1llroundsigignorebkgdsetwmove
fabslroundfsiginterruptborderwnoutrefresh
fabsflroundlsigisemptysetboxwprintw
fabsllsearchsigismembercan_change_colorwredrawln
fchdirlseeksiglongjmpcbreakwrefresh
fchmodlseek64signalchgatwscanw
fchownmakecontextsignificandclearwscrl
fclosemallocsignificandfclearokwsetscrreg
fcntlmblensignificandlclrtobotwstandend
fcvtmbrlensigorsetclrtoeolwstandout
fdatasyncmbrtowcsigpausecolor_contentwsyncdown
fdimmbsinitsigpendingcolor_setwsyncup
fdimfmbsnrtowcssigprocmaskcompresswtimeout
fdimlmbsrtowcssigqueuecompress2wtouchln
fdopenmbstowcssigrelsecompressBoundwvline
feclearexceptmbtowcsigsetcopywinzError
fegetenvmemccpysigsuspendcrc32zlibVersion
fegetexceptflagmemchr