Summary Report for OLVER Test Run

on Host localhost.localdomain under OS "Fedora release 18 (Spherical Cow)" at Time 2013_07_25 10:25:48

Scenarios Problems Functions Requirements
Passed228
Failed24
 

Total252
Known42
New3
Internal0

Total45
Tested1191
Not tested341
 

Total1532
Passed7012
Failed147
Checked7159

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 23 | 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 24 | 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 44 | 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 35 | 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 36 | 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 41 | 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 47 | 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 53 | 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 56 | 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 57 | 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 58 | 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 59 | 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 128 | 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 156 | 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 154 | 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 138 | 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 140 | 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 136 | 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 134 | 1 more...
process_resources_ulimit_priviledged_scenariobug794(ulimit)It is a test suite deficiency that will be fixed soon. failure 158
process_resources_ulimit_unpriviledged_scenariobug794(ulimit)It is a test suite deficiency that will be fixed soon. failure 159
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 160 | 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 177
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 179 | 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 178
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 181 | 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 190 | 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 199 | 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 208 | 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 410 | 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 416 | 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 446 | 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 476 | 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 488 | 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 497 | 8 more...
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 508
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 506 | 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 509
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 510

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 176
util_crypt_scenariocrypt.09 Requirement failed: Unexpected error code returned: [EINVAL] code 0x16 failure 408
util_dl_scenariodlsym.03 Requirement failed: {dlsym.03} correct symbol not found failure 409

Function coverage

_Exitfegetroundmemcmpsigwaitinfodef_shell_mode
_IO_feoffeholdexceptmemcpysindeflate
_IO_getcfeofmemmemsincosdeflateBound
_IO_putcferaiseexceptmemmovesincosfdeflateCopy
_IO_putsferrormemrchrsincosldeflateEnd
__assert_failfesetenvmemsetsinfdeflateInit2_
__ctype_b_locfesetexceptflagmkdirsinhdeflateInit_
__ctype_get_mb_cur_maxfesetroundmkfifosinhfdeflateParams
__ctype_tolower_locfetestexceptmkstempsinhldeflateReset
__ctype_toupper_locfeupdateenvmkstemp64sinldeflateSetDictionary
__cxa_atexitfflushmktempsleepdel_curterm
__errno_locationfflush_unlockedmktimesnprintfdelay_output
__finiteffsmlocksockatmarkdelch
__finiteffgetcmlockallsocketdeleteln
__finitelfgetposmmapsocketpairdelscreen
__fpclassifyfgetpos64mmap64sprintfdelwin
__fpclassifyffgetsmodfsqrtderwin
__fpendingfgetwcmodffsqrtfdlclose
__fxstatfgetwc_unlockedmodflsqrtldoupdate
__fxstat64fgetwsmprotectsranddupwin
__getpagesizefilenomrand48srand48echo
__getpgidfinitemsgctlsrandomechochar
__h_errno_locationfinitefmsggetsscanfencrypt
__isinffinitelmsgrcvstatvfsendwin
__isinffflockmsgsndstatvfs64erase
__isinflflockfilemsyncstimeerasechar
__isnanfloormunlockstpcpyfilter
__isnanffloorfmunlockallstpncpyflash
__isnanlfloorlmunmapstrcasecmpflushinp
__libc_current_sigrtmaxfmananstrcasestrget_crc_table
__libc_current_sigrtminfmafnanfstrcatgetbkgd
__libc_start_mainfmalnanlstrchrgetch
__lxstatfmaxnanosleepstrcmpgetnstr
__lxstat64fmaxfnearbyintstrcollgetstr
__mempcpyfmaxlnearbyintfstrcpygetwin
__rawmemchrfminnearbyintlstrcspngzclose
__register_atforkfminfnewlocalestrdupgzdopen
__signbitfminlnextafterstrerrorgzeof
__signbitffmodnextafterfstrerror_rgzerror
__sigsetjmpfmodfnextafterlstrfmongzflush
__stpcpyfmodlnexttowardstrlengzgetc
__strdupfmtmsgnexttowardfstrncasecmpgzgets
__strtod_internalfnmatchnexttowardlstrncatgzopen
__strtof_internalfopennftwstrncmpgzprintf
__strtok_rfopen64nftw64strncpygzputc
__strtol_internalforkngettextstrndupgzputs
__strtold_internalforkptynicestrnlengzread
__strtoll_internalfpathconfnl_langinfostrpbrkgzrewind
__strtoul_internalfprintfnrand48strptimegzseek
__strtoull_internalfputcntohlstrrchrgzsetparams
__sysconffputsntohsstrsepgztell
__sysv_signalfputwcopenstrsignalgzwrite
__wcstod_internalfputwsopen64strspnhalfdelay
__wcstof_internalfreadopendirstrstrhas_colors
__wcstol_internalfreeopenlogstrtodhas_ic
__wcstold_internalfreeaddrinfoopenptystrtofhas_il
__wcstoul_internalfreelocalepathconfstrtoimaxhline
__xmknodfreopenpausestrtokidcok
__xstatfreopen64pclosestrtok_ridlok
__xstat64frexpperrorstrtolimmedok
_exitfrexpfpipestrtoldinch
_longjmpfrexplpmap_getportstrtollinchnstr
_pthread_cleanup_popfscanfpmap_setstrtoqinchstr
_pthread_cleanup_pushfseekpmap_unsetstrtoulinflate
_setjmpfseekopollstrtoullinflateEnd
_tolowerfseeko64popenstrtoumaxinflateInit2_
_toupperfsetposposix_memalignstrtouqinflateInit_
a64lfsetpos64posix_openptstrxfrminflateReset
abortfstatvfspowsvc_registerinflateSetDictionary
absfstatvfs64pow10svc_runinflateSync
acceptfsyncpow10fsvc_sendreplyinflateSyncPoint
accessftellpow10lsvcerr_authinit_color
acctftellopowfsvcerr_decodeinit_pair
acosftello64powlsvcerr_noprocinitscr
acosfftimepreadsvcerr_noproginnstr
acoshftokpread64svcerr_progversinsch
acoshfftruncateprintfsvcerr_systemerrinsdelln
acoshlftruncate64psignalsvcerr_weakauthinsertln
acoslftrylockfilepthread_attr_destroysvctcp_createinsnstr
adjtimeftwpthread_attr_getdetachstatesvcudp_createinsstr
alarmftw64pthread_attr_getguardsizeswabinstr
asctimefunlockfilepthread_attr_getinheritschedswapcontextintrflush
asctime_rfwidepthread_attr_getschedparamswprintfis_linetouched
asinfwprintfpthread_attr_getschedpolicyswscanfis_wintouched
asinffwritepthread_attr_getscopesymlinkisendwin
asinhfwscanfpthread_attr_getstacksynckeyname
asinhfgai_strerrorpthread_attr_getstackaddrsysconfkeypad
asinhlgammapthread_attr_getstacksizesyslogkillchar
asinlgammafpthread_attr_inittanleaveok
asprintfgammalpthread_attr_setdetachstatetanflongname
atangcvtpthread_attr_setguardsizetanhmatherr
atan2getaddrinfopthread_attr_setinheritschedtanhfmeta
atan2fgetcpthread_attr_setschedparamtanhlmove
atan2lgetc_unlockedpthread_attr_setschedpolicytanlmvaddch
atanfgetcharpthread_attr_setscopetcdrainmvaddchnstr
atanhgetchar_unlockedpthread_attr_setstacktcflowmvaddchstr
atanhfgetcontextpthread_attr_setstackaddrtcflushmvaddnstr
atanhlgetcwdpthread_attr_setstacksizetcgetattrmvaddstr
atanlgetdatepthread_canceltcgetpgrpmvchgat
atofgetegidpthread_cond_broadcasttcgetsidmvcur
atoigetenvpthread_cond_destroytcsendbreakmvdelch
atolgeteuidpthread_cond_inittcsetattrmvderwin
atollgetgidpthread_cond_signaltcsetpgrpmvgetch
authnone_creategetgrentpthread_cond_timedwaittdeletemvgetnstr
basenamegetgrgidpthread_cond_waittelldirmvgetstr
bcmpgetgrgid_rpthread_condattr_destroytempnammvhline
bcopygetgrnampthread_condattr_getpsharedtextdomainmvinch
bindgetgrnam_rpthread_condattr_inittfindmvinchnstr
bind_textdomain_codesetgetgrouplistpthread_condattr_setpsharedtgammamvinchstr
bindresvportgetgroupspthread_createtgammafmvinnstr
bindtextdomaingethostbyaddrpthread_detachtgammalmvinsch
brkgethostbynamepthread_equaltimemvinsnstr
bsd_signalgethostidpthread_exittimer_createmvinsstr
bsearchgethostnamepthread_getconcurrencytimer_deletemvinstr
btowcgetitimerpthread_getschedparamtimer_getoverrunmvprintw
bzerogetloadavgpthread_getspecifictimer_gettimemvscanw
cabsgetloginpthread_jointimer_settimemvvline
cabsfgetlogin_rpthread_key_createtimesmvwaddch
cabslgetnameinfopthread_key_deletetmpfilemvwaddchnstr
cacosgetoptpthread_killtmpfile64mvwaddchstr
cacosfgetopt_longpthread_mutex_destroytmpnammvwaddnstr
cacoshgetopt_long_onlypthread_mutex_inittoasciimvwaddstr
cacoshfgetpagesizepthread_mutex_locktolowermvwchgat
cacoshlgetpeernamepthread_mutex_trylocktouppermvwdelch
cacoslgetpgidpthread_mutex_unlocktowctransmvwgetch
callocgetpgrppthread_mutexattr_destroytowlowermvwgetnstr
carggetpidpthread_mutexattr_gettypetowuppermvwgetstr
cargfgetppidpthread_mutexattr_inittruncmvwhline
carglgetprioritypthread_mutexattr_settypetruncatemvwin
casingetprotobynamepthread_oncetruncate64mvwinch
casinfgetprotobynumberpthread_rwlock_destroytruncfmvwinchnstr
casinhgetprotoentpthread_rwlock_inittrunclmvwinchstr
casinhfgetpwentpthread_rwlock_rdlocktsearchmvwinnstr
casinhlgetpwnampthread_rwlock_timedrdlockttynamemvwinsch
casinlgetpwnam_rpthread_rwlock_timedwrlockttyname_rmvwinsnstr
catangetpwuidpthread_rwlock_tryrdlocktwalkmvwinsstr
catanfgetpwuid_rpthread_rwlock_trywrlocktzsetmvwinstr
catanhgetrlimitpthread_rwlock_unlockualarmmvwprintw
catanhfgetrlimit64pthread_rwlock_wrlockulimitmvwscanw
catanhlgetrusagepthread_rwlockattr_destroyumaskmvwvline
catanlgetservbynamepthread_rwlockattr_getpsharedunamenapms
catclosegetservbyportpthread_rwlockattr_initungetcnewpad
catgetsgetserventpthread_rwlockattr_setpsharedungetwcnewterm
catopengetsidpthread_selfunlinknewwin
cbrtgetsocknamepthread_setcancelstateunlockptnl
cbrtfgetsockoptpthread_setcanceltypeunsetenvnocbreak
cbrtlgetsuboptpthread_setconcurrencyuselocalenodelay
ccosgettextpthread_setschedparamusleepnoecho
ccosfgettimeofdaypthread_setschedprioutimenonl
ccoshgetuidpthread_setspecificutimesnoqiflush
ccoshfgetutentpthread_sigmaskutmpnamenoraw
ccoshlgetutent_rpthread_testcancelvasprintfnotimeout
ccoslgetutxentptsnamevdprintfoverlay
ceilgetutxidputcverrxoverwrite
ceilfgetutxlineputc_unlockedvforkpair_content
ceillgetwputcharvfprintfpam_acct_mgmt
cexpgetwcputchar_unlockedvfscanfpam_authenticate
cexpfgetwcharputenvvfwprintfpam_chauthtok
cexplgetwdputsvfwscanfpam_close_session
cfgetispeedglobpututxlinevprintfpam_end
cfgetospeedglob64putwvscanfpam_fail_delay
cfmakerawglobfreeputwcvsnprintfpam_get_item
cfsetispeedglobfree64putwcharvsprintfpam_getenvlist
cfsetospeedgmtimepwritevsscanfpam_open_session
cfsetspeedgmtime_rpwrite64vswprintfpam_set_item
chdirgrantptqsortvswscanfpam_setcred
chmodhcreateraisevsyslogpam_start
chownhdestroyrandvwprintfpam_strerror
chroothsearchrand_rvwscanfpechochar
cimaghtonlrandomwaitpnoutrefresh
cimagfhtonsreadwait4prefresh
cimaglhypotreaddirwaitpidprintw
clearerrhypotfreaddir64warnpthread_mutexattr_getpshared
clnt_createhypotlreaddir_rwarnxpthread_mutexattr_setpshared
clnt_pcreateerroriconvreadlinkwcpcpyputp
clnt_perrnoiconv_closereadvwcpncpyputwin
clnt_perroriconv_openreallocwcrtombqiflush
clnt_spcreateerrorif_freenameindexrealpathwcscasecmpraw
clnt_sperrnoif_indextonamerecvwcscatredrawwin
clnt_sperrorif_nameindexrecvfromwcschrrefresh
clockif_nametoindexrecvmsgwcscmpreset_prog_mode
clock_getcpuclockidilogbregcompwcscollreset_shell_mode
clock_getresilogbfregerrorwcscpyresetty
clock_gettimeilogblregexecwcscspnrestartterm
clock_nanosleepimaxabsregfreewcsdupripoffline
clock_settimeimaxdivremainderwcsftimesavetty
clogindexremainderfwcslenscanw
clog10inet_addrremainderlwcsncasecmpscr_dump
clog10finet_ntoaremovewcsncatscr_init
clog10linet_ntopremquewcsncmpscr_restore
clogfinet_ptonremquowcsncpyscr_set
cloglinitgroupsremquofwcsnlenscrl
closeinitstateremquolwcsnrtombsscroll
closedirinsquerenamewcspbrkscrollok
closelogioctlrewindwcsrchrset_curterm
confstrisalnumrewinddirwcsrtombsset_term
conjisalpharindexwcsspnsetkey
conjfisasciirintwcsstrsetscrreg
conjlisattyrintfwcstodsetupterm
connectisblankrintlwcstofsigreturn
copysigniscntrlrmdirwcstoimaxslk_attr_set
copysignfisdigitroundwcstokslk_attroff
copysignlisgraphroundfwcstolslk_attron
cosislowerroundlwcstoldslk_attrset
cosfisprintsbrkwcstollslk_clear
coshispunctscalbwcstombsslk_color
coshfisspacescalbfwcstoqslk_init
coshlisupperscalblwcstoulslk_label
cosliswalnumscalblnwcstoullslk_noutrefresh
cpowiswalphascalblnfwcstoumaxslk_refresh
cpowfiswblankscalblnlwcstouqslk_restore
cpowliswcntrlscalbnwcswcsslk_set
cprojiswctypescalbnfwcswidthslk_touch
cprojfiswdigitscalbnlwcsxfrmstandend
cprojliswgraphscanfwctobstandout
crealiswlowersched_get_priority_maxwctombstart_color
crealfiswprintsched_get_priority_minwctransstrftime
crealliswpunctsched_getparamwctypesubpad
creatiswspacesched_getschedulerwcwidthsubwin
creat64iswuppersched_rr_get_intervalwmemchrsvc_getreqset
cryptiswxdigitsched_setparamwmemcmpsyncok
csinisxdigitsched_setschedulerwmemcpysystem
csinfj0sched_yieldwmemmovetermattrs
csinhj0fseed48wmemsettermname
csinhfj0lseekdirwordexptgetent
csinhlj1selectwordfreetgetflag
csinlj1fsem_closewprintftgetnum
csqrtj1lsem_destroywritetgetstr
csqrtfjnsem_getvaluewritevtgoto
csqrtljnfsem_initwscanftigetflag
ctanjnlsem_openxdr_accepted_replytigetnum
ctanfjrand48sem_postxdr_arraytigetstr
ctanhkey_decryptsessionsem_timedwaitxdr_booltimeout
ctanhfkillsem_trywaitxdr_bytestouchline
ctanhlkillpgsem_unlinkxdr_callhdrtouchwin
ctanll64asem_waitxdr_callmsgtparm
ctermidlabssemctlxdr_chartputs
ctimelchownsemgetxdr_doubletypeahead
ctime_rlcong48semopxdr_enumuncompress
cuseridldexpsendxdr_floatunctrl
daemonldexpfsendmsgxdr_freeungetch
dcgettextldexplsendtoxdr_intuntouchwin
dcngettextldivsetbufxdr_longuse_env
dgettextlfindsetbufferxdr_opaquevidattr
difftimelgammasetcontextxdr_opaque_authvidputs
dirnamelgamma_rsetegidxdr_pointervline
divlgammafsetenvxdr_referencevw_printw
dladdrlgammaf_rseteuidxdr_rejected_replyvw_scanw
dlerrorlgammalsetgidxdr_replymsgvwprintw
dlopenlgammal_rsetgrentxdr_shortvwscanw
dlsymlinksetgroupsxdr_stringwaddch
dngettextlistensethostnamexdr_u_charwaddchnstr
drand48llabssetitimerxdr_u_intwaddchstr
dremflldivsetlocalexdr_u_longwaddnstr
dremlllrintsetlogmaskxdr_u_shortwaddstr
dupllrintfsetpgidxdr_unionwattr_get
dup2llrintlsetpgrpxdr_vectorwattr_off
duplocalellroundsetpriorityxdr_voidwattr_on
ecvtllroundfsetprotoentxdr_wrapstringwattr_set
endgrentllroundlsetpwentxdrmem_createwattroff
endprotoentlocaleconvsetregidxdrrec_createwattron
endpwentlocaltimesetreuidxdrrec_eofwattrset
endserventlocaltime_rsetrlimity0wbkgd
endutentlockfsetrlimit64y0fwbkgdset
endutxentlockf64setserventy0lwborder
erand48logsetsidy1wchgat
erflog10setsockopty1fwclear
erfclog10fsetstatey1lwclrtobot
erfcflog10lsetuidynwclrtoeol
erfcllog1psetutentynfwcolor_set
erfflog1pfsetutxentynlwcursyncup
erfllog1plsetvbufaddchwdelch
errlog2shm_openaddchnstrwdeleteln
errorlog2fshm_unlinkaddchstrwechochar
errxlog2lshmataddnstrwerase
execllogbshmctladdstrwgetch
execlelogbfshmdtadler32wgetnstr
execlplogblshmgetattr_getwgetstr
execvlogfshutdownattr_offwhline
execveloginsigactionattr_onwinch
execvplogin_ttysigaddsetattr_setwinchnstr
exitloglsigaltstackattroffwinchstr
explogoutsigandsetattronwinnstr
exp2logwtmpsigdelsetattrsetwinsch
exp2flongjmpsigemptysetbaudratewinsdelln
expflrand48sigfillsetbeepwinsertln
expllrintsigholdbkgdwinsnstr
expm1lrintfsigignorebkgdsetwinsstr
expm1flrintlsiginterruptborderwinstr
expm1llroundsigisemptysetboxwmove
fabslroundfsigismembercan_change_colorwnoutrefresh
fabsflroundlsiglongjmpcbreakwprintw
fabsllsearchsignalchgatwredrawln
fchdirlseeksignificandclearwrefresh
fchmodlseek64significandfclearokwscanw
fchownmakecontextsignificandlclrtobotwscrl
fclosemallocsigorsetclrtoeolwsetscrreg
fcntlmblensigpausecolor_contentwstandend
fcvtmbrlensigpendingcolor_setwstandout
fdatasyncmbrtowcsigprocmaskcompresswsyncdown
fdimmbsinitsigqueuecompress2wsyncup
fdimfmbsnrtowcssigrelsecompressBoundwtimeout
fdimlmbsrtowcssigsetcopywinwtouchln
fdopenmbstowcssigsuspendcrc32wvline
feclearexceptmbtowcsigtimedwaitcurs_setzError
fegetenvmemccpysigwaitdef_prog_modezlibVersion
fegetexceptflagmemchr