Summary Report for OLVER Test Run

on Host localhost.localdomain under OS "Fedora release 18 (Spherical Cow)" at Time 2014_01_29 06:55:59

Scenarios Problems Functions Requirements
Passed232
Failed20
 

Total252
Known37
New2
Internal0

Total39
Tested1193
Not tested339
 

Total1532
Passed7056
Failed130
Checked7186

Total18238

Problems

Known

ScenarioBug IdDescriptionFailures
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 1 | 3 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 5 | 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 6 | 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 26 | 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 17 | 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 18 | 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 23 | 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 29 | 5 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 35 | 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 38 | 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 39 | 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 40 | 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 41 | 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 110 | 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 138 | 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 136 | 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 120 | 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 122 | 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 118 | 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 116 | 1 more...
process_resources_ulimit_priviledged_scenariobug794(ulimit)It is a test suite deficiency that will be fixed soon. failure 140
process_resources_ulimit_unpriviledged_scenariobug794(ulimit)It is a test suite deficiency that will be fixed soon. failure 141
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 143
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 145 | 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 144
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 147 | 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 156 | 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 165 | 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 174 | 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 375 | 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 381 | 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 411 | 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 441 | 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 453 | 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 462 | 8 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 471
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 472

New

ScenarioReq IdDescriptionFailures
pthread_mutex_mutexattr_scenariopthread_mutexattr_gettype.01.01 Requirement failed: {pthread_mutexattr_gettype.01.01} pthread_mutexattr_gettype() shall store the value of the 'type' attribute into *type failure 142
util_dl_scenariodlsym.03 Requirement failed: {dlsym.03} correct symbol not found failure 374

Function coverage

_Exitfegetexceptflagmemchrsigtimedwaitcurs_set
_IO_feoffegetroundmemcmpsigwaitdef_prog_mode
_IO_getcfeholdexceptmemcpysigwaitinfodef_shell_mode
_IO_putcfeofmemmemsindeflate
_IO_putsferaiseexceptmemmovesincosdeflateBound
__assert_failferrormemrchrsincosfdeflateCopy
__ctype_b_locfesetenvmemsetsincosldeflateEnd
__ctype_get_mb_cur_maxfesetexceptflagmkdirsinfdeflateInit2_
__ctype_tolower_locfesetroundmkfifosinhdeflateInit_
__ctype_toupper_locfetestexceptmkstempsinhfdeflateParams
__cxa_atexitfeupdateenvmkstemp64sinhldeflateReset
__errno_locationfflushmktempsinldeflateSetDictionary
__finitefflush_unlockedmktimesleepdel_curterm
__finitefffsmlocksnprintfdelay_output
__finitelfgetcmlockallsockatmarkdelch
__fpclassifyfgetposmmapsocketdeleteln
__fpclassifyffgetpos64mmap64socketpairdelscreen
__fpendingfgetsmodfsprintfdelwin
__fxstatfgetwcmodffsqrtderwin
__fxstat64fgetwc_unlockedmodflsqrtfdlclose
__getpagesizefgetwsmprotectsqrtldoupdate
__getpgidfilenomrand48sranddupwin
__h_errno_locationfinitemsgctlsrand48echo
__isinffinitefmsggetsrandomechochar
__isinfffinitelmsgrcvsscanfendwin
__isinflflockmsgsndstatvfserase
__isnanflockfilemsyncstatvfs64erasechar
__isnanffloormunlockstimefilter
__isnanlfloorfmunlockallstpcpyflash
__libc_current_sigrtmaxfloorlmunmapstpncpyflushinp
__libc_current_sigrtminfmananstrcasecmpget_crc_table
__libc_start_mainfmafnanfstrcasestrgetbkgd
__lxstatfmalnanlstrcatgetch
__lxstat64fmaxnanosleepstrchrgetnstr
__mempcpyfmaxfnearbyintstrcmpgetstr
__rawmemchrfmaxlnearbyintfstrcollgetwin
__register_atforkfminnearbyintlstrcpygzclose
__signbitfminfnewlocalestrcspngzdopen
__signbitffminlnextafterstrdupgzeof
__sigsetjmpfmodnextafterfstrerrorgzerror
__stpcpyfmodfnextafterlstrerror_rgzflush
__strdupfmodlnexttowardstrfmongzgetc
__strtod_internalfmtmsgnexttowardfstrlengzgets
__strtof_internalfnmatchnexttowardlstrncasecmpgzopen
__strtok_rfopennftwstrncatgzprintf
__strtol_internalfopen64nftw64strncmpgzputc
__strtold_internalforkngettextstrncpygzputs
__strtoll_internalforkptynicestrndupgzread
__strtoul_internalfpathconfnl_langinfostrnlengzrewind
__strtoull_internalfprintfnrand48strpbrkgzseek
__sysconffputcntohlstrptimegzsetparams
__sysv_signalfputsntohsstrrchrgztell
__wcstod_internalfputwcopenstrsepgzwrite
__wcstof_internalfputwsopen64strsignalhalfdelay
__wcstol_internalfreadopendirstrspnhas_colors
__wcstold_internalfreeopenlogstrstrhas_ic
__wcstoul_internalfreeaddrinfoopenptystrtodhas_il
__xmknodfreelocalepathconfstrtofhline
__xstatfreopenpausestrtoimaxidcok
__xstat64freopen64pclosestrtokidlok
_exitfrexpperrorstrtok_rimmedok
_longjmpfrexpfpipestrtolinch
_pthread_cleanup_popfrexplpmap_getportstrtoldinchnstr
_pthread_cleanup_pushfscanfpmap_setstrtollinchstr
_setjmpfseekpmap_unsetstrtoqinflate
_tolowerfseekopollstrtoulinflateEnd
_toupperfseeko64popenstrtoullinflateInit2_
a64lfsetposposix_memalignstrtoumaxinflateInit_
abortfsetpos64posix_openptstrtouqinflateReset
absfstatvfspowstrxfrminflateSetDictionary
acceptfstatvfs64pow10svc_registerinflateSync
accessfsyncpow10fsvc_runinflateSyncPoint
acctftellpow10lsvc_sendreplyinit_color
acosftellopowfsvcerr_authinit_pair
acosfftello64powlsvcerr_decodeinitscr
acoshftimepreadsvcerr_noprocinnstr
acoshfftokpread64svcerr_noproginsch
acoshlftruncateprintfsvcerr_progversinsdelln
acoslftruncate64psignalsvcerr_systemerrinsertln
adjtimeftrylockfilepthread_attr_destroysvcerr_weakauthinsnstr
alarmftwpthread_attr_getdetachstatesvctcp_createinsstr
asctimeftw64pthread_attr_getguardsizesvcudp_createinstr
asctime_rfunlockfilepthread_attr_getinheritschedswabintrflush
asinfwidepthread_attr_getschedparamswapcontextis_linetouched
asinffwprintfpthread_attr_getschedpolicyswprintfis_wintouched
asinhfwritepthread_attr_getscopeswscanfisendwin
asinhffwscanfpthread_attr_getstacksymlinkkeyname
asinhlgai_strerrorpthread_attr_getstackaddrsynckeypad
asinlgammapthread_attr_getstacksizesysconfkillchar
asprintfgammafpthread_attr_initsyslogleaveok
atangammalpthread_attr_setdetachstatetanlongname
atan2gcvtpthread_attr_setguardsizetanfmatherr
atan2fgetaddrinfopthread_attr_setinheritschedtanhmeta
atan2lgetcpthread_attr_setschedparamtanhfmove
atanfgetc_unlockedpthread_attr_setschedpolicytanhlmvaddch
atanhgetcharpthread_attr_setscopetanlmvaddchnstr
atanhfgetchar_unlockedpthread_attr_setstacktcdrainmvaddchstr
atanhlgetcontextpthread_attr_setstackaddrtcflowmvaddnstr
atanlgetcwdpthread_attr_setstacksizetcflushmvaddstr
atofgetdatepthread_canceltcgetattrmvchgat
atoigetegidpthread_cond_broadcasttcgetpgrpmvcur
atolgetenvpthread_cond_destroytcgetsidmvdelch
atollgeteuidpthread_cond_inittcsendbreakmvderwin
authnone_creategetgidpthread_cond_signaltcsetattrmvgetch
basenamegetgrentpthread_cond_timedwaittcsetpgrpmvgetnstr
bcmpgetgrgidpthread_cond_waittdeletemvgetstr
bcopygetgrgid_rpthread_condattr_destroytelldirmvhline
bindgetgrnampthread_condattr_getpsharedtempnammvinch
bind_textdomain_codesetgetgrnam_rpthread_condattr_inittextdomainmvinchnstr
bindresvportgetgrouplistpthread_condattr_setpsharedtfindmvinchstr
bindtextdomaingetgroupspthread_createtgammamvinnstr
brkgethostbyaddrpthread_detachtgammafmvinsch
bsd_signalgethostbynamepthread_equaltgammalmvinsnstr
bsearchgethostidpthread_exittimemvinsstr
btowcgethostnamepthread_getconcurrencytimer_createmvinstr
bzerogetitimerpthread_getschedparamtimer_deletemvprintw
cabsgetloadavgpthread_getspecifictimer_getoverrunmvscanw
cabsfgetloginpthread_jointimer_gettimemvvline
cabslgetlogin_rpthread_key_createtimer_settimemvwaddch
cacosgetnameinfopthread_key_deletetimesmvwaddchnstr
cacosfgetoptpthread_killtmpfilemvwaddchstr
cacoshgetopt_longpthread_mutex_destroytmpfile64mvwaddnstr
cacoshfgetopt_long_onlypthread_mutex_inittmpnammvwaddstr
cacoshlgetpagesizepthread_mutex_locktoasciimvwchgat
cacoslgetpeernamepthread_mutex_trylocktolowermvwdelch
callocgetpgidpthread_mutex_unlocktouppermvwgetch
carggetpgrppthread_mutexattr_destroytowctransmvwgetnstr
cargfgetpidpthread_mutexattr_gettypetowlowermvwgetstr
carglgetppidpthread_mutexattr_inittowuppermvwhline
casingetprioritypthread_mutexattr_settypetruncmvwin
casinfgetprotobynamepthread_oncetruncatemvwinch
casinhgetprotobynumberpthread_rwlock_destroytruncate64mvwinchnstr
casinhfgetprotoentpthread_rwlock_inittruncfmvwinchstr
casinhlgetpwentpthread_rwlock_rdlocktrunclmvwinnstr
casinlgetpwnampthread_rwlock_timedrdlocktsearchmvwinsch
catangetpwnam_rpthread_rwlock_timedwrlockttynamemvwinsnstr
catanfgetpwuidpthread_rwlock_tryrdlockttyname_rmvwinsstr
catanhgetpwuid_rpthread_rwlock_trywrlocktwalkmvwinstr
catanhfgetrlimitpthread_rwlock_unlocktzsetmvwprintw
catanhlgetrlimit64pthread_rwlock_wrlockualarmmvwscanw
catanlgetrusagepthread_rwlockattr_destroyulimitmvwvline
catclosegetservbynamepthread_rwlockattr_getpsharedumasknapms
catgetsgetservbyportpthread_rwlockattr_initunamenewpad
catopengetserventpthread_rwlockattr_setpsharedungetcnewterm
cbrtgetsidpthread_selfungetwcnewwin
cbrtfgetsocknamepthread_setcancelstateunlinknl
cbrtlgetsockoptpthread_setcanceltypeunlockptnocbreak
ccosgetsuboptpthread_setconcurrencyunsetenvnodelay
ccosfgettextpthread_setschedparamuselocalenoecho
ccoshgettimeofdaypthread_setschedpriousleepnonl
ccoshfgetuidpthread_setspecificutimenoqiflush
ccoshlgetutentpthread_sigmaskutimesnoraw
ccoslgetutent_rpthread_testcancelutmpnamenotimeout
ceilgetutxentptsnamevasprintfoverlay
ceilfgetutxidputcvdprintfoverwrite
ceillgetutxlineputc_unlockedverrxpair_content
cexpgetwputcharvforkpam_acct_mgmt
cexpfgetwcputchar_unlockedvfprintfpam_authenticate
cexplgetwcharputenvvfscanfpam_chauthtok
cfgetispeedgetwdputsvfwprintfpam_close_session
cfgetospeedglobpututxlinevfwscanfpam_end
cfmakerawglob64putwvprintfpam_fail_delay
cfsetispeedglobfreeputwcvscanfpam_get_item
cfsetospeedglobfree64putwcharvsnprintfpam_getenvlist
cfsetspeedgmtimepwritevsprintfpam_open_session
chdirgmtime_rpwrite64vsscanfpam_set_item
chmodgrantptqsortvswprintfpam_setcred
chownhcreateraisevswscanfpam_start
chroothdestroyrandvsyslogpam_strerror
cimaghsearchrand_rvwprintfpechochar
cimagfhtonlrandomvwscanfpnoutrefresh
cimaglhtonsreadwaitprefresh
clearerrhypotreaddirwait4printw
clnt_createhypotfreaddir64waitpidpthread_mutexattr_getpshared
clnt_pcreateerrorhypotlreaddir_rwarnpthread_mutexattr_setpshared
clnt_perrnoiconvreadlinkwarnxputp
clnt_perroriconv_closereadvwcpcpyputwin
clnt_spcreateerroriconv_openreallocwcpncpyqiflush
clnt_sperrnoif_freenameindexrealpathwcrtombraw
clnt_sperrorif_indextonamerecvwcscasecmpredrawwin
clockif_nameindexrecvfromwcscatrefresh
clock_getcpuclockidif_nametoindexrecvmsgwcschrreset_prog_mode
clock_getresilogbregcompwcscmpreset_shell_mode
clock_gettimeilogbfregerrorwcscollresetty
clock_nanosleepilogblregexecwcscpyrestartterm
clock_settimeimaxabsregfreewcscspnripoffline
clogimaxdivremainderwcsdupsavetty
clog10indexremainderfwcsftimescanw
clog10finet_addrremainderlwcslenscr_dump
clog10linet_ntoaremovewcsncasecmpscr_init
clogfinet_ntopremquewcsncatscr_restore
cloglinet_ptonremquowcsncmpscr_set
closeinitgroupsremquofwcsncpyscrl
closedirinitstateremquolwcsnlenscroll
closeloginsquerenamewcsnrtombsscrollok
confstrioctlrewindwcspbrkset_curterm
conjisalnumrewinddirwcsrchrset_term
conjfisalpharindexwcsrtombssetscrreg
conjlisasciirintwcsspnsetupterm
connectisattyrintfwcsstrsigreturn
copysignisblankrintlwcstodslk_attr_set
copysignfiscntrlrmdirwcstofslk_attroff
copysignlisdigitroundwcstoimaxslk_attron
cosisgraphroundfwcstokslk_attrset
cosfislowerroundlwcstolslk_clear
coshisprintsbrkwcstoldslk_color
coshfispunctscalbwcstollslk_init
coshlisspacescalbfwcstombsslk_label
coslisupperscalblwcstoqslk_noutrefresh
cpowiswalnumscalblnwcstoulslk_refresh
cpowfiswalphascalblnfwcstoullslk_restore
cpowliswblankscalblnlwcstoumaxslk_set
cprojiswcntrlscalbnwcstouqslk_touch
cprojfiswctypescalbnfwcswcsstandend
cprojliswdigitscalbnlwcswidthstandout
crealiswgraphscanfwcsxfrmstart_color
crealfiswlowersched_get_priority_maxwctobstrftime
crealliswprintsched_get_priority_minwctombsubpad
creatiswpunctsched_getparamwctranssubwin
creat64iswspacesched_getschedulerwctypesvc_getreqset
cryptiswuppersched_rr_get_intervalwcwidthsyncok
csiniswxdigitsched_setparamwmemchrsystem
csinfisxdigitsched_setschedulerwmemcmptermattrs
csinhj0sched_yieldwmemcpytermname
csinhfj0fseed48wmemmovetgetent
csinhlj0lseekdirwmemsettgetflag
csinlj1selectwordexptgetnum
csqrtj1fsem_closewordfreetgetstr
csqrtfj1lsem_destroywprintftgoto
csqrtljnsem_getvaluewritetigetflag
ctanjnfsem_initwritevtigetnum
ctanfjnlsem_openwscanftigetstr
ctanhjrand48sem_postxdr_accepted_replytimeout
ctanhfkey_decryptsessionsem_timedwaitxdr_arraytouchline
ctanhlkillsem_trywaitxdr_booltouchwin
ctanlkillpgsem_unlinkxdr_bytestparm
ctermidl64asem_waitxdr_callhdrtputs
ctimelabssemctlxdr_callmsgtypeahead
ctime_rlchownsemgetxdr_charuncompress
cuseridlcong48semopxdr_doubleunctrl
daemonldexpsendxdr_enumungetch
dcgettextldexpfsendmsgxdr_floatuntouchwin
dcngettextldexplsendtoxdr_freeuse_env
dgettextldivsetbufxdr_intvidattr
difftimelfindsetbufferxdr_longvidputs
dirnamelgammasetcontextxdr_opaquevline
divlgamma_rsetegidxdr_opaque_authvw_printw
dladdrlgammafsetenvxdr_pointervw_scanw
dlerrorlgammaf_rseteuidxdr_referencevwprintw
dlopenlgammalsetgidxdr_rejected_replyvwscanw
dlsymlgammal_rsetgrentxdr_replymsgwaddch
dngettextlinksetgroupsxdr_shortwaddchnstr
drand48listensethostnamexdr_stringwaddchstr
dremfllabssetitimerxdr_u_charwaddnstr
dremllldivsetkeyxdr_u_intwaddstr
dupllrintsetlocalexdr_u_longwattr_get
dup2llrintfsetlogmaskxdr_u_shortwattr_off
duplocalellrintlsetpgidxdr_unionwattr_on
ecvtllroundsetpgrpxdr_vectorwattr_set
encryptllroundfsetpriorityxdr_voidwattroff
endgrentllroundlsetprotoentxdr_wrapstringwattron
endprotoentlocaleconvsetpwentxdrmem_createwattrset
endpwentlocaltimesetregidxdrrec_createwbkgd
endserventlocaltime_rsetreuidxdrrec_eofwbkgdset
endutentlockfsetrlimity0wborder
endutxentlockf64setrlimit64y0fwchgat
erand48logsetserventy0lwclear
erflog10setsidy1wclrtobot
erfclog10fsetsockopty1fwclrtoeol
erfcflog10lsetstatey1lwcolor_set
erfcllog1psetuidynwcursyncup
erfflog1pfsetutentynfwdelch
erfllog1plsetutxentynlwdeleteln
errlog2setvbufaddchwechochar
errorlog2fshm_openaddchnstrwerase
errxlog2lshm_unlinkaddchstrwgetch
execllogbshmataddnstrwgetnstr
execlelogbfshmctladdstrwgetstr
execlplogblshmdtadler32whline
execvlogfshmgetattr_getwinch
execveloginshutdownattr_offwinchnstr
execvplogin_ttysigactionattr_onwinchstr
exitloglsigaddsetattr_setwinnstr
explogoutsigaltstackattroffwinsch
exp2logwtmpsigandsetattronwinsdelln
exp2flongjmpsigdelsetattrsetwinsertln
expflrand48sigemptysetbaudratewinsnstr
expllrintsigfillsetbeepwinsstr
expm1lrintfsigholdbkgdwinstr
expm1flrintlsigignorebkgdsetwmove
expm1llroundsiginterruptborderwnoutrefresh
fabslroundfsigisemptysetboxwprintw
fabsflroundlsigismembercan_change_colorwredrawln
fabsllsearchsiglongjmpcbreakwrefresh
fchdirlseeksignalchgatwscanw
fchmodlseek64significandclearwscrl
fchownmakecontextsignificandfclearokwsetscrreg
fclosemallocsignificandlclrtobotwstandend
fcntlmblensigorsetclrtoeolwstandout
fcvtmbrlensigpausecolor_contentwsyncdown
fdatasyncmbrtowcsigpendingcolor_setwsyncup
fdimmbsinitsigprocmaskcompresswtimeout
fdimfmbsnrtowcssigqueuecompress2wtouchln
fdimlmbsrtowcssigrelsecompressBoundwvline
fdopenmbstowcssigsetcopywinzError
feclearexceptmbtowcsigsuspendcrc32zlibVersion
fegetenvmemccpy