libc.info-19 231 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446
  1. This is libc.info, produced by makeinfo version 7.3 from libc.texinfo.
  2. This is ‘The GNU C Library Reference Manual’, for version 2.43.
  3. Copyright © 1993-2026 Free Software Foundation, Inc.
  4. Permission is granted to copy, distribute and/or modify this document
  5. under the terms of the GNU Free Documentation License, Version 1.3 or
  6. any later version published by the Free Software Foundation; with the
  7. Invariant Sections being "Free Software Needs Free Documentation" and
  8. "GNU Lesser General Public License", the Front-Cover texts being "A GNU
  9. Manual", and with the Back-Cover Texts as in (a) below. A copy of the
  10. license is included in the section entitled "GNU Free Documentation
  11. License".
  12. (a) The FSF's Back-Cover Text is: "You have the freedom to copy and
  13. modify this GNU manual. Buying copies from the FSF supports it in
  14. developing GNU and promoting software freedom."
  15. INFO-DIR-SECTION Software libraries
  16. START-INFO-DIR-ENTRY
  17. * Libc: (libc). C library.
  18. END-INFO-DIR-ENTRY
  19. INFO-DIR-SECTION GNU C library functions and macros
  20. START-INFO-DIR-ENTRY
  21. * ALTWERASE: (libc)Local Modes.
  22. * ARGP_ERR_UNKNOWN: (libc)Argp Parser Functions.
  23. * ARG_MAX: (libc)General Limits.
  24. * BAUD_MAX: (libc)Line Speed.
  25. * BC_BASE_MAX: (libc)Utility Limits.
  26. * BC_DIM_MAX: (libc)Utility Limits.
  27. * BC_SCALE_MAX: (libc)Utility Limits.
  28. * BC_STRING_MAX: (libc)Utility Limits.
  29. * BRKINT: (libc)Input Modes.
  30. * BUFSIZ: (libc)Controlling Buffering.
  31. * CCTS_OFLOW: (libc)Control Modes.
  32. * CHAR_BIT: (libc)Width of Type.
  33. * CHILD_MAX: (libc)General Limits.
  34. * CIGNORE: (libc)Control Modes.
  35. * CLK_TCK: (libc)Processor Time.
  36. * CLOCAL: (libc)Control Modes.
  37. * CLOCKS_PER_SEC: (libc)CPU Time.
  38. * CLOCK_BOOTTIME: (libc)Getting the Time.
  39. * CLOCK_BOOTTIME_ALARM: (libc)Getting the Time.
  40. * CLOCK_MONOTONIC: (libc)Getting the Time.
  41. * CLOCK_MONOTONIC_COARSE: (libc)Getting the Time.
  42. * CLOCK_MONOTONIC_RAW: (libc)Getting the Time.
  43. * CLOCK_PROCESS_CPUTIME_ID: (libc)Getting the Time.
  44. * CLOCK_REALTIME: (libc)Getting the Time.
  45. * CLOCK_REALTIME_ALARM: (libc)Getting the Time.
  46. * CLOCK_REALTIME_COARSE: (libc)Getting the Time.
  47. * CLOCK_TAI: (libc)Getting the Time.
  48. * CLOCK_THREAD_CPUTIME_ID: (libc)Getting the Time.
  49. * COLL_WEIGHTS_MAX: (libc)Utility Limits.
  50. * CPU_ALLOC: (libc)CPU Affinity.
  51. * CPU_ALLOC_SIZE: (libc)CPU Affinity.
  52. * CPU_AND: (libc)CPU Affinity.
  53. * CPU_AND_S: (libc)CPU Affinity.
  54. * CPU_CLR: (libc)CPU Affinity.
  55. * CPU_CLR_S: (libc)CPU Affinity.
  56. * CPU_COUNT: (libc)CPU Affinity.
  57. * CPU_COUNT_S: (libc)CPU Affinity.
  58. * CPU_EQUAL: (libc)CPU Affinity.
  59. * CPU_EQUAL_S: (libc)CPU Affinity.
  60. * CPU_FEATURE_ACTIVE: (libc)X86.
  61. * CPU_FEATURE_PRESENT: (libc)X86.
  62. * CPU_FREE: (libc)CPU Affinity.
  63. * CPU_ISSET: (libc)CPU Affinity.
  64. * CPU_ISSET_S: (libc)CPU Affinity.
  65. * CPU_OR: (libc)CPU Affinity.
  66. * CPU_OR_S: (libc)CPU Affinity.
  67. * CPU_SET: (libc)CPU Affinity.
  68. * CPU_SETSIZE: (libc)CPU Affinity.
  69. * CPU_SET_S: (libc)CPU Affinity.
  70. * CPU_XOR: (libc)CPU Affinity.
  71. * CPU_XOR_S: (libc)CPU Affinity.
  72. * CPU_ZERO: (libc)CPU Affinity.
  73. * CPU_ZERO_S: (libc)CPU Affinity.
  74. * CREAD: (libc)Control Modes.
  75. * CRTS_IFLOW: (libc)Control Modes.
  76. * CS5: (libc)Control Modes.
  77. * CS6: (libc)Control Modes.
  78. * CS7: (libc)Control Modes.
  79. * CS8: (libc)Control Modes.
  80. * CSIZE: (libc)Control Modes.
  81. * CSTOPB: (libc)Control Modes.
  82. * DLFO_EH_SEGMENT_TYPE: (libc)Dynamic Linker Introspection.
  83. * DLFO_STRUCT_HAS_EH_COUNT: (libc)Dynamic Linker Introspection.
  84. * DLFO_STRUCT_HAS_EH_DBASE: (libc)Dynamic Linker Introspection.
  85. * DTTOIF: (libc)Directory Entries.
  86. * E2BIG: (libc)Error Codes.
  87. * EACCES: (libc)Error Codes.
  88. * EADDRINUSE: (libc)Error Codes.
  89. * EADDRNOTAVAIL: (libc)Error Codes.
  90. * EADV: (libc)Error Codes.
  91. * EAFNOSUPPORT: (libc)Error Codes.
  92. * EAGAIN: (libc)Error Codes.
  93. * EALREADY: (libc)Error Codes.
  94. * EAUTH: (libc)Error Codes.
  95. * EBACKGROUND: (libc)Error Codes.
  96. * EBADE: (libc)Error Codes.
  97. * EBADF: (libc)Error Codes.
  98. * EBADFD: (libc)Error Codes.
  99. * EBADMSG: (libc)Error Codes.
  100. * EBADR: (libc)Error Codes.
  101. * EBADRPC: (libc)Error Codes.
  102. * EBADRQC: (libc)Error Codes.
  103. * EBADSLT: (libc)Error Codes.
  104. * EBFONT: (libc)Error Codes.
  105. * EBUSY: (libc)Error Codes.
  106. * ECANCELED: (libc)Error Codes.
  107. * ECHILD: (libc)Error Codes.
  108. * ECHO: (libc)Local Modes.
  109. * ECHOCTL: (libc)Local Modes.
  110. * ECHOE: (libc)Local Modes.
  111. * ECHOK: (libc)Local Modes.
  112. * ECHOKE: (libc)Local Modes.
  113. * ECHONL: (libc)Local Modes.
  114. * ECHOPRT: (libc)Local Modes.
  115. * ECHRNG: (libc)Error Codes.
  116. * ECOMM: (libc)Error Codes.
  117. * ECONNABORTED: (libc)Error Codes.
  118. * ECONNREFUSED: (libc)Error Codes.
  119. * ECONNRESET: (libc)Error Codes.
  120. * ED: (libc)Error Codes.
  121. * EDEADLK: (libc)Error Codes.
  122. * EDEADLOCK: (libc)Error Codes.
  123. * EDESTADDRREQ: (libc)Error Codes.
  124. * EDIED: (libc)Error Codes.
  125. * EDOM: (libc)Error Codes.
  126. * EDOTDOT: (libc)Error Codes.
  127. * EDQUOT: (libc)Error Codes.
  128. * EEXIST: (libc)Error Codes.
  129. * EFAULT: (libc)Error Codes.
  130. * EFBIG: (libc)Error Codes.
  131. * EFTYPE: (libc)Error Codes.
  132. * EGRATUITOUS: (libc)Error Codes.
  133. * EGREGIOUS: (libc)Error Codes.
  134. * EHOSTDOWN: (libc)Error Codes.
  135. * EHOSTUNREACH: (libc)Error Codes.
  136. * EHWPOISON: (libc)Error Codes.
  137. * EIDRM: (libc)Error Codes.
  138. * EIEIO: (libc)Error Codes.
  139. * EILSEQ: (libc)Error Codes.
  140. * EINPROGRESS: (libc)Error Codes.
  141. * EINTR: (libc)Error Codes.
  142. * EINVAL: (libc)Error Codes.
  143. * EIO: (libc)Error Codes.
  144. * EISCONN: (libc)Error Codes.
  145. * EISDIR: (libc)Error Codes.
  146. * EISNAM: (libc)Error Codes.
  147. * EKEYEXPIRED: (libc)Error Codes.
  148. * EKEYREJECTED: (libc)Error Codes.
  149. * EKEYREVOKED: (libc)Error Codes.
  150. * EL2HLT: (libc)Error Codes.
  151. * EL2NSYNC: (libc)Error Codes.
  152. * EL3HLT: (libc)Error Codes.
  153. * EL3RST: (libc)Error Codes.
  154. * ELIBACC: (libc)Error Codes.
  155. * ELIBBAD: (libc)Error Codes.
  156. * ELIBEXEC: (libc)Error Codes.
  157. * ELIBMAX: (libc)Error Codes.
  158. * ELIBSCN: (libc)Error Codes.
  159. * ELNRNG: (libc)Error Codes.
  160. * ELOOP: (libc)Error Codes.
  161. * EMEDIUMTYPE: (libc)Error Codes.
  162. * EMFILE: (libc)Error Codes.
  163. * EMLINK: (libc)Error Codes.
  164. * EMSGSIZE: (libc)Error Codes.
  165. * EMULTIHOP: (libc)Error Codes.
  166. * ENAMETOOLONG: (libc)Error Codes.
  167. * ENAVAIL: (libc)Error Codes.
  168. * ENEEDAUTH: (libc)Error Codes.
  169. * ENETDOWN: (libc)Error Codes.
  170. * ENETRESET: (libc)Error Codes.
  171. * ENETUNREACH: (libc)Error Codes.
  172. * ENFILE: (libc)Error Codes.
  173. * ENOANO: (libc)Error Codes.
  174. * ENOBUFS: (libc)Error Codes.
  175. * ENOCSI: (libc)Error Codes.
  176. * ENODATA: (libc)Error Codes.
  177. * ENODEV: (libc)Error Codes.
  178. * ENOENT: (libc)Error Codes.
  179. * ENOEXEC: (libc)Error Codes.
  180. * ENOKEY: (libc)Error Codes.
  181. * ENOLCK: (libc)Error Codes.
  182. * ENOLINK: (libc)Error Codes.
  183. * ENOMEDIUM: (libc)Error Codes.
  184. * ENOMEM: (libc)Error Codes.
  185. * ENOMSG: (libc)Error Codes.
  186. * ENONET: (libc)Error Codes.
  187. * ENOPKG: (libc)Error Codes.
  188. * ENOPROTOOPT: (libc)Error Codes.
  189. * ENOSPC: (libc)Error Codes.
  190. * ENOSR: (libc)Error Codes.
  191. * ENOSTR: (libc)Error Codes.
  192. * ENOSYS: (libc)Error Codes.
  193. * ENOTBLK: (libc)Error Codes.
  194. * ENOTCONN: (libc)Error Codes.
  195. * ENOTDIR: (libc)Error Codes.
  196. * ENOTEMPTY: (libc)Error Codes.
  197. * ENOTNAM: (libc)Error Codes.
  198. * ENOTRECOVERABLE: (libc)Error Codes.
  199. * ENOTSOCK: (libc)Error Codes.
  200. * ENOTSUP: (libc)Error Codes.
  201. * ENOTTY: (libc)Error Codes.
  202. * ENOTUNIQ: (libc)Error Codes.
  203. * ENXIO: (libc)Error Codes.
  204. * EOF: (libc)EOF and Errors.
  205. * EOPNOTSUPP: (libc)Error Codes.
  206. * EOVERFLOW: (libc)Error Codes.
  207. * EOWNERDEAD: (libc)Error Codes.
  208. * EPERM: (libc)Error Codes.
  209. * EPFNOSUPPORT: (libc)Error Codes.
  210. * EPIPE: (libc)Error Codes.
  211. * EPROCLIM: (libc)Error Codes.
  212. * EPROCUNAVAIL: (libc)Error Codes.
  213. * EPROGMISMATCH: (libc)Error Codes.
  214. * EPROGUNAVAIL: (libc)Error Codes.
  215. * EPROTO: (libc)Error Codes.
  216. * EPROTONOSUPPORT: (libc)Error Codes.
  217. * EPROTOTYPE: (libc)Error Codes.
  218. * EQUIV_CLASS_MAX: (libc)Utility Limits.
  219. * ERANGE: (libc)Error Codes.
  220. * EREMCHG: (libc)Error Codes.
  221. * EREMOTE: (libc)Error Codes.
  222. * EREMOTEIO: (libc)Error Codes.
  223. * ERESTART: (libc)Error Codes.
  224. * ERFKILL: (libc)Error Codes.
  225. * EROFS: (libc)Error Codes.
  226. * ERPCMISMATCH: (libc)Error Codes.
  227. * ESHUTDOWN: (libc)Error Codes.
  228. * ESOCKTNOSUPPORT: (libc)Error Codes.
  229. * ESPIPE: (libc)Error Codes.
  230. * ESRCH: (libc)Error Codes.
  231. * ESRMNT: (libc)Error Codes.
  232. * ESTALE: (libc)Error Codes.
  233. * ESTRPIPE: (libc)Error Codes.
  234. * ETIME: (libc)Error Codes.
  235. * ETIMEDOUT: (libc)Error Codes.
  236. * ETOOMANYREFS: (libc)Error Codes.
  237. * ETXTBSY: (libc)Error Codes.
  238. * EUCLEAN: (libc)Error Codes.
  239. * EUNATCH: (libc)Error Codes.
  240. * EUSERS: (libc)Error Codes.
  241. * EWOULDBLOCK: (libc)Error Codes.
  242. * EXDEV: (libc)Error Codes.
  243. * EXFULL: (libc)Error Codes.
  244. * EXIT_FAILURE: (libc)Exit Status.
  245. * EXIT_SUCCESS: (libc)Exit Status.
  246. * EXPR_NEST_MAX: (libc)Utility Limits.
  247. * FD_CLOEXEC: (libc)Descriptor Flags.
  248. * FD_CLR: (libc)Waiting for I/O.
  249. * FD_ISSET: (libc)Waiting for I/O.
  250. * FD_SET: (libc)Waiting for I/O.
  251. * FD_SETSIZE: (libc)Waiting for I/O.
  252. * FD_ZERO: (libc)Waiting for I/O.
  253. * FE_SNANS_ALWAYS_SIGNAL: (libc)Infinity and NaN.
  254. * FILENAME_MAX: (libc)Limits for Files.
  255. * FLUSHO: (libc)Local Modes.
  256. * FOPEN_MAX: (libc)Opening Streams.
  257. * FP_ILOGB0: (libc)Exponents and Logarithms.
  258. * FP_ILOGBNAN: (libc)Exponents and Logarithms.
  259. * FP_LLOGB0: (libc)Exponents and Logarithms.
  260. * FP_LLOGBNAN: (libc)Exponents and Logarithms.
  261. * F_DUPFD: (libc)Duplicating Descriptors.
  262. * F_GETFD: (libc)Descriptor Flags.
  263. * F_GETFL: (libc)Getting File Status Flags.
  264. * F_GETLK: (libc)File Locks.
  265. * F_GETOWN: (libc)Interrupt Input.
  266. * F_OFD_GETLK: (libc)Open File Description Locks.
  267. * F_OFD_SETLK: (libc)Open File Description Locks.
  268. * F_OFD_SETLKW: (libc)Open File Description Locks.
  269. * F_OK: (libc)Testing File Access.
  270. * F_SETFD: (libc)Descriptor Flags.
  271. * F_SETFL: (libc)Getting File Status Flags.
  272. * F_SETLK: (libc)File Locks.
  273. * F_SETLKW: (libc)File Locks.
  274. * F_SETOWN: (libc)Interrupt Input.
  275. * HUGE_VAL: (libc)Math Error Reporting.
  276. * HUGE_VALF: (libc)Math Error Reporting.
  277. * HUGE_VALL: (libc)Math Error Reporting.
  278. * HUGE_VAL_FN: (libc)Math Error Reporting.
  279. * HUGE_VAL_FNx: (libc)Math Error Reporting.
  280. * HUPCL: (libc)Control Modes.
  281. * I: (libc)Complex Numbers.
  282. * ICANON: (libc)Local Modes.
  283. * ICRNL: (libc)Input Modes.
  284. * IEXTEN: (libc)Local Modes.
  285. * IFNAMSIZ: (libc)Interface Naming.
  286. * IFTODT: (libc)Directory Entries.
  287. * IGNBRK: (libc)Input Modes.
  288. * IGNCR: (libc)Input Modes.
  289. * IGNPAR: (libc)Input Modes.
  290. * IMAXBEL: (libc)Input Modes.
  291. * INADDR_ANY: (libc)Host Address Data Type.
  292. * INADDR_BROADCAST: (libc)Host Address Data Type.
  293. * INADDR_LOOPBACK: (libc)Host Address Data Type.
  294. * INADDR_NONE: (libc)Host Address Data Type.
  295. * INFINITY: (libc)Infinity and NaN.
  296. * INLCR: (libc)Input Modes.
  297. * INPCK: (libc)Input Modes.
  298. * IPPORT_RESERVED: (libc)Ports.
  299. * IPPORT_USERRESERVED: (libc)Ports.
  300. * ISIG: (libc)Local Modes.
  301. * ISTRIP: (libc)Input Modes.
  302. * IXANY: (libc)Input Modes.
  303. * IXOFF: (libc)Input Modes.
  304. * IXON: (libc)Input Modes.
  305. * LINE_MAX: (libc)Utility Limits.
  306. * LINK_MAX: (libc)Limits for Files.
  307. * L_ctermid: (libc)Identifying the Terminal.
  308. * L_cuserid: (libc)Who Logged In.
  309. * L_tmpnam: (libc)Temporary Files.
  310. * MAXNAMLEN: (libc)Limits for Files.
  311. * MAXSYMLINKS: (libc)Symbolic Links.
  312. * MAX_CANON: (libc)Limits for Files.
  313. * MAX_INPUT: (libc)Limits for Files.
  314. * MB_CUR_MAX: (libc)Selecting the Conversion.
  315. * MB_LEN_MAX: (libc)Selecting the Conversion.
  316. * MDMBUF: (libc)Control Modes.
  317. * MSG_DONTROUTE: (libc)Socket Data Options.
  318. * MSG_OOB: (libc)Socket Data Options.
  319. * MSG_PEEK: (libc)Socket Data Options.
  320. * NAME_MAX: (libc)Limits for Files.
  321. * NAN: (libc)Infinity and NaN.
  322. * NCCS: (libc)Mode Data Types.
  323. * NGROUPS_MAX: (libc)General Limits.
  324. * NOFLSH: (libc)Local Modes.
  325. * NOKERNINFO: (libc)Local Modes.
  326. * NSIG: (libc)Standard Signals.
  327. * NULL: (libc)Null Pointer Constant.
  328. * ONLCR: (libc)Output Modes.
  329. * ONOEOT: (libc)Output Modes.
  330. * OPEN_MAX: (libc)General Limits.
  331. * OPOST: (libc)Output Modes.
  332. * OXTABS: (libc)Output Modes.
  333. * O_ACCMODE: (libc)Access Modes.
  334. * O_APPEND: (libc)Operating Modes.
  335. * O_ASYNC: (libc)Operating Modes.
  336. * O_CREAT: (libc)Open-time Flags.
  337. * O_DIRECTORY: (libc)Open-time Flags.
  338. * O_EXCL: (libc)Open-time Flags.
  339. * O_EXEC: (libc)Access Modes.
  340. * O_EXLOCK: (libc)Open-time Flags.
  341. * O_FSYNC: (libc)Operating Modes.
  342. * O_IGNORE_CTTY: (libc)Open-time Flags.
  343. * O_NDELAY: (libc)Operating Modes.
  344. * O_NOATIME: (libc)Operating Modes.
  345. * O_NOCTTY: (libc)Open-time Flags.
  346. * O_NOFOLLOW: (libc)Open-time Flags.
  347. * O_NOLINK: (libc)Open-time Flags.
  348. * O_NONBLOCK: (libc)Open-time Flags.
  349. * O_NONBLOCK: (libc)Operating Modes.
  350. * O_NOTRANS: (libc)Open-time Flags.
  351. * O_PATH: (libc)Access Modes.
  352. * O_RDONLY: (libc)Access Modes.
  353. * O_RDWR: (libc)Access Modes.
  354. * O_READ: (libc)Access Modes.
  355. * O_SHLOCK: (libc)Open-time Flags.
  356. * O_SYNC: (libc)Operating Modes.
  357. * O_TMPFILE: (libc)Open-time Flags.
  358. * O_TRUNC: (libc)Open-time Flags.
  359. * O_WRITE: (libc)Access Modes.
  360. * O_WRONLY: (libc)Access Modes.
  361. * PARENB: (libc)Control Modes.
  362. * PARMRK: (libc)Input Modes.
  363. * PARODD: (libc)Control Modes.
  364. * PATH_MAX: (libc)Limits for Files.
  365. * PA_FLAG_MASK: (libc)Parsing a Template String.
  366. * PENDIN: (libc)Local Modes.
  367. * PF_FILE: (libc)Local Namespace Details.
  368. * PF_INET6: (libc)Internet Namespace.
  369. * PF_INET: (libc)Internet Namespace.
  370. * PF_LOCAL: (libc)Local Namespace Details.
  371. * PF_UNIX: (libc)Local Namespace Details.
  372. * PIPE_BUF: (libc)Limits for Files.
  373. * PTHREAD_ATTR_NO_SIGMASK_NP: (libc)Initial Thread Signal Mask.
  374. * P_tmpdir: (libc)Temporary Files.
  375. * RAND_MAX: (libc)ISO Random.
  376. * RE_DUP_MAX: (libc)General Limits.
  377. * RLIM_INFINITY: (libc)Limits on Resources.
  378. * RSEQ_SIG: (libc)Restartable Sequences.
  379. * R_OK: (libc)Testing File Access.
  380. * SA_NOCLDSTOP: (libc)Flags for Sigaction.
  381. * SA_NOCLDWAIT: (libc)Flags for Sigaction.
  382. * SA_NODEFER: (libc)Flags for Sigaction.
  383. * SA_ONSTACK: (libc)Flags for Sigaction.
  384. * SA_RESETHAND: (libc)Flags for Sigaction.
  385. * SA_RESTART: (libc)Flags for Sigaction.
  386. * SA_SIGINFO: (libc)Flags for Sigaction.
  387. * SEEK_CUR: (libc)File Positioning.
  388. * SEEK_END: (libc)File Positioning.
  389. * SEEK_SET: (libc)File Positioning.
  390. * SIGABRT: (libc)Program Error Signals.
  391. * SIGALRM: (libc)Alarm Signals.
  392. * SIGBUS: (libc)Program Error Signals.
  393. * SIGCHLD: (libc)Job Control Signals.
  394. * SIGCLD: (libc)Job Control Signals.
  395. * SIGCONT: (libc)Job Control Signals.
  396. * SIGEMT: (libc)Program Error Signals.
  397. * SIGFPE: (libc)Program Error Signals.
  398. * SIGHUP: (libc)Termination Signals.
  399. * SIGILL: (libc)Program Error Signals.
  400. * SIGINFO: (libc)Miscellaneous Signals.
  401. * SIGINT: (libc)Termination Signals.
  402. * SIGIO: (libc)Asynchronous I/O Signals.
  403. * SIGIOT: (libc)Program Error Signals.
  404. * SIGKILL: (libc)Termination Signals.
  405. * SIGLOST: (libc)Operation Error Signals.
  406. * SIGPIPE: (libc)Operation Error Signals.
  407. * SIGPOLL: (libc)Asynchronous I/O Signals.
  408. * SIGPROF: (libc)Alarm Signals.
  409. * SIGPWR: (libc)Miscellaneous Signals.
  410. * SIGQUIT: (libc)Termination Signals.
  411. * SIGSEGV: (libc)Program Error Signals.
  412. * SIGSTKFLT: (libc)Program Error Signals.
  413. * SIGSTOP: (libc)Job Control Signals.
  414. * SIGSYS: (libc)Program Error Signals.
  415. * SIGTERM: (libc)Termination Signals.
  416. * SIGTRAP: (libc)Program Error Signals.
  417. * SIGTSTP: (libc)Job Control Signals.
  418. * SIGTTIN: (libc)Job Control Signals.
  419. * SIGTTOU: (libc)Job Control Signals.
  420. * SIGURG: (libc)Asynchronous I/O Signals.
  421. * SIGUSR1: (libc)Miscellaneous Signals.
  422. * SIGUSR2: (libc)Miscellaneous Signals.
  423. * SIGVTALRM: (libc)Alarm Signals.
  424. * SIGWINCH: (libc)Miscellaneous Signals.
  425. * SIGXCPU: (libc)Operation Error Signals.
  426. * SIGXFSZ: (libc)Operation Error Signals.
  427. * SIG_ERR: (libc)Basic Signal Handling.
  428. * SNAN: (libc)Infinity and NaN.
  429. * SNANF: (libc)Infinity and NaN.
  430. * SNANFN: (libc)Infinity and NaN.
  431. * SNANFNx: (libc)Infinity and NaN.
  432. * SNANL: (libc)Infinity and NaN.
  433. * SOCK_DGRAM: (libc)Communication Styles.
  434. * SOCK_RAW: (libc)Communication Styles.
  435. * SOCK_RDM: (libc)Communication Styles.
  436. * SOCK_SEQPACKET: (libc)Communication Styles.
  437. * SOCK_STREAM: (libc)Communication Styles.
  438. * SOL_SOCKET: (libc)Socket-Level Options.
  439. * SPEED_MAX: (libc)Line Speed.
  440. * SSIZE_MAX: (libc)General Limits.
  441. * STREAM_MAX: (libc)General Limits.
  442. * SUN_LEN: (libc)Local Namespace Details.
  443. * S_IFMT: (libc)Testing File Type.
  444. * S_ISBLK: (libc)Testing File Type.
  445. * S_ISCHR: (libc)Testing File Type.
  446. * S_ISDIR: (libc)Testing File Type.
  447. * S_ISFIFO: (libc)Testing File Type.
  448. * S_ISLNK: (libc)Testing File Type.
  449. * S_ISREG: (libc)Testing File Type.
  450. * S_ISSOCK: (libc)Testing File Type.
  451. * S_TYPEISMQ: (libc)Testing File Type.
  452. * S_TYPEISSEM: (libc)Testing File Type.
  453. * S_TYPEISSHM: (libc)Testing File Type.
  454. * TIME_UTC: (libc)Getting the Time.
  455. * TMP_MAX: (libc)Temporary Files.
  456. * TOSTOP: (libc)Local Modes.
  457. * TZNAME_MAX: (libc)General Limits.
  458. * VDISCARD: (libc)Other Special.
  459. * VDSUSP: (libc)Signal Characters.
  460. * VEOF: (libc)Editing Characters.
  461. * VEOL2: (libc)Editing Characters.
  462. * VEOL: (libc)Editing Characters.
  463. * VERASE: (libc)Editing Characters.
  464. * VINTR: (libc)Signal Characters.
  465. * VKILL: (libc)Editing Characters.
  466. * VLNEXT: (libc)Other Special.
  467. * VMIN: (libc)Noncanonical Input.
  468. * VQUIT: (libc)Signal Characters.
  469. * VREPRINT: (libc)Editing Characters.
  470. * VSTART: (libc)Start/Stop Characters.
  471. * VSTATUS: (libc)Other Special.
  472. * VSTOP: (libc)Start/Stop Characters.
  473. * VSUSP: (libc)Signal Characters.
  474. * VTIME: (libc)Noncanonical Input.
  475. * VWERASE: (libc)Editing Characters.
  476. * WCHAR_MAX: (libc)Extended Char Intro.
  477. * WCHAR_MIN: (libc)Extended Char Intro.
  478. * WCOREDUMP: (libc)Process Completion Status.
  479. * WEOF: (libc)EOF and Errors.
  480. * WEOF: (libc)Extended Char Intro.
  481. * WEXITSTATUS: (libc)Process Completion Status.
  482. * WIFEXITED: (libc)Process Completion Status.
  483. * WIFSIGNALED: (libc)Process Completion Status.
  484. * WIFSTOPPED: (libc)Process Completion Status.
  485. * WSTOPSIG: (libc)Process Completion Status.
  486. * WTERMSIG: (libc)Process Completion Status.
  487. * W_OK: (libc)Testing File Access.
  488. * X_OK: (libc)Testing File Access.
  489. * _Complex_I: (libc)Complex Numbers.
  490. * _Exit: (libc)Termination Internals.
  491. * _Fork: (libc)Creating a Process.
  492. * _IOFBF: (libc)Controlling Buffering.
  493. * _IOLBF: (libc)Controlling Buffering.
  494. * _IONBF: (libc)Controlling Buffering.
  495. * _Imaginary_I: (libc)Complex Numbers.
  496. * _PATH_UTMP: (libc)Manipulating the Database.
  497. * _PATH_WTMP: (libc)Manipulating the Database.
  498. * _POSIX2_C_DEV: (libc)System Options.
  499. * _POSIX2_C_VERSION: (libc)Version Supported.
  500. * _POSIX2_FORT_DEV: (libc)System Options.
  501. * _POSIX2_FORT_RUN: (libc)System Options.
  502. * _POSIX2_LOCALEDEF: (libc)System Options.
  503. * _POSIX2_SW_DEV: (libc)System Options.
  504. * _POSIX_CHOWN_RESTRICTED: (libc)Options for Files.
  505. * _POSIX_JOB_CONTROL: (libc)System Options.
  506. * _POSIX_NO_TRUNC: (libc)Options for Files.
  507. * _POSIX_SAVED_IDS: (libc)System Options.
  508. * _POSIX_VDISABLE: (libc)Options for Files.
  509. * _POSIX_VERSION: (libc)Version Supported.
  510. * __fbufsize: (libc)Controlling Buffering.
  511. * __flbf: (libc)Controlling Buffering.
  512. * __fpending: (libc)Controlling Buffering.
  513. * __fpurge: (libc)Flushing Buffers.
  514. * __freadable: (libc)Opening Streams.
  515. * __freading: (libc)Opening Streams.
  516. * __fsetlocking: (libc)Streams and Threads.
  517. * __fwritable: (libc)Opening Streams.
  518. * __fwriting: (libc)Opening Streams.
  519. * __gconv_end_fct: (libc)glibc iconv Implementation.
  520. * __gconv_fct: (libc)glibc iconv Implementation.
  521. * __gconv_init_fct: (libc)glibc iconv Implementation.
  522. * __ppc_get_timebase: (libc)PowerPC.
  523. * __ppc_get_timebase_freq: (libc)PowerPC.
  524. * __ppc_mdoio: (libc)PowerPC.
  525. * __ppc_mdoom: (libc)PowerPC.
  526. * __ppc_set_ppr_low: (libc)PowerPC.
  527. * __ppc_set_ppr_med: (libc)PowerPC.
  528. * __ppc_set_ppr_med_high: (libc)PowerPC.
  529. * __ppc_set_ppr_med_low: (libc)PowerPC.
  530. * __ppc_set_ppr_very_low: (libc)PowerPC.
  531. * __ppc_yield: (libc)PowerPC.
  532. * __riscv_flush_icache: (libc)RISC-V.
  533. * __va_copy: (libc)Argument Macros.
  534. * __x86_get_cpuid_feature_leaf: (libc)X86.
  535. * _dl_find_object: (libc)Dynamic Linker Introspection.
  536. * _exit: (libc)Termination Internals.
  537. * _flushlbf: (libc)Flushing Buffers.
  538. * _tolower: (libc)Case Conversion.
  539. * _toupper: (libc)Case Conversion.
  540. * a64l: (libc)Encode Binary Data.
  541. * abort: (libc)Aborting a Program.
  542. * abs: (libc)Absolute Value.
  543. * accept: (libc)Accepting Connections.
  544. * access: (libc)Testing File Access.
  545. * acos: (libc)Inverse Trig Functions.
  546. * acosf: (libc)Inverse Trig Functions.
  547. * acosfN: (libc)Inverse Trig Functions.
  548. * acosfNx: (libc)Inverse Trig Functions.
  549. * acosh: (libc)Hyperbolic Functions.
  550. * acoshf: (libc)Hyperbolic Functions.
  551. * acoshfN: (libc)Hyperbolic Functions.
  552. * acoshfNx: (libc)Hyperbolic Functions.
  553. * acoshl: (libc)Hyperbolic Functions.
  554. * acosl: (libc)Inverse Trig Functions.
  555. * acospi: (libc)Inverse Trig Functions.
  556. * acospif: (libc)Inverse Trig Functions.
  557. * acospifN: (libc)Inverse Trig Functions.
  558. * acospifNx: (libc)Inverse Trig Functions.
  559. * acospil: (libc)Inverse Trig Functions.
  560. * addmntent: (libc)mtab.
  561. * addseverity: (libc)Adding Severity Classes.
  562. * adjtime: (libc)Setting and Adjusting the Time.
  563. * adjtimex: (libc)Setting and Adjusting the Time.
  564. * aio_cancel64: (libc)Cancel AIO Operations.
  565. * aio_cancel: (libc)Cancel AIO Operations.
  566. * aio_error64: (libc)Status of AIO Operations.
  567. * aio_error: (libc)Status of AIO Operations.
  568. * aio_fsync64: (libc)Synchronizing AIO Operations.
  569. * aio_fsync: (libc)Synchronizing AIO Operations.
  570. * aio_init: (libc)Configuration of AIO.
  571. * aio_read64: (libc)Asynchronous Reads/Writes.
  572. * aio_read: (libc)Asynchronous Reads/Writes.
  573. * aio_return64: (libc)Status of AIO Operations.
  574. * aio_return: (libc)Status of AIO Operations.
  575. * aio_suspend64: (libc)Synchronizing AIO Operations.
  576. * aio_suspend: (libc)Synchronizing AIO Operations.
  577. * aio_write64: (libc)Asynchronous Reads/Writes.
  578. * aio_write: (libc)Asynchronous Reads/Writes.
  579. * alarm: (libc)Setting an Alarm.
  580. * aligned_alloc: (libc)Aligned Memory Blocks.
  581. * alloca: (libc)Variable Size Automatic.
  582. * alphasort64: (libc)Scanning Directory Content.
  583. * alphasort: (libc)Scanning Directory Content.
  584. * arc4random: (libc)High Quality Random.
  585. * arc4random_buf: (libc)High Quality Random.
  586. * arc4random_uniform: (libc)High Quality Random.
  587. * argp_error: (libc)Argp Helper Functions.
  588. * argp_failure: (libc)Argp Helper Functions.
  589. * argp_help: (libc)Argp Help.
  590. * argp_parse: (libc)Argp.
  591. * argp_state_help: (libc)Argp Helper Functions.
  592. * argp_usage: (libc)Argp Helper Functions.
  593. * argz_add: (libc)Argz Functions.
  594. * argz_add_sep: (libc)Argz Functions.
  595. * argz_append: (libc)Argz Functions.
  596. * argz_count: (libc)Argz Functions.
  597. * argz_create: (libc)Argz Functions.
  598. * argz_create_sep: (libc)Argz Functions.
  599. * argz_delete: (libc)Argz Functions.
  600. * argz_extract: (libc)Argz Functions.
  601. * argz_insert: (libc)Argz Functions.
  602. * argz_next: (libc)Argz Functions.
  603. * argz_replace: (libc)Argz Functions.
  604. * argz_stringify: (libc)Argz Functions.
  605. * asctime: (libc)Formatting Calendar Time.
  606. * asctime_r: (libc)Formatting Calendar Time.
  607. * asin: (libc)Inverse Trig Functions.
  608. * asinf: (libc)Inverse Trig Functions.
  609. * asinfN: (libc)Inverse Trig Functions.
  610. * asinfNx: (libc)Inverse Trig Functions.
  611. * asinh: (libc)Hyperbolic Functions.
  612. * asinhf: (libc)Hyperbolic Functions.
  613. * asinhfN: (libc)Hyperbolic Functions.
  614. * asinhfNx: (libc)Hyperbolic Functions.
  615. * asinhl: (libc)Hyperbolic Functions.
  616. * asinl: (libc)Inverse Trig Functions.
  617. * asinpi: (libc)Inverse Trig Functions.
  618. * asinpif: (libc)Inverse Trig Functions.
  619. * asinpifN: (libc)Inverse Trig Functions.
  620. * asinpifNx: (libc)Inverse Trig Functions.
  621. * asinpil: (libc)Inverse Trig Functions.
  622. * asprintf: (libc)Dynamic Output.
  623. * assert: (libc)Consistency Checking.
  624. * assert_perror: (libc)Consistency Checking.
  625. * atan2: (libc)Inverse Trig Functions.
  626. * atan2f: (libc)Inverse Trig Functions.
  627. * atan2fN: (libc)Inverse Trig Functions.
  628. * atan2fNx: (libc)Inverse Trig Functions.
  629. * atan2l: (libc)Inverse Trig Functions.
  630. * atan2pi: (libc)Inverse Trig Functions.
  631. * atan2pif: (libc)Inverse Trig Functions.
  632. * atan2pifN: (libc)Inverse Trig Functions.
  633. * atan2pifNx: (libc)Inverse Trig Functions.
  634. * atan2pil: (libc)Inverse Trig Functions.
  635. * atan: (libc)Inverse Trig Functions.
  636. * atanf: (libc)Inverse Trig Functions.
  637. * atanfN: (libc)Inverse Trig Functions.
  638. * atanfNx: (libc)Inverse Trig Functions.
  639. * atanh: (libc)Hyperbolic Functions.
  640. * atanhf: (libc)Hyperbolic Functions.
  641. * atanhfN: (libc)Hyperbolic Functions.
  642. * atanhfNx: (libc)Hyperbolic Functions.
  643. * atanhl: (libc)Hyperbolic Functions.
  644. * atanl: (libc)Inverse Trig Functions.
  645. * atanpi: (libc)Inverse Trig Functions.
  646. * atanpif: (libc)Inverse Trig Functions.
  647. * atanpifN: (libc)Inverse Trig Functions.
  648. * atanpifNx: (libc)Inverse Trig Functions.
  649. * atanpil: (libc)Inverse Trig Functions.
  650. * atexit: (libc)Cleanups on Exit.
  651. * atof: (libc)Parsing of Floats.
  652. * atoi: (libc)Parsing of Integers.
  653. * atol: (libc)Parsing of Integers.
  654. * atoll: (libc)Parsing of Integers.
  655. * backtrace: (libc)Backtraces.
  656. * backtrace_symbols: (libc)Backtraces.
  657. * backtrace_symbols_fd: (libc)Backtraces.
  658. * basename: (libc)Finding Tokens in a String.
  659. * basename: (libc)Finding Tokens in a String.
  660. * bcmp: (libc)String/Array Comparison.
  661. * bcopy: (libc)Copying Strings and Arrays.
  662. * bind: (libc)Setting Address.
  663. * bind_textdomain_codeset: (libc)Charset conversion in gettext.
  664. * bindtextdomain: (libc)Locating gettext catalog.
  665. * brk: (libc)Resizing the Data Segment.
  666. * bsearch: (libc)Array Search Function.
  667. * btowc: (libc)Converting a Character.
  668. * bzero: (libc)Copying Strings and Arrays.
  669. * cabs: (libc)Absolute Value.
  670. * cabsf: (libc)Absolute Value.
  671. * cabsfN: (libc)Absolute Value.
  672. * cabsfNx: (libc)Absolute Value.
  673. * cabsl: (libc)Absolute Value.
  674. * cacos: (libc)Inverse Trig Functions.
  675. * cacosf: (libc)Inverse Trig Functions.
  676. * cacosfN: (libc)Inverse Trig Functions.
  677. * cacosfNx: (libc)Inverse Trig Functions.
  678. * cacosh: (libc)Hyperbolic Functions.
  679. * cacoshf: (libc)Hyperbolic Functions.
  680. * cacoshfN: (libc)Hyperbolic Functions.
  681. * cacoshfNx: (libc)Hyperbolic Functions.
  682. * cacoshl: (libc)Hyperbolic Functions.
  683. * cacosl: (libc)Inverse Trig Functions.
  684. * call_once: (libc)Call Once.
  685. * calloc: (libc)Allocating Cleared Space.
  686. * canonicalize: (libc)FP Bit Twiddling.
  687. * canonicalize_file_name: (libc)Symbolic Links.
  688. * canonicalizef: (libc)FP Bit Twiddling.
  689. * canonicalizefN: (libc)FP Bit Twiddling.
  690. * canonicalizefNx: (libc)FP Bit Twiddling.
  691. * canonicalizel: (libc)FP Bit Twiddling.
  692. * carg: (libc)Operations on Complex.
  693. * cargf: (libc)Operations on Complex.
  694. * cargfN: (libc)Operations on Complex.
  695. * cargfNx: (libc)Operations on Complex.
  696. * cargl: (libc)Operations on Complex.
  697. * casin: (libc)Inverse Trig Functions.
  698. * casinf: (libc)Inverse Trig Functions.
  699. * casinfN: (libc)Inverse Trig Functions.
  700. * casinfNx: (libc)Inverse Trig Functions.
  701. * casinh: (libc)Hyperbolic Functions.
  702. * casinhf: (libc)Hyperbolic Functions.
  703. * casinhfN: (libc)Hyperbolic Functions.
  704. * casinhfNx: (libc)Hyperbolic Functions.
  705. * casinhl: (libc)Hyperbolic Functions.
  706. * casinl: (libc)Inverse Trig Functions.
  707. * catan: (libc)Inverse Trig Functions.
  708. * catanf: (libc)Inverse Trig Functions.
  709. * catanfN: (libc)Inverse Trig Functions.
  710. * catanfNx: (libc)Inverse Trig Functions.
  711. * catanh: (libc)Hyperbolic Functions.
  712. * catanhf: (libc)Hyperbolic Functions.
  713. * catanhfN: (libc)Hyperbolic Functions.
  714. * catanhfNx: (libc)Hyperbolic Functions.
  715. * catanhl: (libc)Hyperbolic Functions.
  716. * catanl: (libc)Inverse Trig Functions.
  717. * catclose: (libc)The catgets Functions.
  718. * catgets: (libc)The catgets Functions.
  719. * catopen: (libc)The catgets Functions.
  720. * cbrt: (libc)Exponents and Logarithms.
  721. * cbrtf: (libc)Exponents and Logarithms.
  722. * cbrtfN: (libc)Exponents and Logarithms.
  723. * cbrtfNx: (libc)Exponents and Logarithms.
  724. * cbrtl: (libc)Exponents and Logarithms.
  725. * ccos: (libc)Trig Functions.
  726. * ccosf: (libc)Trig Functions.
  727. * ccosfN: (libc)Trig Functions.
  728. * ccosfNx: (libc)Trig Functions.
  729. * ccosh: (libc)Hyperbolic Functions.
  730. * ccoshf: (libc)Hyperbolic Functions.
  731. * ccoshfN: (libc)Hyperbolic Functions.
  732. * ccoshfNx: (libc)Hyperbolic Functions.
  733. * ccoshl: (libc)Hyperbolic Functions.
  734. * ccosl: (libc)Trig Functions.
  735. * ceil: (libc)Rounding Functions.
  736. * ceilf: (libc)Rounding Functions.
  737. * ceilfN: (libc)Rounding Functions.
  738. * ceilfNx: (libc)Rounding Functions.
  739. * ceill: (libc)Rounding Functions.
  740. * cexp: (libc)Exponents and Logarithms.
  741. * cexpf: (libc)Exponents and Logarithms.
  742. * cexpfN: (libc)Exponents and Logarithms.
  743. * cexpfNx: (libc)Exponents and Logarithms.
  744. * cexpl: (libc)Exponents and Logarithms.
  745. * cfgetibaud: (libc)Line Speed.
  746. * cfgetispeed: (libc)Line Speed.
  747. * cfgetobaud: (libc)Line Speed.
  748. * cfgetospeed: (libc)Line Speed.
  749. * cfmakeraw: (libc)Noncanonical Input.
  750. * cfsetbaud: (libc)Line Speed.
  751. * cfsetibaud: (libc)Line Speed.
  752. * cfsetispeed: (libc)Line Speed.
  753. * cfsetobaud: (libc)Line Speed.
  754. * cfsetospeed: (libc)Line Speed.
  755. * cfsetspeed: (libc)Line Speed.
  756. * chdir: (libc)Working Directory.
  757. * chmod: (libc)Setting Permissions.
  758. * chown: (libc)File Owner.
  759. * cimag: (libc)Operations on Complex.
  760. * cimagf: (libc)Operations on Complex.
  761. * cimagfN: (libc)Operations on Complex.
  762. * cimagfNx: (libc)Operations on Complex.
  763. * cimagl: (libc)Operations on Complex.
  764. * clearenv: (libc)Environment Access.
  765. * clearerr: (libc)Error Recovery.
  766. * clearerr_unlocked: (libc)Error Recovery.
  767. * clock: (libc)CPU Time.
  768. * clock_getres: (libc)Getting the Time.
  769. * clock_gettime: (libc)Getting the Time.
  770. * clock_nanosleep: (libc)Sleeping.
  771. * clock_settime: (libc)Setting and Adjusting the Time.
  772. * clog10: (libc)Exponents and Logarithms.
  773. * clog10f: (libc)Exponents and Logarithms.
  774. * clog10fN: (libc)Exponents and Logarithms.
  775. * clog10fNx: (libc)Exponents and Logarithms.
  776. * clog10l: (libc)Exponents and Logarithms.
  777. * clog: (libc)Exponents and Logarithms.
  778. * clogf: (libc)Exponents and Logarithms.
  779. * clogfN: (libc)Exponents and Logarithms.
  780. * clogfNx: (libc)Exponents and Logarithms.
  781. * clogl: (libc)Exponents and Logarithms.
  782. * close: (libc)Opening and Closing Files.
  783. * close_range: (libc)Opening and Closing Files.
  784. * closedir: (libc)Reading/Closing Directory.
  785. * closefrom: (libc)Opening and Closing Files.
  786. * closelog: (libc)closelog.
  787. * cnd_broadcast: (libc)ISO C Condition Variables.
  788. * cnd_destroy: (libc)ISO C Condition Variables.
  789. * cnd_init: (libc)ISO C Condition Variables.
  790. * cnd_signal: (libc)ISO C Condition Variables.
  791. * cnd_timedwait: (libc)ISO C Condition Variables.
  792. * cnd_wait: (libc)ISO C Condition Variables.
  793. * compoundn: (libc)Exponents and Logarithms.
  794. * compoundnf: (libc)Exponents and Logarithms.
  795. * compoundnfN: (libc)Exponents and Logarithms.
  796. * compoundnfNx: (libc)Exponents and Logarithms.
  797. * compoundnl: (libc)Exponents and Logarithms.
  798. * confstr: (libc)String Parameters.
  799. * conj: (libc)Operations on Complex.
  800. * conjf: (libc)Operations on Complex.
  801. * conjfN: (libc)Operations on Complex.
  802. * conjfNx: (libc)Operations on Complex.
  803. * conjl: (libc)Operations on Complex.
  804. * connect: (libc)Connecting.
  805. * copy_file_range: (libc)Copying File Data.
  806. * copysign: (libc)FP Bit Twiddling.
  807. * copysignf: (libc)FP Bit Twiddling.
  808. * copysignfN: (libc)FP Bit Twiddling.
  809. * copysignfNx: (libc)FP Bit Twiddling.
  810. * copysignl: (libc)FP Bit Twiddling.
  811. * cos: (libc)Trig Functions.
  812. * cosf: (libc)Trig Functions.
  813. * cosfN: (libc)Trig Functions.
  814. * cosfNx: (libc)Trig Functions.
  815. * cosh: (libc)Hyperbolic Functions.
  816. * coshf: (libc)Hyperbolic Functions.
  817. * coshfN: (libc)Hyperbolic Functions.
  818. * coshfNx: (libc)Hyperbolic Functions.
  819. * coshl: (libc)Hyperbolic Functions.
  820. * cosl: (libc)Trig Functions.
  821. * cospi: (libc)Trig Functions.
  822. * cospif: (libc)Trig Functions.
  823. * cospifN: (libc)Trig Functions.
  824. * cospifNx: (libc)Trig Functions.
  825. * cospil: (libc)Trig Functions.
  826. * cpow: (libc)Exponents and Logarithms.
  827. * cpowf: (libc)Exponents and Logarithms.
  828. * cpowfN: (libc)Exponents and Logarithms.
  829. * cpowfNx: (libc)Exponents and Logarithms.
  830. * cpowl: (libc)Exponents and Logarithms.
  831. * cproj: (libc)Operations on Complex.
  832. * cprojf: (libc)Operations on Complex.
  833. * cprojfN: (libc)Operations on Complex.
  834. * cprojfNx: (libc)Operations on Complex.
  835. * cprojl: (libc)Operations on Complex.
  836. * creal: (libc)Operations on Complex.
  837. * crealf: (libc)Operations on Complex.
  838. * crealfN: (libc)Operations on Complex.
  839. * crealfNx: (libc)Operations on Complex.
  840. * creall: (libc)Operations on Complex.
  841. * creat64: (libc)Opening and Closing Files.
  842. * creat: (libc)Opening and Closing Files.
  843. * csin: (libc)Trig Functions.
  844. * csinf: (libc)Trig Functions.
  845. * csinfN: (libc)Trig Functions.
  846. * csinfNx: (libc)Trig Functions.
  847. * csinh: (libc)Hyperbolic Functions.
  848. * csinhf: (libc)Hyperbolic Functions.
  849. * csinhfN: (libc)Hyperbolic Functions.
  850. * csinhfNx: (libc)Hyperbolic Functions.
  851. * csinhl: (libc)Hyperbolic Functions.
  852. * csinl: (libc)Trig Functions.
  853. * csqrt: (libc)Exponents and Logarithms.
  854. * csqrtf: (libc)Exponents and Logarithms.
  855. * csqrtfN: (libc)Exponents and Logarithms.
  856. * csqrtfNx: (libc)Exponents and Logarithms.
  857. * csqrtl: (libc)Exponents and Logarithms.
  858. * ctan: (libc)Trig Functions.
  859. * ctanf: (libc)Trig Functions.
  860. * ctanfN: (libc)Trig Functions.
  861. * ctanfNx: (libc)Trig Functions.
  862. * ctanh: (libc)Hyperbolic Functions.
  863. * ctanhf: (libc)Hyperbolic Functions.
  864. * ctanhfN: (libc)Hyperbolic Functions.
  865. * ctanhfNx: (libc)Hyperbolic Functions.
  866. * ctanhl: (libc)Hyperbolic Functions.
  867. * ctanl: (libc)Trig Functions.
  868. * ctermid: (libc)Identifying the Terminal.
  869. * ctime: (libc)Formatting Calendar Time.
  870. * ctime_r: (libc)Formatting Calendar Time.
  871. * cuserid: (libc)Who Logged In.
  872. * daddl: (libc)Misc FP Arithmetic.
  873. * dcgettext: (libc)Translation with gettext.
  874. * dcngettext: (libc)Advanced gettext functions.
  875. * ddivl: (libc)Misc FP Arithmetic.
  876. * dfmal: (libc)Misc FP Arithmetic.
  877. * dgettext: (libc)Translation with gettext.
  878. * difftime: (libc)Calculating Elapsed Time.
  879. * dirfd: (libc)Opening a Directory.
  880. * dirname: (libc)Finding Tokens in a String.
  881. * div: (libc)Integer Division.
  882. * dlinfo: (libc)Dynamic Linker Introspection.
  883. * dmull: (libc)Misc FP Arithmetic.
  884. * dngettext: (libc)Advanced gettext functions.
  885. * dprintf: (libc)Formatted Output Functions.
  886. * drand48: (libc)SVID Random.
  887. * drand48_r: (libc)SVID Random.
  888. * drem: (libc)Remainder Functions.
  889. * dremf: (libc)Remainder Functions.
  890. * dreml: (libc)Remainder Functions.
  891. * dsqrtl: (libc)Misc FP Arithmetic.
  892. * dsubl: (libc)Misc FP Arithmetic.
  893. * dup2: (libc)Duplicating Descriptors.
  894. * dup3: (libc)Duplicating Descriptors.
  895. * dup: (libc)Duplicating Descriptors.
  896. * ecvt: (libc)System V Number Conversion.
  897. * ecvt_r: (libc)System V Number Conversion.
  898. * endfsent: (libc)fstab.
  899. * endgrent: (libc)Scanning All Groups.
  900. * endhostent: (libc)Host Names.
  901. * endmntent: (libc)mtab.
  902. * endnetent: (libc)Networks Database.
  903. * endnetgrent: (libc)Lookup Netgroup.
  904. * endprotoent: (libc)Protocols Database.
  905. * endpwent: (libc)Scanning All Users.
  906. * endservent: (libc)Services Database.
  907. * endutent: (libc)Manipulating the Database.
  908. * endutxent: (libc)XPG Functions.
  909. * envz_add: (libc)Envz Functions.
  910. * envz_entry: (libc)Envz Functions.
  911. * envz_get: (libc)Envz Functions.
  912. * envz_merge: (libc)Envz Functions.
  913. * envz_remove: (libc)Envz Functions.
  914. * envz_strip: (libc)Envz Functions.
  915. * epoll_create: (libc)Other Low-Level I/O APIs.
  916. * epoll_wait: (libc)Other Low-Level I/O APIs.
  917. * erand48: (libc)SVID Random.
  918. * erand48_r: (libc)SVID Random.
  919. * erf: (libc)Special Functions.
  920. * erfc: (libc)Special Functions.
  921. * erfcf: (libc)Special Functions.
  922. * erfcfN: (libc)Special Functions.
  923. * erfcfNx: (libc)Special Functions.
  924. * erfcl: (libc)Special Functions.
  925. * erff: (libc)Special Functions.
  926. * erffN: (libc)Special Functions.
  927. * erffNx: (libc)Special Functions.
  928. * erfl: (libc)Special Functions.
  929. * err: (libc)Error Messages.
  930. * errno: (libc)Checking for Errors.
  931. * error: (libc)Error Messages.
  932. * error_at_line: (libc)Error Messages.
  933. * errx: (libc)Error Messages.
  934. * execl: (libc)Executing a File.
  935. * execle: (libc)Executing a File.
  936. * execlp: (libc)Executing a File.
  937. * execv: (libc)Executing a File.
  938. * execve: (libc)Executing a File.
  939. * execvp: (libc)Executing a File.
  940. * exit: (libc)Normal Termination.
  941. * exp10: (libc)Exponents and Logarithms.
  942. * exp10f: (libc)Exponents and Logarithms.
  943. * exp10fN: (libc)Exponents and Logarithms.
  944. * exp10fNx: (libc)Exponents and Logarithms.
  945. * exp10l: (libc)Exponents and Logarithms.
  946. * exp10m1: (libc)Exponents and Logarithms.
  947. * exp10m1f: (libc)Exponents and Logarithms.
  948. * exp10m1fN: (libc)Exponents and Logarithms.
  949. * exp10m1fNx: (libc)Exponents and Logarithms.
  950. * exp10m1l: (libc)Exponents and Logarithms.
  951. * exp2: (libc)Exponents and Logarithms.
  952. * exp2f: (libc)Exponents and Logarithms.
  953. * exp2fN: (libc)Exponents and Logarithms.
  954. * exp2fNx: (libc)Exponents and Logarithms.
  955. * exp2l: (libc)Exponents and Logarithms.
  956. * exp2m1: (libc)Exponents and Logarithms.
  957. * exp2m1f: (libc)Exponents and Logarithms.
  958. * exp2m1fN: (libc)Exponents and Logarithms.
  959. * exp2m1fNx: (libc)Exponents and Logarithms.
  960. * exp2m1l: (libc)Exponents and Logarithms.
  961. * exp: (libc)Exponents and Logarithms.
  962. * expf: (libc)Exponents and Logarithms.
  963. * expfN: (libc)Exponents and Logarithms.
  964. * expfNx: (libc)Exponents and Logarithms.
  965. * expl: (libc)Exponents and Logarithms.
  966. * explicit_bzero: (libc)Erasing Sensitive Data.
  967. * expm1: (libc)Exponents and Logarithms.
  968. * expm1f: (libc)Exponents and Logarithms.
  969. * expm1fN: (libc)Exponents and Logarithms.
  970. * expm1fNx: (libc)Exponents and Logarithms.
  971. * expm1l: (libc)Exponents and Logarithms.
  972. * fMaddfN: (libc)Misc FP Arithmetic.
  973. * fMaddfNx: (libc)Misc FP Arithmetic.
  974. * fMdivfN: (libc)Misc FP Arithmetic.
  975. * fMdivfNx: (libc)Misc FP Arithmetic.
  976. * fMfmafN: (libc)Misc FP Arithmetic.
  977. * fMfmafNx: (libc)Misc FP Arithmetic.
  978. * fMmulfN: (libc)Misc FP Arithmetic.
  979. * fMmulfNx: (libc)Misc FP Arithmetic.
  980. * fMsqrtfN: (libc)Misc FP Arithmetic.
  981. * fMsqrtfNx: (libc)Misc FP Arithmetic.
  982. * fMsubfN: (libc)Misc FP Arithmetic.
  983. * fMsubfNx: (libc)Misc FP Arithmetic.
  984. * fMxaddfN: (libc)Misc FP Arithmetic.
  985. * fMxaddfNx: (libc)Misc FP Arithmetic.
  986. * fMxdivfN: (libc)Misc FP Arithmetic.
  987. * fMxdivfNx: (libc)Misc FP Arithmetic.
  988. * fMxfmafN: (libc)Misc FP Arithmetic.
  989. * fMxfmafNx: (libc)Misc FP Arithmetic.
  990. * fMxmulfN: (libc)Misc FP Arithmetic.
  991. * fMxmulfNx: (libc)Misc FP Arithmetic.
  992. * fMxsqrtfN: (libc)Misc FP Arithmetic.
  993. * fMxsqrtfNx: (libc)Misc FP Arithmetic.
  994. * fMxsubfN: (libc)Misc FP Arithmetic.
  995. * fMxsubfNx: (libc)Misc FP Arithmetic.
  996. * fabs: (libc)Absolute Value.
  997. * fabsf: (libc)Absolute Value.
  998. * fabsfN: (libc)Absolute Value.
  999. * fabsfNx: (libc)Absolute Value.
  1000. * fabsl: (libc)Absolute Value.
  1001. * faccessat: (libc)Testing File Access.
  1002. * fadd: (libc)Misc FP Arithmetic.
  1003. * faddl: (libc)Misc FP Arithmetic.
  1004. * fchdir: (libc)Working Directory.
  1005. * fchmod: (libc)Setting Permissions.
  1006. * fchown: (libc)File Owner.
  1007. * fclose: (libc)Closing Streams.
  1008. * fcloseall: (libc)Closing Streams.
  1009. * fcntl: (libc)Control Operations.
  1010. * fcvt: (libc)System V Number Conversion.
  1011. * fcvt_r: (libc)System V Number Conversion.
  1012. * fdatasync: (libc)Synchronizing I/O.
  1013. * fdim: (libc)Misc FP Arithmetic.
  1014. * fdimf: (libc)Misc FP Arithmetic.
  1015. * fdimfN: (libc)Misc FP Arithmetic.
  1016. * fdimfNx: (libc)Misc FP Arithmetic.
  1017. * fdiml: (libc)Misc FP Arithmetic.
  1018. * fdiv: (libc)Misc FP Arithmetic.
  1019. * fdivl: (libc)Misc FP Arithmetic.
  1020. * fdopen: (libc)Descriptors and Streams.
  1021. * fdopendir: (libc)Opening a Directory.
  1022. * feclearexcept: (libc)Status bit operations.
  1023. * fedisableexcept: (libc)Control Functions.
  1024. * feenableexcept: (libc)Control Functions.
  1025. * fegetenv: (libc)Control Functions.
  1026. * fegetexcept: (libc)Control Functions.
  1027. * fegetexceptflag: (libc)Status bit operations.
  1028. * fegetmode: (libc)Control Functions.
  1029. * fegetround: (libc)Rounding.
  1030. * feholdexcept: (libc)Control Functions.
  1031. * feof: (libc)EOF and Errors.
  1032. * feof_unlocked: (libc)EOF and Errors.
  1033. * feraiseexcept: (libc)Status bit operations.
  1034. * ferror: (libc)EOF and Errors.
  1035. * ferror_unlocked: (libc)EOF and Errors.
  1036. * fesetenv: (libc)Control Functions.
  1037. * fesetexcept: (libc)Status bit operations.
  1038. * fesetexceptflag: (libc)Status bit operations.
  1039. * fesetmode: (libc)Control Functions.
  1040. * fesetround: (libc)Rounding.
  1041. * fetestexcept: (libc)Status bit operations.
  1042. * fetestexceptflag: (libc)Status bit operations.
  1043. * feupdateenv: (libc)Control Functions.
  1044. * fexecve: (libc)Executing a File.
  1045. * fflush: (libc)Flushing Buffers.
  1046. * fflush_unlocked: (libc)Flushing Buffers.
  1047. * ffma: (libc)Misc FP Arithmetic.
  1048. * ffmal: (libc)Misc FP Arithmetic.
  1049. * fgetc: (libc)Character Input.
  1050. * fgetc_unlocked: (libc)Character Input.
  1051. * fgetgrent: (libc)Scanning All Groups.
  1052. * fgetgrent_r: (libc)Scanning All Groups.
  1053. * fgetpos64: (libc)Portable Positioning.
  1054. * fgetpos: (libc)Portable Positioning.
  1055. * fgetpwent: (libc)Scanning All Users.
  1056. * fgetpwent_r: (libc)Scanning All Users.
  1057. * fgets: (libc)Line Input.
  1058. * fgets_unlocked: (libc)Line Input.
  1059. * fgetwc: (libc)Character Input.
  1060. * fgetwc_unlocked: (libc)Character Input.
  1061. * fgetws: (libc)Line Input.
  1062. * fgetws_unlocked: (libc)Line Input.
  1063. * fileno: (libc)Descriptors and Streams.
  1064. * fileno_unlocked: (libc)Descriptors and Streams.
  1065. * finite: (libc)Floating Point Classes.
  1066. * finitef: (libc)Floating Point Classes.
  1067. * finitel: (libc)Floating Point Classes.
  1068. * flockfile: (libc)Streams and Threads.
  1069. * floor: (libc)Rounding Functions.
  1070. * floorf: (libc)Rounding Functions.
  1071. * floorfN: (libc)Rounding Functions.
  1072. * floorfNx: (libc)Rounding Functions.
  1073. * floorl: (libc)Rounding Functions.
  1074. * fma: (libc)Misc FP Arithmetic.
  1075. * fmaf: (libc)Misc FP Arithmetic.
  1076. * fmafN: (libc)Misc FP Arithmetic.
  1077. * fmafNx: (libc)Misc FP Arithmetic.
  1078. * fmal: (libc)Misc FP Arithmetic.
  1079. * fmax: (libc)Misc FP Arithmetic.
  1080. * fmaxf: (libc)Misc FP Arithmetic.
  1081. * fmaxfN: (libc)Misc FP Arithmetic.
  1082. * fmaxfNx: (libc)Misc FP Arithmetic.
  1083. * fmaximum: (libc)Misc FP Arithmetic.
  1084. * fmaximum_mag: (libc)Misc FP Arithmetic.
  1085. * fmaximum_mag_num: (libc)Misc FP Arithmetic.
  1086. * fmaximum_mag_numf: (libc)Misc FP Arithmetic.
  1087. * fmaximum_mag_numfN: (libc)Misc FP Arithmetic.
  1088. * fmaximum_mag_numfNx: (libc)Misc FP Arithmetic.
  1089. * fmaximum_mag_numl: (libc)Misc FP Arithmetic.
  1090. * fmaximum_magf: (libc)Misc FP Arithmetic.
  1091. * fmaximum_magfN: (libc)Misc FP Arithmetic.
  1092. * fmaximum_magfNx: (libc)Misc FP Arithmetic.
  1093. * fmaximum_magl: (libc)Misc FP Arithmetic.
  1094. * fmaximum_num: (libc)Misc FP Arithmetic.
  1095. * fmaximum_numf: (libc)Misc FP Arithmetic.
  1096. * fmaximum_numfN: (libc)Misc FP Arithmetic.
  1097. * fmaximum_numfNx: (libc)Misc FP Arithmetic.
  1098. * fmaximum_numl: (libc)Misc FP Arithmetic.
  1099. * fmaximumf: (libc)Misc FP Arithmetic.
  1100. * fmaximumfN: (libc)Misc FP Arithmetic.
  1101. * fmaximumfNx: (libc)Misc FP Arithmetic.
  1102. * fmaximuml: (libc)Misc FP Arithmetic.
  1103. * fmaxl: (libc)Misc FP Arithmetic.
  1104. * fmaxmag: (libc)Misc FP Arithmetic.
  1105. * fmaxmagf: (libc)Misc FP Arithmetic.
  1106. * fmaxmagfN: (libc)Misc FP Arithmetic.
  1107. * fmaxmagfNx: (libc)Misc FP Arithmetic.
  1108. * fmaxmagl: (libc)Misc FP Arithmetic.
  1109. * fmemopen: (libc)String Streams.
  1110. * fmin: (libc)Misc FP Arithmetic.
  1111. * fminf: (libc)Misc FP Arithmetic.
  1112. * fminfN: (libc)Misc FP Arithmetic.
  1113. * fminfNx: (libc)Misc FP Arithmetic.
  1114. * fminimum: (libc)Misc FP Arithmetic.
  1115. * fminimum_mag: (libc)Misc FP Arithmetic.
  1116. * fminimum_mag_num: (libc)Misc FP Arithmetic.
  1117. * fminimum_mag_numf: (libc)Misc FP Arithmetic.
  1118. * fminimum_mag_numfN: (libc)Misc FP Arithmetic.
  1119. * fminimum_mag_numfNx: (libc)Misc FP Arithmetic.
  1120. * fminimum_mag_numl: (libc)Misc FP Arithmetic.
  1121. * fminimum_magf: (libc)Misc FP Arithmetic.
  1122. * fminimum_magfN: (libc)Misc FP Arithmetic.
  1123. * fminimum_magfNx: (libc)Misc FP Arithmetic.
  1124. * fminimum_magl: (libc)Misc FP Arithmetic.
  1125. * fminimum_num: (libc)Misc FP Arithmetic.
  1126. * fminimum_numf: (libc)Misc FP Arithmetic.
  1127. * fminimum_numfN: (libc)Misc FP Arithmetic.
  1128. * fminimum_numfNx: (libc)Misc FP Arithmetic.
  1129. * fminimum_numl: (libc)Misc FP Arithmetic.
  1130. * fminimumf: (libc)Misc FP Arithmetic.
  1131. * fminimumfN: (libc)Misc FP Arithmetic.
  1132. * fminimumfNx: (libc)Misc FP Arithmetic.
  1133. * fminimuml: (libc)Misc FP Arithmetic.
  1134. * fminl: (libc)Misc FP Arithmetic.
  1135. * fminmag: (libc)Misc FP Arithmetic.
  1136. * fminmagf: (libc)Misc FP Arithmetic.
  1137. * fminmagfN: (libc)Misc FP Arithmetic.
  1138. * fminmagfNx: (libc)Misc FP Arithmetic.
  1139. * fminmagl: (libc)Misc FP Arithmetic.
  1140. * fmod: (libc)Remainder Functions.
  1141. * fmodf: (libc)Remainder Functions.
  1142. * fmodfN: (libc)Remainder Functions.
  1143. * fmodfNx: (libc)Remainder Functions.
  1144. * fmodl: (libc)Remainder Functions.
  1145. * fmtmsg: (libc)Printing Formatted Messages.
  1146. * fmul: (libc)Misc FP Arithmetic.
  1147. * fmull: (libc)Misc FP Arithmetic.
  1148. * fnmatch: (libc)Wildcard Matching.
  1149. * fopen64: (libc)Opening Streams.
  1150. * fopen: (libc)Opening Streams.
  1151. * fopencookie: (libc)Streams and Cookies.
  1152. * fork: (libc)Creating a Process.
  1153. * forkpty: (libc)Pseudo-Terminal Pairs.
  1154. * fpathconf: (libc)Pathconf.
  1155. * fpclassify: (libc)Floating Point Classes.
  1156. * fprintf: (libc)Formatted Output Functions.
  1157. * fputc: (libc)Simple Output.
  1158. * fputc_unlocked: (libc)Simple Output.
  1159. * fputs: (libc)Simple Output.
  1160. * fputs_unlocked: (libc)Simple Output.
  1161. * fputwc: (libc)Simple Output.
  1162. * fputwc_unlocked: (libc)Simple Output.
  1163. * fputws: (libc)Simple Output.
  1164. * fputws_unlocked: (libc)Simple Output.
  1165. * fread: (libc)Block Input/Output.
  1166. * fread_unlocked: (libc)Block Input/Output.
  1167. * free: (libc)Freeing after Malloc.
  1168. * free_aligned_sized: (libc)Freeing after Malloc.
  1169. * free_sized: (libc)Freeing after Malloc.
  1170. * freopen64: (libc)Opening Streams.
  1171. * freopen: (libc)Opening Streams.
  1172. * frexp: (libc)Normalization Functions.
  1173. * frexpf: (libc)Normalization Functions.
  1174. * frexpfN: (libc)Normalization Functions.
  1175. * frexpfNx: (libc)Normalization Functions.
  1176. * frexpl: (libc)Normalization Functions.
  1177. * fromfp: (libc)Rounding Functions.
  1178. * fromfpf: (libc)Rounding Functions.
  1179. * fromfpfN: (libc)Rounding Functions.
  1180. * fromfpfNx: (libc)Rounding Functions.
  1181. * fromfpl: (libc)Rounding Functions.
  1182. * fromfpx: (libc)Rounding Functions.
  1183. * fromfpxf: (libc)Rounding Functions.
  1184. * fromfpxfN: (libc)Rounding Functions.
  1185. * fromfpxfNx: (libc)Rounding Functions.
  1186. * fromfpxl: (libc)Rounding Functions.
  1187. * fscanf: (libc)Formatted Input Functions.
  1188. * fseek: (libc)File Positioning.
  1189. * fseeko64: (libc)File Positioning.
  1190. * fseeko: (libc)File Positioning.
  1191. * fsetpos64: (libc)Portable Positioning.
  1192. * fsetpos: (libc)Portable Positioning.
  1193. * fsqrt: (libc)Misc FP Arithmetic.
  1194. * fsqrtl: (libc)Misc FP Arithmetic.
  1195. * fstat64: (libc)Reading Attributes.
  1196. * fstat: (libc)Reading Attributes.
  1197. * fstatat64: (libc)Reading Attributes.
  1198. * fstatat: (libc)Reading Attributes.
  1199. * fsub: (libc)Misc FP Arithmetic.
  1200. * fsubl: (libc)Misc FP Arithmetic.
  1201. * fsync: (libc)Synchronizing I/O.
  1202. * ftell: (libc)File Positioning.
  1203. * ftello64: (libc)File Positioning.
  1204. * ftello: (libc)File Positioning.
  1205. * ftruncate64: (libc)File Size.
  1206. * ftruncate: (libc)File Size.
  1207. * ftrylockfile: (libc)Streams and Threads.
  1208. * ftw64: (libc)Working with Directory Trees.
  1209. * ftw: (libc)Working with Directory Trees.
  1210. * funlockfile: (libc)Streams and Threads.
  1211. * futimens: (libc)File Times.
  1212. * futimes: (libc)File Times.
  1213. * fwide: (libc)Streams and I18N.
  1214. * fwprintf: (libc)Formatted Output Functions.
  1215. * fwrite: (libc)Block Input/Output.
  1216. * fwrite_unlocked: (libc)Block Input/Output.
  1217. * fwscanf: (libc)Formatted Input Functions.
  1218. * gamma: (libc)Special Functions.
  1219. * gammaf: (libc)Special Functions.
  1220. * gammal: (libc)Special Functions.
  1221. * gcvt: (libc)System V Number Conversion.
  1222. * get_avphys_pages: (libc)Query Memory Parameters.
  1223. * get_current_dir_name: (libc)Working Directory.
  1224. * get_nprocs: (libc)Processor Resources.
  1225. * get_nprocs_conf: (libc)Processor Resources.
  1226. * get_phys_pages: (libc)Query Memory Parameters.
  1227. * getauxval: (libc)Auxiliary Vector.
  1228. * getc: (libc)Character Input.
  1229. * getc_unlocked: (libc)Character Input.
  1230. * getchar: (libc)Character Input.
  1231. * getchar_unlocked: (libc)Character Input.
  1232. * getcontext: (libc)System V contexts.
  1233. * getcpu: (libc)CPU Affinity.
  1234. * getcwd: (libc)Working Directory.
  1235. * getdate: (libc)General Time String Parsing.
  1236. * getdate_r: (libc)General Time String Parsing.
  1237. * getdelim: (libc)Line Input.
  1238. * getdents64: (libc)Low-level Directory Access.
  1239. * getdomainname: (libc)Host Identification.
  1240. * getegid: (libc)Reading Persona.
  1241. * getentropy: (libc)Unpredictable Bytes.
  1242. * getenv: (libc)Environment Access.
  1243. * geteuid: (libc)Reading Persona.
  1244. * getfsent: (libc)fstab.
  1245. * getfsfile: (libc)fstab.
  1246. * getfsspec: (libc)fstab.
  1247. * getgid: (libc)Reading Persona.
  1248. * getgrent: (libc)Scanning All Groups.
  1249. * getgrent_r: (libc)Scanning All Groups.
  1250. * getgrgid: (libc)Lookup Group.
  1251. * getgrgid_r: (libc)Lookup Group.
  1252. * getgrnam: (libc)Lookup Group.
  1253. * getgrnam_r: (libc)Lookup Group.
  1254. * getgrouplist: (libc)Setting Groups.
  1255. * getgroups: (libc)Reading Persona.
  1256. * gethostbyaddr: (libc)Host Names.
  1257. * gethostbyaddr_r: (libc)Host Names.
  1258. * gethostbyname2: (libc)Host Names.
  1259. * gethostbyname2_r: (libc)Host Names.
  1260. * gethostbyname: (libc)Host Names.
  1261. * gethostbyname_r: (libc)Host Names.
  1262. * gethostent: (libc)Host Names.
  1263. * gethostid: (libc)Host Identification.
  1264. * gethostname: (libc)Host Identification.
  1265. * getitimer: (libc)Setting an Alarm.
  1266. * getline: (libc)Line Input.
  1267. * getloadavg: (libc)Processor Resources.
  1268. * getlogin: (libc)Who Logged In.
  1269. * getmntent: (libc)mtab.
  1270. * getmntent_r: (libc)mtab.
  1271. * getnetbyaddr: (libc)Networks Database.
  1272. * getnetbyname: (libc)Networks Database.
  1273. * getnetent: (libc)Networks Database.
  1274. * getnetgrent: (libc)Lookup Netgroup.
  1275. * getnetgrent_r: (libc)Lookup Netgroup.
  1276. * getopt: (libc)Using Getopt.
  1277. * getopt_long: (libc)Getopt Long Options.
  1278. * getopt_long_only: (libc)Getopt Long Options.
  1279. * getpagesize: (libc)Query Memory Parameters.
  1280. * getpass: (libc)getpass.
  1281. * getpayload: (libc)FP Bit Twiddling.
  1282. * getpayloadf: (libc)FP Bit Twiddling.
  1283. * getpayloadfN: (libc)FP Bit Twiddling.
  1284. * getpayloadfNx: (libc)FP Bit Twiddling.
  1285. * getpayloadl: (libc)FP Bit Twiddling.
  1286. * getpeername: (libc)Who is Connected.
  1287. * getpgid: (libc)Process Group Functions.
  1288. * getpgrp: (libc)Process Group Functions.
  1289. * getpid: (libc)Process Identification.
  1290. * getppid: (libc)Process Identification.
  1291. * getpriority: (libc)Traditional Scheduling Functions.
  1292. * getprotobyname: (libc)Protocols Database.
  1293. * getprotobynumber: (libc)Protocols Database.
  1294. * getprotoent: (libc)Protocols Database.
  1295. * getpt: (libc)Allocation.
  1296. * getpwent: (libc)Scanning All Users.
  1297. * getpwent_r: (libc)Scanning All Users.
  1298. * getpwnam: (libc)Lookup User.
  1299. * getpwnam_r: (libc)Lookup User.
  1300. * getpwuid: (libc)Lookup User.
  1301. * getpwuid_r: (libc)Lookup User.
  1302. * getrandom: (libc)Unpredictable Bytes.
  1303. * getrlimit64: (libc)Limits on Resources.
  1304. * getrlimit: (libc)Limits on Resources.
  1305. * getrusage: (libc)Resource Usage.
  1306. * gets: (libc)Line Input.
  1307. * getservbyname: (libc)Services Database.
  1308. * getservbyport: (libc)Services Database.
  1309. * getservent: (libc)Services Database.
  1310. * getsid: (libc)Process Group Functions.
  1311. * getsockname: (libc)Reading Address.
  1312. * getsockopt: (libc)Socket Option Functions.
  1313. * getsubopt: (libc)Suboptions.
  1314. * gettext: (libc)Translation with gettext.
  1315. * gettid: (libc)Process Identification.
  1316. * gettimeofday: (libc)Getting the Time.
  1317. * getuid: (libc)Reading Persona.
  1318. * getumask: (libc)Setting Permissions.
  1319. * getutent: (libc)Manipulating the Database.
  1320. * getutent_r: (libc)Manipulating the Database.
  1321. * getutid: (libc)Manipulating the Database.
  1322. * getutid_r: (libc)Manipulating the Database.
  1323. * getutline: (libc)Manipulating the Database.
  1324. * getutline_r: (libc)Manipulating the Database.
  1325. * getutmp: (libc)XPG Functions.
  1326. * getutmpx: (libc)XPG Functions.
  1327. * getutxent: (libc)XPG Functions.
  1328. * getutxid: (libc)XPG Functions.
  1329. * getutxline: (libc)XPG Functions.
  1330. * getw: (libc)Character Input.
  1331. * getwc: (libc)Character Input.
  1332. * getwc_unlocked: (libc)Character Input.
  1333. * getwchar: (libc)Character Input.
  1334. * getwchar_unlocked: (libc)Character Input.
  1335. * getwd: (libc)Working Directory.
  1336. * glob64: (libc)Calling Glob.
  1337. * glob: (libc)Calling Glob.
  1338. * globfree64: (libc)More Flags for Globbing.
  1339. * globfree: (libc)More Flags for Globbing.
  1340. * gmtime: (libc)Broken-down Time.
  1341. * gmtime_r: (libc)Broken-down Time.
  1342. * grantpt: (libc)Allocation.
  1343. * gsignal: (libc)Signaling Yourself.
  1344. * gtty: (libc)BSD Terminal Modes.
  1345. * hasmntopt: (libc)mtab.
  1346. * hcreate: (libc)Hash Search Function.
  1347. * hcreate_r: (libc)Hash Search Function.
  1348. * hdestroy: (libc)Hash Search Function.
  1349. * hdestroy_r: (libc)Hash Search Function.
  1350. * hsearch: (libc)Hash Search Function.
  1351. * hsearch_r: (libc)Hash Search Function.
  1352. * htonl: (libc)Byte Order.
  1353. * htons: (libc)Byte Order.
  1354. * hypot: (libc)Exponents and Logarithms.
  1355. * hypotf: (libc)Exponents and Logarithms.
  1356. * hypotfN: (libc)Exponents and Logarithms.
  1357. * hypotfNx: (libc)Exponents and Logarithms.
  1358. * hypotl: (libc)Exponents and Logarithms.
  1359. * iconv: (libc)Generic Conversion Interface.
  1360. * iconv_close: (libc)Generic Conversion Interface.
  1361. * iconv_open: (libc)Generic Conversion Interface.
  1362. * if_freenameindex: (libc)Interface Naming.
  1363. * if_indextoname: (libc)Interface Naming.
  1364. * if_nameindex: (libc)Interface Naming.
  1365. * if_nametoindex: (libc)Interface Naming.
  1366. * ilogb: (libc)Exponents and Logarithms.
  1367. * ilogbf: (libc)Exponents and Logarithms.
  1368. * ilogbfN: (libc)Exponents and Logarithms.
  1369. * ilogbfNx: (libc)Exponents and Logarithms.
  1370. * ilogbl: (libc)Exponents and Logarithms.
  1371. * imaxabs: (libc)Absolute Value.
  1372. * imaxdiv: (libc)Integer Division.
  1373. * in6addr_any: (libc)Host Address Data Type.
  1374. * in6addr_loopback: (libc)Host Address Data Type.
  1375. * index: (libc)Search Functions.
  1376. * inet_addr: (libc)Host Address Functions.
  1377. * inet_aton: (libc)Host Address Functions.
  1378. * inet_lnaof: (libc)Host Address Functions.
  1379. * inet_makeaddr: (libc)Host Address Functions.
  1380. * inet_netof: (libc)Host Address Functions.
  1381. * inet_network: (libc)Host Address Functions.
  1382. * inet_ntoa: (libc)Host Address Functions.
  1383. * inet_ntop: (libc)Host Address Functions.
  1384. * inet_pton: (libc)Host Address Functions.
  1385. * initgroups: (libc)Setting Groups.
  1386. * initstate: (libc)BSD Random.
  1387. * initstate_r: (libc)BSD Random.
  1388. * innetgr: (libc)Netgroup Membership.
  1389. * ioctl: (libc)IOCTLs.
  1390. * isalnum: (libc)Classification of Characters.
  1391. * isalpha: (libc)Classification of Characters.
  1392. * isascii: (libc)Classification of Characters.
  1393. * isatty: (libc)Is It a Terminal.
  1394. * isblank: (libc)Classification of Characters.
  1395. * iscanonical: (libc)Floating Point Classes.
  1396. * iscntrl: (libc)Classification of Characters.
  1397. * isdigit: (libc)Classification of Characters.
  1398. * iseqsig: (libc)FP Comparison Functions.
  1399. * isfinite: (libc)Floating Point Classes.
  1400. * isgraph: (libc)Classification of Characters.
  1401. * isgreater: (libc)FP Comparison Functions.
  1402. * isgreaterequal: (libc)FP Comparison Functions.
  1403. * isinf: (libc)Floating Point Classes.
  1404. * isinff: (libc)Floating Point Classes.
  1405. * isinfl: (libc)Floating Point Classes.
  1406. * isless: (libc)FP Comparison Functions.
  1407. * islessequal: (libc)FP Comparison Functions.
  1408. * islessgreater: (libc)FP Comparison Functions.
  1409. * islower: (libc)Classification of Characters.
  1410. * isnan: (libc)Floating Point Classes.
  1411. * isnan: (libc)Floating Point Classes.
  1412. * isnanf: (libc)Floating Point Classes.
  1413. * isnanl: (libc)Floating Point Classes.
  1414. * isnormal: (libc)Floating Point Classes.
  1415. * isprint: (libc)Classification of Characters.
  1416. * ispunct: (libc)Classification of Characters.
  1417. * issignaling: (libc)Floating Point Classes.
  1418. * isspace: (libc)Classification of Characters.
  1419. * issubnormal: (libc)Floating Point Classes.
  1420. * isunordered: (libc)FP Comparison Functions.
  1421. * isupper: (libc)Classification of Characters.
  1422. * iswalnum: (libc)Classification of Wide Characters.
  1423. * iswalpha: (libc)Classification of Wide Characters.
  1424. * iswblank: (libc)Classification of Wide Characters.
  1425. * iswcntrl: (libc)Classification of Wide Characters.
  1426. * iswctype: (libc)Classification of Wide Characters.
  1427. * iswdigit: (libc)Classification of Wide Characters.
  1428. * iswgraph: (libc)Classification of Wide Characters.
  1429. * iswlower: (libc)Classification of Wide Characters.
  1430. * iswprint: (libc)Classification of Wide Characters.
  1431. * iswpunct: (libc)Classification of Wide Characters.
  1432. * iswspace: (libc)Classification of Wide Characters.
  1433. * iswupper: (libc)Classification of Wide Characters.
  1434. * iswxdigit: (libc)Classification of Wide Characters.
  1435. * isxdigit: (libc)Classification of Characters.
  1436. * iszero: (libc)Floating Point Classes.
  1437. * j0: (libc)Special Functions.
  1438. * j0f: (libc)Special Functions.
  1439. * j0fN: (libc)Special Functions.
  1440. * j0fNx: (libc)Special Functions.
  1441. * j0l: (libc)Special Functions.
  1442. * j1: (libc)Special Functions.
  1443. * j1f: (libc)Special Functions.
  1444. * j1fN: (libc)Special Functions.
  1445. * j1fNx: (libc)Special Functions.
  1446. * j1l: (libc)Special Functions.
  1447. * jn: (libc)Special Functions.
  1448. * jnf: (libc)Special Functions.
  1449. * jnfN: (libc)Special Functions.
  1450. * jnfNx: (libc)Special Functions.
  1451. * jnl: (libc)Special Functions.
  1452. * jrand48: (libc)SVID Random.
  1453. * jrand48_r: (libc)SVID Random.
  1454. * kill: (libc)Signaling Another Process.
  1455. * killpg: (libc)Signaling Another Process.
  1456. * l64a: (libc)Encode Binary Data.
  1457. * labs: (libc)Absolute Value.
  1458. * lcong48: (libc)SVID Random.
  1459. * lcong48_r: (libc)SVID Random.
  1460. * ldexp: (libc)Normalization Functions.
  1461. * ldexpf: (libc)Normalization Functions.
  1462. * ldexpfN: (libc)Normalization Functions.
  1463. * ldexpfNx: (libc)Normalization Functions.
  1464. * ldexpl: (libc)Normalization Functions.
  1465. * ldiv: (libc)Integer Division.
  1466. * lfind: (libc)Array Search Function.
  1467. * lgamma: (libc)Special Functions.
  1468. * lgamma_r: (libc)Special Functions.
  1469. * lgammaf: (libc)Special Functions.
  1470. * lgammafN: (libc)Special Functions.
  1471. * lgammafN_r: (libc)Special Functions.
  1472. * lgammafNx: (libc)Special Functions.
  1473. * lgammafNx_r: (libc)Special Functions.
  1474. * lgammaf_r: (libc)Special Functions.
  1475. * lgammal: (libc)Special Functions.
  1476. * lgammal_r: (libc)Special Functions.
  1477. * link: (libc)Hard Links.
  1478. * linkat: (libc)Hard Links.
  1479. * lio_listio64: (libc)Asynchronous Reads/Writes.
  1480. * lio_listio: (libc)Asynchronous Reads/Writes.
  1481. * listen: (libc)Listening.
  1482. * llabs: (libc)Absolute Value.
  1483. * lldiv: (libc)Integer Division.
  1484. * llogb: (libc)Exponents and Logarithms.
  1485. * llogbf: (libc)Exponents and Logarithms.
  1486. * llogbfN: (libc)Exponents and Logarithms.
  1487. * llogbfNx: (libc)Exponents and Logarithms.
  1488. * llogbl: (libc)Exponents and Logarithms.
  1489. * llrint: (libc)Rounding Functions.
  1490. * llrintf: (libc)Rounding Functions.
  1491. * llrintfN: (libc)Rounding Functions.
  1492. * llrintfNx: (libc)Rounding Functions.
  1493. * llrintl: (libc)Rounding Functions.
  1494. * llround: (libc)Rounding Functions.
  1495. * llroundf: (libc)Rounding Functions.
  1496. * llroundfN: (libc)Rounding Functions.
  1497. * llroundfNx: (libc)Rounding Functions.
  1498. * llroundl: (libc)Rounding Functions.
  1499. * localeconv: (libc)The Lame Way to Locale Data.
  1500. * localtime: (libc)Broken-down Time.
  1501. * localtime_r: (libc)Broken-down Time.
  1502. * log10: (libc)Exponents and Logarithms.
  1503. * log10f: (libc)Exponents and Logarithms.
  1504. * log10fN: (libc)Exponents and Logarithms.
  1505. * log10fNx: (libc)Exponents and Logarithms.
  1506. * log10l: (libc)Exponents and Logarithms.
  1507. * log10p1: (libc)Exponents and Logarithms.
  1508. * log10p1f: (libc)Exponents and Logarithms.
  1509. * log10p1fN: (libc)Exponents and Logarithms.
  1510. * log10p1fNx: (libc)Exponents and Logarithms.
  1511. * log10p1l: (libc)Exponents and Logarithms.
  1512. * log1p: (libc)Exponents and Logarithms.
  1513. * log1pf: (libc)Exponents and Logarithms.
  1514. * log1pfN: (libc)Exponents and Logarithms.
  1515. * log1pfNx: (libc)Exponents and Logarithms.
  1516. * log1pl: (libc)Exponents and Logarithms.
  1517. * log2: (libc)Exponents and Logarithms.
  1518. * log2f: (libc)Exponents and Logarithms.
  1519. * log2fN: (libc)Exponents and Logarithms.
  1520. * log2fNx: (libc)Exponents and Logarithms.
  1521. * log2l: (libc)Exponents and Logarithms.
  1522. * log2p1: (libc)Exponents and Logarithms.
  1523. * log2p1f: (libc)Exponents and Logarithms.
  1524. * log2p1fN: (libc)Exponents and Logarithms.
  1525. * log2p1fNx: (libc)Exponents and Logarithms.
  1526. * log2p1l: (libc)Exponents and Logarithms.
  1527. * log: (libc)Exponents and Logarithms.
  1528. * logb: (libc)Exponents and Logarithms.
  1529. * logbf: (libc)Exponents and Logarithms.
  1530. * logbfN: (libc)Exponents and Logarithms.
  1531. * logbfNx: (libc)Exponents and Logarithms.
  1532. * logbl: (libc)Exponents and Logarithms.
  1533. * logf: (libc)Exponents and Logarithms.
  1534. * logfN: (libc)Exponents and Logarithms.
  1535. * logfNx: (libc)Exponents and Logarithms.
  1536. * login: (libc)Logging In and Out.
  1537. * login_tty: (libc)Logging In and Out.
  1538. * logl: (libc)Exponents and Logarithms.
  1539. * logout: (libc)Logging In and Out.
  1540. * logp1: (libc)Exponents and Logarithms.
  1541. * logp1f: (libc)Exponents and Logarithms.
  1542. * logp1fN: (libc)Exponents and Logarithms.
  1543. * logp1fNx: (libc)Exponents and Logarithms.
  1544. * logp1l: (libc)Exponents and Logarithms.
  1545. * logwtmp: (libc)Logging In and Out.
  1546. * longjmp: (libc)Non-Local Details.
  1547. * lrand48: (libc)SVID Random.
  1548. * lrand48_r: (libc)SVID Random.
  1549. * lrint: (libc)Rounding Functions.
  1550. * lrintf: (libc)Rounding Functions.
  1551. * lrintfN: (libc)Rounding Functions.
  1552. * lrintfNx: (libc)Rounding Functions.
  1553. * lrintl: (libc)Rounding Functions.
  1554. * lround: (libc)Rounding Functions.
  1555. * lroundf: (libc)Rounding Functions.
  1556. * lroundfN: (libc)Rounding Functions.
  1557. * lroundfNx: (libc)Rounding Functions.
  1558. * lroundl: (libc)Rounding Functions.
  1559. * lsearch: (libc)Array Search Function.
  1560. * lseek64: (libc)File Position Primitive.
  1561. * lseek: (libc)File Position Primitive.
  1562. * lstat64: (libc)Reading Attributes.
  1563. * lstat: (libc)Reading Attributes.
  1564. * lutimes: (libc)File Times.
  1565. * madvise: (libc)Memory-mapped I/O.
  1566. * makecontext: (libc)System V contexts.
  1567. * mallinfo2: (libc)Statistics of Malloc.
  1568. * malloc: (libc)Basic Allocation.
  1569. * mallopt: (libc)Malloc Tunable Parameters.
  1570. * mblen: (libc)Non-reentrant Character Conversion.
  1571. * mbrlen: (libc)Converting a Character.
  1572. * mbrtowc: (libc)Converting a Character.
  1573. * mbsinit: (libc)Keeping the state.
  1574. * mbsnrtowcs: (libc)Converting Strings.
  1575. * mbsrtowcs: (libc)Converting Strings.
  1576. * mbstowcs: (libc)Non-reentrant String Conversion.
  1577. * mbtowc: (libc)Non-reentrant Character Conversion.
  1578. * mcheck: (libc)Heap Consistency Checking.
  1579. * memalign: (libc)Aligned Memory Blocks.
  1580. * memalignment: (libc)Aligned Memory Blocks.
  1581. * memccpy: (libc)Copying Strings and Arrays.
  1582. * memchr: (libc)Search Functions.
  1583. * memcmp: (libc)String/Array Comparison.
  1584. * memcpy: (libc)Copying Strings and Arrays.
  1585. * memfd_create: (libc)Memory-mapped I/O.
  1586. * memfrob: (libc)Obfuscating Data.
  1587. * memmem: (libc)Search Functions.
  1588. * memmove: (libc)Copying Strings and Arrays.
  1589. * mempcpy: (libc)Copying Strings and Arrays.
  1590. * memrchr: (libc)Search Functions.
  1591. * memset: (libc)Copying Strings and Arrays.
  1592. * memset_explicit: (libc)Erasing Sensitive Data.
  1593. * mkdir: (libc)Creating Directories.
  1594. * mkdirat: (libc)Creating Directories.
  1595. * mkdtemp: (libc)Temporary Files.
  1596. * mkfifo: (libc)FIFO Special Files.
  1597. * mknod: (libc)Making Special Files.
  1598. * mkstemp: (libc)Temporary Files.
  1599. * mktemp: (libc)Temporary Files.
  1600. * mktime: (libc)Broken-down Time.
  1601. * mlock2: (libc)Page Lock Functions.
  1602. * mlock: (libc)Page Lock Functions.
  1603. * mlockall: (libc)Page Lock Functions.
  1604. * mmap64: (libc)Memory-mapped I/O.
  1605. * mmap: (libc)Memory-mapped I/O.
  1606. * modf: (libc)Rounding Functions.
  1607. * modff: (libc)Rounding Functions.
  1608. * modffN: (libc)Rounding Functions.
  1609. * modffNx: (libc)Rounding Functions.
  1610. * modfl: (libc)Rounding Functions.
  1611. * mount: (libc)Mount-Unmount-Remount.
  1612. * mprobe: (libc)Heap Consistency Checking.
  1613. * mprotect: (libc)Memory Protection.
  1614. * mrand48: (libc)SVID Random.
  1615. * mrand48_r: (libc)SVID Random.
  1616. * mremap: (libc)Memory-mapped I/O.
  1617. * mseal: (libc)Memory Protection.
  1618. * msync: (libc)Memory-mapped I/O.
  1619. * mtrace: (libc)Tracing malloc.
  1620. * mtx_destroy: (libc)ISO C Mutexes.
  1621. * mtx_init: (libc)ISO C Mutexes.
  1622. * mtx_lock: (libc)ISO C Mutexes.
  1623. * mtx_timedlock: (libc)ISO C Mutexes.
  1624. * mtx_trylock: (libc)ISO C Mutexes.
  1625. * mtx_unlock: (libc)ISO C Mutexes.
  1626. * munlock: (libc)Page Lock Functions.
  1627. * munlockall: (libc)Page Lock Functions.
  1628. * munmap: (libc)Memory-mapped I/O.
  1629. * muntrace: (libc)Tracing malloc.
  1630. * nan: (libc)FP Bit Twiddling.
  1631. * nanf: (libc)FP Bit Twiddling.
  1632. * nanfN: (libc)FP Bit Twiddling.
  1633. * nanfNx: (libc)FP Bit Twiddling.
  1634. * nanl: (libc)FP Bit Twiddling.
  1635. * nanosleep: (libc)Sleeping.
  1636. * nearbyint: (libc)Rounding Functions.
  1637. * nearbyintf: (libc)Rounding Functions.
  1638. * nearbyintfN: (libc)Rounding Functions.
  1639. * nearbyintfNx: (libc)Rounding Functions.
  1640. * nearbyintl: (libc)Rounding Functions.
  1641. * nextafter: (libc)FP Bit Twiddling.
  1642. * nextafterf: (libc)FP Bit Twiddling.
  1643. * nextafterfN: (libc)FP Bit Twiddling.
  1644. * nextafterfNx: (libc)FP Bit Twiddling.
  1645. * nextafterl: (libc)FP Bit Twiddling.
  1646. * nextdown: (libc)FP Bit Twiddling.
  1647. * nextdownf: (libc)FP Bit Twiddling.
  1648. * nextdownfN: (libc)FP Bit Twiddling.
  1649. * nextdownfNx: (libc)FP Bit Twiddling.
  1650. * nextdownl: (libc)FP Bit Twiddling.
  1651. * nexttoward: (libc)FP Bit Twiddling.
  1652. * nexttowardf: (libc)FP Bit Twiddling.
  1653. * nexttowardl: (libc)FP Bit Twiddling.
  1654. * nextup: (libc)FP Bit Twiddling.
  1655. * nextupf: (libc)FP Bit Twiddling.
  1656. * nextupfN: (libc)FP Bit Twiddling.
  1657. * nextupfNx: (libc)FP Bit Twiddling.
  1658. * nextupl: (libc)FP Bit Twiddling.
  1659. * nftw64: (libc)Working with Directory Trees.
  1660. * nftw: (libc)Working with Directory Trees.
  1661. * ngettext: (libc)Advanced gettext functions.
  1662. * nice: (libc)Traditional Scheduling Functions.
  1663. * nl_langinfo: (libc)The Elegant and Fast Way.
  1664. * nrand48: (libc)SVID Random.
  1665. * nrand48_r: (libc)SVID Random.
  1666. * ntohl: (libc)Byte Order.
  1667. * ntohs: (libc)Byte Order.
  1668. * ntp_adjtime: (libc)Setting and Adjusting the Time.
  1669. * ntp_gettime: (libc)Setting and Adjusting the Time.
  1670. * obstack_1grow: (libc)Growing Objects.
  1671. * obstack_1grow_fast: (libc)Extra Fast Growing.
  1672. * obstack_alignment_mask: (libc)Obstacks Data Alignment.
  1673. * obstack_alloc: (libc)Allocation in an Obstack.
  1674. * obstack_base: (libc)Status of an Obstack.
  1675. * obstack_blank: (libc)Growing Objects.
  1676. * obstack_blank_fast: (libc)Extra Fast Growing.
  1677. * obstack_chunk_size: (libc)Obstack Chunks.
  1678. * obstack_copy0: (libc)Allocation in an Obstack.
  1679. * obstack_copy: (libc)Allocation in an Obstack.
  1680. * obstack_finish: (libc)Growing Objects.
  1681. * obstack_free: (libc)Freeing Obstack Objects.
  1682. * obstack_grow0: (libc)Growing Objects.
  1683. * obstack_grow: (libc)Growing Objects.
  1684. * obstack_init: (libc)Preparing for Obstacks.
  1685. * obstack_int_grow: (libc)Growing Objects.
  1686. * obstack_int_grow_fast: (libc)Extra Fast Growing.
  1687. * obstack_next_free: (libc)Status of an Obstack.
  1688. * obstack_object_size: (libc)Growing Objects.
  1689. * obstack_object_size: (libc)Status of an Obstack.
  1690. * obstack_printf: (libc)Dynamic Output.
  1691. * obstack_ptr_grow: (libc)Growing Objects.
  1692. * obstack_ptr_grow_fast: (libc)Extra Fast Growing.
  1693. * obstack_room: (libc)Extra Fast Growing.
  1694. * obstack_vprintf: (libc)Variable Arguments Output.
  1695. * offsetof: (libc)Structure Measurement.
  1696. * on_exit: (libc)Cleanups on Exit.
  1697. * open64: (libc)Opening and Closing Files.
  1698. * open: (libc)Opening and Closing Files.
  1699. * open_memstream: (libc)String Streams.
  1700. * openat2: (libc)Opening and Closing Files.
  1701. * openat64: (libc)Opening and Closing Files.
  1702. * openat: (libc)Opening and Closing Files.
  1703. * opendir: (libc)Opening a Directory.
  1704. * openlog: (libc)openlog.
  1705. * openpty: (libc)Pseudo-Terminal Pairs.
  1706. * parse_printf_format: (libc)Parsing a Template String.
  1707. * pathconf: (libc)Pathconf.
  1708. * pause: (libc)Using Pause.
  1709. * pclose: (libc)Pipe to a Subprocess.
  1710. * perror: (libc)Error Messages.
  1711. * pidfd_getpid: (libc)Querying a Process.
  1712. * pipe: (libc)Creating a Pipe.
  1713. * pkey_alloc: (libc)Memory Protection.
  1714. * pkey_free: (libc)Memory Protection.
  1715. * pkey_get: (libc)Memory Protection.
  1716. * pkey_mprotect: (libc)Memory Protection.
  1717. * pkey_set: (libc)Memory Protection.
  1718. * poll: (libc)Other Low-Level I/O APIs.
  1719. * popen: (libc)Pipe to a Subprocess.
  1720. * posix_fallocate64: (libc)Storage Allocation.
  1721. * posix_fallocate: (libc)Storage Allocation.
  1722. * posix_memalign: (libc)Aligned Memory Blocks.
  1723. * posix_openpt: (libc)Allocation.
  1724. * pow: (libc)Exponents and Logarithms.
  1725. * powf: (libc)Exponents and Logarithms.
  1726. * powfN: (libc)Exponents and Logarithms.
  1727. * powfNx: (libc)Exponents and Logarithms.
  1728. * powl: (libc)Exponents and Logarithms.
  1729. * pown: (libc)Exponents and Logarithms.
  1730. * pownf: (libc)Exponents and Logarithms.
  1731. * pownfN: (libc)Exponents and Logarithms.
  1732. * pownfNx: (libc)Exponents and Logarithms.
  1733. * pownl: (libc)Exponents and Logarithms.
  1734. * powr: (libc)Exponents and Logarithms.
  1735. * powrf: (libc)Exponents and Logarithms.
  1736. * powrfN: (libc)Exponents and Logarithms.
  1737. * powrfNx: (libc)Exponents and Logarithms.
  1738. * powrl: (libc)Exponents and Logarithms.
  1739. * pread64: (libc)I/O Primitives.
  1740. * pread: (libc)I/O Primitives.
  1741. * preadv2: (libc)Scatter-Gather.
  1742. * preadv64: (libc)Scatter-Gather.
  1743. * preadv64v2: (libc)Scatter-Gather.
  1744. * preadv: (libc)Scatter-Gather.
  1745. * printf: (libc)Formatted Output Functions.
  1746. * printf_size: (libc)Predefined Printf Handlers.
  1747. * printf_size_info: (libc)Predefined Printf Handlers.
  1748. * psignal: (libc)Signal Messages.
  1749. * pthread_attr_destroy: (libc)Creating and Destroying Threads.
  1750. * pthread_attr_getaffinity_np: (libc)Thread CPU Affinity.
  1751. * pthread_attr_getdetachstate: (libc)Creating and Destroying Threads.
  1752. * pthread_attr_getsigmask_np: (libc)Initial Thread Signal Mask.
  1753. * pthread_attr_init: (libc)Creating and Destroying Threads.
  1754. * pthread_attr_setaffinity_np: (libc)Thread CPU Affinity.
  1755. * pthread_attr_setdetachstate: (libc)Creating and Destroying Threads.
  1756. * pthread_attr_setsigmask_np: (libc)Initial Thread Signal Mask.
  1757. * pthread_barrier_destroy: (libc)POSIX Barriers.
  1758. * pthread_barrier_init: (libc)POSIX Barriers.
  1759. * pthread_barrier_wait: (libc)POSIX Barriers.
  1760. * pthread_clockjoin_np: (libc)Joining Threads.
  1761. * pthread_cond_clockwait: (libc)Waiting with Explicit Clocks.
  1762. * pthread_create: (libc)Creating and Destroying Threads.
  1763. * pthread_detach: (libc)Creating and Destroying Threads.
  1764. * pthread_equal: (libc)POSIX Threads Other APIs.
  1765. * pthread_getaffinity_np: (libc)Thread CPU Affinity.
  1766. * pthread_getattr_default_np: (libc)Default Thread Attributes.
  1767. * pthread_getcpuclockid: (libc)POSIX Threads Other APIs.
  1768. * pthread_getname_np: (libc)Thread Names.
  1769. * pthread_getspecific: (libc)Thread-specific Data.
  1770. * pthread_gettid_np: (libc)Process Identification.
  1771. * pthread_join: (libc)Creating and Destroying Threads.
  1772. * pthread_key_create: (libc)Thread-specific Data.
  1773. * pthread_key_delete: (libc)Thread-specific Data.
  1774. * pthread_kill: (libc)Creating and Destroying Threads.
  1775. * pthread_mutex_clocklock: (libc)POSIX Mutexes.
  1776. * pthread_mutex_destroy: (libc)POSIX Mutexes.
  1777. * pthread_mutex_init: (libc)POSIX Mutexes.
  1778. * pthread_mutex_lock: (libc)POSIX Mutexes.
  1779. * pthread_mutex_timedlock: (libc)POSIX Mutexes.
  1780. * pthread_mutex_trylock: (libc)POSIX Mutexes.
  1781. * pthread_mutex_unlock: (libc)POSIX Mutexes.
  1782. * pthread_mutexattr_destroy: (libc)POSIX Mutexes.
  1783. * pthread_mutexattr_gettype: (libc)POSIX Mutexes.
  1784. * pthread_mutexattr_init: (libc)POSIX Mutexes.
  1785. * pthread_mutexattr_settype: (libc)POSIX Mutexes.
  1786. * pthread_once: (libc)POSIX Threads Other APIs.
  1787. * pthread_rwlock_clockrdlock: (libc)Waiting with Explicit Clocks.
  1788. * pthread_rwlock_clockwrlock: (libc)Waiting with Explicit Clocks.
  1789. * pthread_self: (libc)Creating and Destroying Threads.
  1790. * pthread_setaffinity_np: (libc)Thread CPU Affinity.
  1791. * pthread_setattr_default_np: (libc)Default Thread Attributes.
  1792. * pthread_setname_np: (libc)Thread Names.
  1793. * pthread_setspecific: (libc)Thread-specific Data.
  1794. * pthread_sigmask: (libc)POSIX Threads Other APIs.
  1795. * pthread_spin_destroy: (libc)POSIX Spin Locks.
  1796. * pthread_spin_init: (libc)POSIX Spin Locks.
  1797. * pthread_spin_lock: (libc)POSIX Spin Locks.
  1798. * pthread_spin_trylock: (libc)POSIX Spin Locks.
  1799. * pthread_spin_unlock: (libc)POSIX Spin Locks.
  1800. * pthread_timedjoin_np: (libc)Joining Threads.
  1801. * pthread_tryjoin_np: (libc)Joining Threads.
  1802. * ptsname: (libc)Allocation.
  1803. * ptsname_r: (libc)Allocation.
  1804. * putc: (libc)Simple Output.
  1805. * putc_unlocked: (libc)Simple Output.
  1806. * putchar: (libc)Simple Output.
  1807. * putchar_unlocked: (libc)Simple Output.
  1808. * putenv: (libc)Environment Access.
  1809. * putpwent: (libc)Writing a User Entry.
  1810. * puts: (libc)Simple Output.
  1811. * pututline: (libc)Manipulating the Database.
  1812. * pututxline: (libc)XPG Functions.
  1813. * putw: (libc)Simple Output.
  1814. * putwc: (libc)Simple Output.
  1815. * putwc_unlocked: (libc)Simple Output.
  1816. * putwchar: (libc)Simple Output.
  1817. * putwchar_unlocked: (libc)Simple Output.
  1818. * pwrite64: (libc)I/O Primitives.
  1819. * pwrite: (libc)I/O Primitives.
  1820. * pwritev2: (libc)Scatter-Gather.
  1821. * pwritev64: (libc)Scatter-Gather.
  1822. * pwritev64v2: (libc)Scatter-Gather.
  1823. * pwritev: (libc)Scatter-Gather.
  1824. * qecvt: (libc)System V Number Conversion.
  1825. * qecvt_r: (libc)System V Number Conversion.
  1826. * qfcvt: (libc)System V Number Conversion.
  1827. * qfcvt_r: (libc)System V Number Conversion.
  1828. * qgcvt: (libc)System V Number Conversion.
  1829. * qsort: (libc)Array Sort Function.
  1830. * raise: (libc)Signaling Yourself.
  1831. * rand: (libc)ISO Random.
  1832. * rand_r: (libc)ISO Random.
  1833. * random: (libc)BSD Random.
  1834. * random_r: (libc)BSD Random.
  1835. * rawmemchr: (libc)Search Functions.
  1836. * read: (libc)I/O Primitives.
  1837. * readdir64: (libc)Reading/Closing Directory.
  1838. * readdir64_r: (libc)Reading/Closing Directory.
  1839. * readdir: (libc)Reading/Closing Directory.
  1840. * readdir_r: (libc)Reading/Closing Directory.
  1841. * readlink: (libc)Symbolic Links.
  1842. * readv: (libc)Scatter-Gather.
  1843. * realloc: (libc)Changing Block Size.
  1844. * reallocarray: (libc)Changing Block Size.
  1845. * realpath: (libc)Symbolic Links.
  1846. * recv: (libc)Receiving Data.
  1847. * recvfrom: (libc)Receiving Datagrams.
  1848. * recvmsg: (libc)Other Socket APIs.
  1849. * regcomp: (libc)POSIX Regexp Compilation.
  1850. * regerror: (libc)Regexp Cleanup.
  1851. * regexec: (libc)Matching POSIX Regexps.
  1852. * regfree: (libc)Regexp Cleanup.
  1853. * register_printf_function: (libc)Registering New Conversions.
  1854. * remainder: (libc)Remainder Functions.
  1855. * remainderf: (libc)Remainder Functions.
  1856. * remainderfN: (libc)Remainder Functions.
  1857. * remainderfNx: (libc)Remainder Functions.
  1858. * remainderl: (libc)Remainder Functions.
  1859. * remove: (libc)Deleting Files.
  1860. * rename: (libc)Renaming Files.
  1861. * renameat: (libc)Renaming Files.
  1862. * rewind: (libc)File Positioning.
  1863. * rewinddir: (libc)Random Access Directory.
  1864. * rindex: (libc)Search Functions.
  1865. * rint: (libc)Rounding Functions.
  1866. * rintf: (libc)Rounding Functions.
  1867. * rintfN: (libc)Rounding Functions.
  1868. * rintfNx: (libc)Rounding Functions.
  1869. * rintl: (libc)Rounding Functions.
  1870. * rmdir: (libc)Deleting Files.
  1871. * rootn: (libc)Exponents and Logarithms.
  1872. * rootnf: (libc)Exponents and Logarithms.
  1873. * rootnfN: (libc)Exponents and Logarithms.
  1874. * rootnfNx: (libc)Exponents and Logarithms.
  1875. * rootnl: (libc)Exponents and Logarithms.
  1876. * round: (libc)Rounding Functions.
  1877. * roundeven: (libc)Rounding Functions.
  1878. * roundevenf: (libc)Rounding Functions.
  1879. * roundevenfN: (libc)Rounding Functions.
  1880. * roundevenfNx: (libc)Rounding Functions.
  1881. * roundevenl: (libc)Rounding Functions.
  1882. * roundf: (libc)Rounding Functions.
  1883. * roundfN: (libc)Rounding Functions.
  1884. * roundfNx: (libc)Rounding Functions.
  1885. * roundl: (libc)Rounding Functions.
  1886. * rpmatch: (libc)Yes-or-No Questions.
  1887. * rsqrt: (libc)Exponents and Logarithms.
  1888. * rsqrtf: (libc)Exponents and Logarithms.
  1889. * rsqrtfN: (libc)Exponents and Logarithms.
  1890. * rsqrtfNx: (libc)Exponents and Logarithms.
  1891. * rsqrtl: (libc)Exponents and Logarithms.
  1892. * sbrk: (libc)Resizing the Data Segment.
  1893. * scalb: (libc)Normalization Functions.
  1894. * scalbf: (libc)Normalization Functions.
  1895. * scalbl: (libc)Normalization Functions.
  1896. * scalbln: (libc)Normalization Functions.
  1897. * scalblnf: (libc)Normalization Functions.
  1898. * scalblnfN: (libc)Normalization Functions.
  1899. * scalblnfNx: (libc)Normalization Functions.
  1900. * scalblnl: (libc)Normalization Functions.
  1901. * scalbn: (libc)Normalization Functions.
  1902. * scalbnf: (libc)Normalization Functions.
  1903. * scalbnfN: (libc)Normalization Functions.
  1904. * scalbnfNx: (libc)Normalization Functions.
  1905. * scalbnl: (libc)Normalization Functions.
  1906. * scandir64: (libc)Scanning Directory Content.
  1907. * scandir: (libc)Scanning Directory Content.
  1908. * scanf: (libc)Formatted Input Functions.
  1909. * sched_get_priority_max: (libc)Basic Scheduling Functions.
  1910. * sched_get_priority_min: (libc)Basic Scheduling Functions.
  1911. * sched_getaffinity: (libc)CPU Affinity.
  1912. * sched_getattr: (libc)Extensible Scheduling.
  1913. * sched_getcpu: (libc)CPU Affinity.
  1914. * sched_getparam: (libc)Basic Scheduling Functions.
  1915. * sched_getscheduler: (libc)Basic Scheduling Functions.
  1916. * sched_rr_get_interval: (libc)Basic Scheduling Functions.
  1917. * sched_setaffinity: (libc)CPU Affinity.
  1918. * sched_setattr: (libc)Extensible Scheduling.
  1919. * sched_setparam: (libc)Basic Scheduling Functions.
  1920. * sched_setscheduler: (libc)Basic Scheduling Functions.
  1921. * sched_yield: (libc)Basic Scheduling Functions.
  1922. * secure_getenv: (libc)Environment Access.
  1923. * seed48: (libc)SVID Random.
  1924. * seed48_r: (libc)SVID Random.
  1925. * seekdir: (libc)Random Access Directory.
  1926. * select: (libc)Waiting for I/O.
  1927. * sem_clockwait: (libc)POSIX Semaphores.
  1928. * sem_close: (libc)POSIX Semaphores.
  1929. * sem_destroy: (libc)POSIX Semaphores.
  1930. * sem_getvalue: (libc)POSIX Semaphores.
  1931. * sem_init: (libc)POSIX Semaphores.
  1932. * sem_open: (libc)POSIX Semaphores.
  1933. * sem_post: (libc)POSIX Semaphores.
  1934. * sem_timedwait: (libc)POSIX Semaphores.
  1935. * sem_trywait: (libc)POSIX Semaphores.
  1936. * sem_unlink: (libc)POSIX Semaphores.
  1937. * sem_wait: (libc)POSIX Semaphores.
  1938. * semctl: (libc)Semaphores.
  1939. * semget: (libc)Semaphores.
  1940. * semop: (libc)Semaphores.
  1941. * semtimedop: (libc)Semaphores.
  1942. * send: (libc)Sending Data.
  1943. * sendmsg: (libc)Other Socket APIs.
  1944. * sendto: (libc)Sending Datagrams.
  1945. * setbuf: (libc)Controlling Buffering.
  1946. * setbuffer: (libc)Controlling Buffering.
  1947. * setcontext: (libc)System V contexts.
  1948. * setdomainname: (libc)Host Identification.
  1949. * setegid: (libc)Setting Groups.
  1950. * setenv: (libc)Environment Access.
  1951. * seteuid: (libc)Setting User ID.
  1952. * setfsent: (libc)fstab.
  1953. * setgid: (libc)Setting Groups.
  1954. * setgrent: (libc)Scanning All Groups.
  1955. * setgroups: (libc)Setting Groups.
  1956. * sethostent: (libc)Host Names.
  1957. * sethostid: (libc)Host Identification.
  1958. * sethostname: (libc)Host Identification.
  1959. * setitimer: (libc)Setting an Alarm.
  1960. * setjmp: (libc)Non-Local Details.
  1961. * setlinebuf: (libc)Controlling Buffering.
  1962. * setlocale: (libc)Setting the Locale.
  1963. * setlogmask: (libc)setlogmask.
  1964. * setmntent: (libc)mtab.
  1965. * setnetent: (libc)Networks Database.
  1966. * setnetgrent: (libc)Lookup Netgroup.
  1967. * setpayload: (libc)FP Bit Twiddling.
  1968. * setpayloadf: (libc)FP Bit Twiddling.
  1969. * setpayloadfN: (libc)FP Bit Twiddling.
  1970. * setpayloadfNx: (libc)FP Bit Twiddling.
  1971. * setpayloadl: (libc)FP Bit Twiddling.
  1972. * setpayloadsig: (libc)FP Bit Twiddling.
  1973. * setpayloadsigf: (libc)FP Bit Twiddling.
  1974. * setpayloadsigfN: (libc)FP Bit Twiddling.
  1975. * setpayloadsigfNx: (libc)FP Bit Twiddling.
  1976. * setpayloadsigl: (libc)FP Bit Twiddling.
  1977. * setpgid: (libc)Process Group Functions.
  1978. * setpgrp: (libc)Process Group Functions.
  1979. * setpriority: (libc)Traditional Scheduling Functions.
  1980. * setprotoent: (libc)Protocols Database.
  1981. * setpwent: (libc)Scanning All Users.
  1982. * setregid: (libc)Setting Groups.
  1983. * setreuid: (libc)Setting User ID.
  1984. * setrlimit64: (libc)Limits on Resources.
  1985. * setrlimit: (libc)Limits on Resources.
  1986. * setservent: (libc)Services Database.
  1987. * setsid: (libc)Process Group Functions.
  1988. * setsockopt: (libc)Socket Option Functions.
  1989. * setstate: (libc)BSD Random.
  1990. * setstate_r: (libc)BSD Random.
  1991. * settimeofday: (libc)Setting and Adjusting the Time.
  1992. * setuid: (libc)Setting User ID.
  1993. * setutent: (libc)Manipulating the Database.
  1994. * setutxent: (libc)XPG Functions.
  1995. * setvbuf: (libc)Controlling Buffering.
  1996. * shm_open: (libc)Memory-mapped I/O.
  1997. * shm_unlink: (libc)Memory-mapped I/O.
  1998. * shutdown: (libc)Closing a Socket.
  1999. * sigabbrev_np: (libc)Signal Messages.
  2000. * sigaction: (libc)Advanced Signal Handling.
  2001. * sigaddset: (libc)Signal Sets.
  2002. * sigaltstack: (libc)Signal Stack.
  2003. * sigblock: (libc)BSD Signal Handling.
  2004. * sigdelset: (libc)Signal Sets.
  2005. * sigdescr_np: (libc)Signal Messages.
  2006. * sigemptyset: (libc)Signal Sets.
  2007. * sigfillset: (libc)Signal Sets.
  2008. * siginterrupt: (libc)BSD Signal Handling.
  2009. * sigismember: (libc)Signal Sets.
  2010. * siglongjmp: (libc)Non-Local Exits and Signals.
  2011. * sigmask: (libc)BSD Signal Handling.
  2012. * signal: (libc)Basic Signal Handling.
  2013. * signbit: (libc)FP Bit Twiddling.
  2014. * significand: (libc)Normalization Functions.
  2015. * significandf: (libc)Normalization Functions.
  2016. * significandl: (libc)Normalization Functions.
  2017. * sigpause: (libc)BSD Signal Handling.
  2018. * sigpending: (libc)Checking for Pending Signals.
  2019. * sigprocmask: (libc)Process Signal Mask.
  2020. * sigsetjmp: (libc)Non-Local Exits and Signals.
  2021. * sigsetmask: (libc)BSD Signal Handling.
  2022. * sigstack: (libc)Signal Stack.
  2023. * sigsuspend: (libc)Sigsuspend.
  2024. * sin: (libc)Trig Functions.
  2025. * sincos: (libc)Trig Functions.
  2026. * sincosf: (libc)Trig Functions.
  2027. * sincosfN: (libc)Trig Functions.
  2028. * sincosfNx: (libc)Trig Functions.
  2029. * sincosl: (libc)Trig Functions.
  2030. * sinf: (libc)Trig Functions.
  2031. * sinfN: (libc)Trig Functions.
  2032. * sinfNx: (libc)Trig Functions.
  2033. * sinh: (libc)Hyperbolic Functions.
  2034. * sinhf: (libc)Hyperbolic Functions.
  2035. * sinhfN: (libc)Hyperbolic Functions.
  2036. * sinhfNx: (libc)Hyperbolic Functions.
  2037. * sinhl: (libc)Hyperbolic Functions.
  2038. * sinl: (libc)Trig Functions.
  2039. * sinpi: (libc)Trig Functions.
  2040. * sinpif: (libc)Trig Functions.
  2041. * sinpifN: (libc)Trig Functions.
  2042. * sinpifNx: (libc)Trig Functions.
  2043. * sinpil: (libc)Trig Functions.
  2044. * sleep: (libc)Sleeping.
  2045. * snprintf: (libc)Formatted Output Functions.
  2046. * socket: (libc)Creating a Socket.
  2047. * socketpair: (libc)Socket Pairs.
  2048. * sprintf: (libc)Formatted Output Functions.
  2049. * sqrt: (libc)Exponents and Logarithms.
  2050. * sqrtf: (libc)Exponents and Logarithms.
  2051. * sqrtfN: (libc)Exponents and Logarithms.
  2052. * sqrtfNx: (libc)Exponents and Logarithms.
  2053. * sqrtl: (libc)Exponents and Logarithms.
  2054. * srand48: (libc)SVID Random.
  2055. * srand48_r: (libc)SVID Random.
  2056. * srand: (libc)ISO Random.
  2057. * srandom: (libc)BSD Random.
  2058. * srandom_r: (libc)BSD Random.
  2059. * sscanf: (libc)Formatted Input Functions.
  2060. * ssignal: (libc)Basic Signal Handling.
  2061. * stat64: (libc)Reading Attributes.
  2062. * stat: (libc)Reading Attributes.
  2063. * stdc_bit_ceil_uc: (libc)Bit Manipulation.
  2064. * stdc_bit_ceil_ui: (libc)Bit Manipulation.
  2065. * stdc_bit_ceil_ul: (libc)Bit Manipulation.
  2066. * stdc_bit_ceil_ull: (libc)Bit Manipulation.
  2067. * stdc_bit_ceil_us: (libc)Bit Manipulation.
  2068. * stdc_bit_floor_uc: (libc)Bit Manipulation.
  2069. * stdc_bit_floor_ui: (libc)Bit Manipulation.
  2070. * stdc_bit_floor_ul: (libc)Bit Manipulation.
  2071. * stdc_bit_floor_ull: (libc)Bit Manipulation.
  2072. * stdc_bit_floor_us: (libc)Bit Manipulation.
  2073. * stdc_bit_width_uc: (libc)Bit Manipulation.
  2074. * stdc_bit_width_ui: (libc)Bit Manipulation.
  2075. * stdc_bit_width_ul: (libc)Bit Manipulation.
  2076. * stdc_bit_width_ull: (libc)Bit Manipulation.
  2077. * stdc_bit_width_us: (libc)Bit Manipulation.
  2078. * stdc_count_ones_uc: (libc)Bit Manipulation.
  2079. * stdc_count_ones_ui: (libc)Bit Manipulation.
  2080. * stdc_count_ones_ul: (libc)Bit Manipulation.
  2081. * stdc_count_ones_ull: (libc)Bit Manipulation.
  2082. * stdc_count_ones_us: (libc)Bit Manipulation.
  2083. * stdc_count_zeros_uc: (libc)Bit Manipulation.
  2084. * stdc_count_zeros_ui: (libc)Bit Manipulation.
  2085. * stdc_count_zeros_ul: (libc)Bit Manipulation.
  2086. * stdc_count_zeros_ull: (libc)Bit Manipulation.
  2087. * stdc_count_zeros_us: (libc)Bit Manipulation.
  2088. * stdc_first_leading_one_uc: (libc)Bit Manipulation.
  2089. * stdc_first_leading_one_ui: (libc)Bit Manipulation.
  2090. * stdc_first_leading_one_ul: (libc)Bit Manipulation.
  2091. * stdc_first_leading_one_ull: (libc)Bit Manipulation.
  2092. * stdc_first_leading_one_us: (libc)Bit Manipulation.
  2093. * stdc_first_leading_zero_uc: (libc)Bit Manipulation.
  2094. * stdc_first_leading_zero_ui: (libc)Bit Manipulation.
  2095. * stdc_first_leading_zero_ul: (libc)Bit Manipulation.
  2096. * stdc_first_leading_zero_ull: (libc)Bit Manipulation.
  2097. * stdc_first_leading_zero_us: (libc)Bit Manipulation.
  2098. * stdc_first_trailing_one_uc: (libc)Bit Manipulation.
  2099. * stdc_first_trailing_one_ui: (libc)Bit Manipulation.
  2100. * stdc_first_trailing_one_ul: (libc)Bit Manipulation.
  2101. * stdc_first_trailing_one_ull: (libc)Bit Manipulation.
  2102. * stdc_first_trailing_one_us: (libc)Bit Manipulation.
  2103. * stdc_first_trailing_zero_uc: (libc)Bit Manipulation.
  2104. * stdc_first_trailing_zero_ui: (libc)Bit Manipulation.
  2105. * stdc_first_trailing_zero_ul: (libc)Bit Manipulation.
  2106. * stdc_first_trailing_zero_ull: (libc)Bit Manipulation.
  2107. * stdc_first_trailing_zero_us: (libc)Bit Manipulation.
  2108. * stdc_has_single_bit_uc: (libc)Bit Manipulation.
  2109. * stdc_has_single_bit_ui: (libc)Bit Manipulation.
  2110. * stdc_has_single_bit_ul: (libc)Bit Manipulation.
  2111. * stdc_has_single_bit_ull: (libc)Bit Manipulation.
  2112. * stdc_has_single_bit_us: (libc)Bit Manipulation.
  2113. * stdc_leading_ones_uc: (libc)Bit Manipulation.
  2114. * stdc_leading_ones_ui: (libc)Bit Manipulation.
  2115. * stdc_leading_ones_ul: (libc)Bit Manipulation.
  2116. * stdc_leading_ones_ull: (libc)Bit Manipulation.
  2117. * stdc_leading_ones_us: (libc)Bit Manipulation.
  2118. * stdc_leading_zeros_uc: (libc)Bit Manipulation.
  2119. * stdc_leading_zeros_ui: (libc)Bit Manipulation.
  2120. * stdc_leading_zeros_ul: (libc)Bit Manipulation.
  2121. * stdc_leading_zeros_ull: (libc)Bit Manipulation.
  2122. * stdc_leading_zeros_us: (libc)Bit Manipulation.
  2123. * stdc_trailing_ones_uc: (libc)Bit Manipulation.
  2124. * stdc_trailing_ones_ui: (libc)Bit Manipulation.
  2125. * stdc_trailing_ones_ul: (libc)Bit Manipulation.
  2126. * stdc_trailing_ones_ull: (libc)Bit Manipulation.
  2127. * stdc_trailing_ones_us: (libc)Bit Manipulation.
  2128. * stdc_trailing_zeros_uc: (libc)Bit Manipulation.
  2129. * stdc_trailing_zeros_ui: (libc)Bit Manipulation.
  2130. * stdc_trailing_zeros_ul: (libc)Bit Manipulation.
  2131. * stdc_trailing_zeros_ull: (libc)Bit Manipulation.
  2132. * stdc_trailing_zeros_us: (libc)Bit Manipulation.
  2133. * stime: (libc)Setting and Adjusting the Time.
  2134. * stpcpy: (libc)Copying Strings and Arrays.
  2135. * stpncpy: (libc)Truncating Strings.
  2136. * strcasecmp: (libc)String/Array Comparison.
  2137. * strcasestr: (libc)Search Functions.
  2138. * strcat: (libc)Concatenating Strings.
  2139. * strchr: (libc)Search Functions.
  2140. * strchrnul: (libc)Search Functions.
  2141. * strcmp: (libc)String/Array Comparison.
  2142. * strcoll: (libc)Collation Functions.
  2143. * strcpy: (libc)Copying Strings and Arrays.
  2144. * strcspn: (libc)Search Functions.
  2145. * strdup: (libc)Copying Strings and Arrays.
  2146. * strdupa: (libc)Copying Strings and Arrays.
  2147. * strerror: (libc)Error Messages.
  2148. * strerror_l: (libc)Error Messages.
  2149. * strerror_r: (libc)Error Messages.
  2150. * strerror_r: (libc)Error Messages.
  2151. * strerrordesc_np: (libc)Error Messages.
  2152. * strerrorname_np: (libc)Error Messages.
  2153. * strfmon: (libc)Formatting Numbers.
  2154. * strfromd: (libc)Printing of Floats.
  2155. * strfromf: (libc)Printing of Floats.
  2156. * strfromfN: (libc)Printing of Floats.
  2157. * strfromfNx: (libc)Printing of Floats.
  2158. * strfroml: (libc)Printing of Floats.
  2159. * strfry: (libc)Shuffling Bytes.
  2160. * strftime: (libc)Formatting Calendar Time.
  2161. * strftime_l: (libc)Formatting Calendar Time.
  2162. * strlcat: (libc)Truncating Strings.
  2163. * strlcpy: (libc)Truncating Strings.
  2164. * strlen: (libc)String Length.
  2165. * strncasecmp: (libc)String/Array Comparison.
  2166. * strncat: (libc)Truncating Strings.
  2167. * strncmp: (libc)String/Array Comparison.
  2168. * strncpy: (libc)Truncating Strings.
  2169. * strndup: (libc)Truncating Strings.
  2170. * strndupa: (libc)Truncating Strings.
  2171. * strnlen: (libc)String Length.
  2172. * strpbrk: (libc)Search Functions.
  2173. * strptime: (libc)Low-Level Time String Parsing.
  2174. * strrchr: (libc)Search Functions.
  2175. * strsep: (libc)Finding Tokens in a String.
  2176. * strsignal: (libc)Signal Messages.
  2177. * strspn: (libc)Search Functions.
  2178. * strstr: (libc)Search Functions.
  2179. * strtod: (libc)Parsing of Floats.
  2180. * strtof: (libc)Parsing of Floats.
  2181. * strtofN: (libc)Parsing of Floats.
  2182. * strtofNx: (libc)Parsing of Floats.
  2183. * strtoimax: (libc)Parsing of Integers.
  2184. * strtok: (libc)Finding Tokens in a String.
  2185. * strtok_r: (libc)Finding Tokens in a String.
  2186. * strtol: (libc)Parsing of Integers.
  2187. * strtold: (libc)Parsing of Floats.
  2188. * strtoll: (libc)Parsing of Integers.
  2189. * strtoq: (libc)Parsing of Integers.
  2190. * strtoul: (libc)Parsing of Integers.
  2191. * strtoull: (libc)Parsing of Integers.
  2192. * strtoumax: (libc)Parsing of Integers.
  2193. * strtouq: (libc)Parsing of Integers.
  2194. * strverscmp: (libc)String/Array Comparison.
  2195. * strxfrm: (libc)Collation Functions.
  2196. * stty: (libc)BSD Terminal Modes.
  2197. * swapcontext: (libc)System V contexts.
  2198. * swprintf: (libc)Formatted Output Functions.
  2199. * swscanf: (libc)Formatted Input Functions.
  2200. * symlink: (libc)Symbolic Links.
  2201. * sync: (libc)Synchronizing I/O.
  2202. * syscall: (libc)System Calls.
  2203. * sysconf: (libc)Sysconf Definition.
  2204. * syslog: (libc)syslog; vsyslog.
  2205. * system: (libc)Running a Command.
  2206. * sysv_signal: (libc)Basic Signal Handling.
  2207. * tan: (libc)Trig Functions.
  2208. * tanf: (libc)Trig Functions.
  2209. * tanfN: (libc)Trig Functions.
  2210. * tanfNx: (libc)Trig Functions.
  2211. * tanh: (libc)Hyperbolic Functions.
  2212. * tanhf: (libc)Hyperbolic Functions.
  2213. * tanhfN: (libc)Hyperbolic Functions.
  2214. * tanhfNx: (libc)Hyperbolic Functions.
  2215. * tanhl: (libc)Hyperbolic Functions.
  2216. * tanl: (libc)Trig Functions.
  2217. * tanpi: (libc)Trig Functions.
  2218. * tanpif: (libc)Trig Functions.
  2219. * tanpifN: (libc)Trig Functions.
  2220. * tanpifNx: (libc)Trig Functions.
  2221. * tanpil: (libc)Trig Functions.
  2222. * tcdrain: (libc)Line Control.
  2223. * tcflow: (libc)Line Control.
  2224. * tcflush: (libc)Line Control.
  2225. * tcgetattr: (libc)Mode Functions.
  2226. * tcgetpgrp: (libc)Terminal Access Functions.
  2227. * tcgetsid: (libc)Terminal Access Functions.
  2228. * tcsendbreak: (libc)Line Control.
  2229. * tcsetattr: (libc)Mode Functions.
  2230. * tcsetpgrp: (libc)Terminal Access Functions.
  2231. * tdelete: (libc)Tree Search Function.
  2232. * tdestroy: (libc)Tree Search Function.
  2233. * telldir: (libc)Random Access Directory.
  2234. * tempnam: (libc)Temporary Files.
  2235. * textdomain: (libc)Locating gettext catalog.
  2236. * tfind: (libc)Tree Search Function.
  2237. * tgamma: (libc)Special Functions.
  2238. * tgammaf: (libc)Special Functions.
  2239. * tgammafN: (libc)Special Functions.
  2240. * tgammafNx: (libc)Special Functions.
  2241. * tgammal: (libc)Special Functions.
  2242. * tgkill: (libc)Signaling Another Process.
  2243. * thrd_create: (libc)ISO C Thread Management.
  2244. * thrd_current: (libc)ISO C Thread Management.
  2245. * thrd_detach: (libc)ISO C Thread Management.
  2246. * thrd_equal: (libc)ISO C Thread Management.
  2247. * thrd_exit: (libc)ISO C Thread Management.
  2248. * thrd_join: (libc)ISO C Thread Management.
  2249. * thrd_sleep: (libc)ISO C Thread Management.
  2250. * thrd_yield: (libc)ISO C Thread Management.
  2251. * time: (libc)Getting the Time.
  2252. * timegm: (libc)Broken-down Time.
  2253. * timelocal: (libc)Broken-down Time.
  2254. * times: (libc)Processor Time.
  2255. * timespec_get: (libc)Getting the Time.
  2256. * timespec_getres: (libc)Getting the Time.
  2257. * tmpfile64: (libc)Temporary Files.
  2258. * tmpfile: (libc)Temporary Files.
  2259. * tmpnam: (libc)Temporary Files.
  2260. * tmpnam_r: (libc)Temporary Files.
  2261. * toascii: (libc)Case Conversion.
  2262. * tolower: (libc)Case Conversion.
  2263. * totalorder: (libc)FP Comparison Functions.
  2264. * totalorderf: (libc)FP Comparison Functions.
  2265. * totalorderfN: (libc)FP Comparison Functions.
  2266. * totalorderfNx: (libc)FP Comparison Functions.
  2267. * totalorderl: (libc)FP Comparison Functions.
  2268. * totalordermag: (libc)FP Comparison Functions.
  2269. * totalordermagf: (libc)FP Comparison Functions.
  2270. * totalordermagfN: (libc)FP Comparison Functions.
  2271. * totalordermagfNx: (libc)FP Comparison Functions.
  2272. * totalordermagl: (libc)FP Comparison Functions.
  2273. * toupper: (libc)Case Conversion.
  2274. * towctrans: (libc)Wide Character Case Conversion.
  2275. * towlower: (libc)Wide Character Case Conversion.
  2276. * towupper: (libc)Wide Character Case Conversion.
  2277. * trunc: (libc)Rounding Functions.
  2278. * truncate64: (libc)File Size.
  2279. * truncate: (libc)File Size.
  2280. * truncf: (libc)Rounding Functions.
  2281. * truncfN: (libc)Rounding Functions.
  2282. * truncfNx: (libc)Rounding Functions.
  2283. * truncl: (libc)Rounding Functions.
  2284. * tsearch: (libc)Tree Search Function.
  2285. * tss_create: (libc)ISO C Thread-local Storage.
  2286. * tss_delete: (libc)ISO C Thread-local Storage.
  2287. * tss_get: (libc)ISO C Thread-local Storage.
  2288. * tss_set: (libc)ISO C Thread-local Storage.
  2289. * ttyname: (libc)Is It a Terminal.
  2290. * ttyname_r: (libc)Is It a Terminal.
  2291. * twalk: (libc)Tree Search Function.
  2292. * twalk_r: (libc)Tree Search Function.
  2293. * tzset: (libc)Time Zone State.
  2294. * uabs: (libc)Absolute Value.
  2295. * ufromfp: (libc)Rounding Functions.
  2296. * ufromfpf: (libc)Rounding Functions.
  2297. * ufromfpfN: (libc)Rounding Functions.
  2298. * ufromfpfNx: (libc)Rounding Functions.
  2299. * ufromfpl: (libc)Rounding Functions.
  2300. * ufromfpx: (libc)Rounding Functions.
  2301. * ufromfpxf: (libc)Rounding Functions.
  2302. * ufromfpxfN: (libc)Rounding Functions.
  2303. * ufromfpxfNx: (libc)Rounding Functions.
  2304. * ufromfpxl: (libc)Rounding Functions.
  2305. * ulabs: (libc)Absolute Value.
  2306. * ulimit: (libc)Limits on Resources.
  2307. * ullabs: (libc)Absolute Value.
  2308. * umask: (libc)Setting Permissions.
  2309. * umaxabs: (libc)Absolute Value.
  2310. * umount2: (libc)Mount-Unmount-Remount.
  2311. * umount: (libc)Mount-Unmount-Remount.
  2312. * uname: (libc)Platform Type.
  2313. * ungetc: (libc)How Unread.
  2314. * ungetwc: (libc)How Unread.
  2315. * unlink: (libc)Deleting Files.
  2316. * unlinkat: (libc)Deleting Files.
  2317. * unlockpt: (libc)Allocation.
  2318. * unsetenv: (libc)Environment Access.
  2319. * updwtmp: (libc)Manipulating the Database.
  2320. * utime: (libc)File Times.
  2321. * utimensat: (libc)File Times.
  2322. * utimes: (libc)File Times.
  2323. * utmpname: (libc)Manipulating the Database.
  2324. * utmpxname: (libc)XPG Functions.
  2325. * va_arg: (libc)Argument Macros.
  2326. * va_copy: (libc)Argument Macros.
  2327. * va_end: (libc)Argument Macros.
  2328. * va_start: (libc)Argument Macros.
  2329. * valloc: (libc)Aligned Memory Blocks.
  2330. * vasprintf: (libc)Variable Arguments Output.
  2331. * vdprintf: (libc)Variable Arguments Output.
  2332. * verr: (libc)Error Messages.
  2333. * verrx: (libc)Error Messages.
  2334. * versionsort64: (libc)Scanning Directory Content.
  2335. * versionsort: (libc)Scanning Directory Content.
  2336. * vfork: (libc)Creating a Process.
  2337. * vfprintf: (libc)Variable Arguments Output.
  2338. * vfscanf: (libc)Variable Arguments Input.
  2339. * vfwprintf: (libc)Variable Arguments Output.
  2340. * vfwscanf: (libc)Variable Arguments Input.
  2341. * vlimit: (libc)Limits on Resources.
  2342. * vprintf: (libc)Variable Arguments Output.
  2343. * vscanf: (libc)Variable Arguments Input.
  2344. * vsnprintf: (libc)Variable Arguments Output.
  2345. * vsprintf: (libc)Variable Arguments Output.
  2346. * vsscanf: (libc)Variable Arguments Input.
  2347. * vswprintf: (libc)Variable Arguments Output.
  2348. * vswscanf: (libc)Variable Arguments Input.
  2349. * vsyslog: (libc)syslog; vsyslog.
  2350. * vwarn: (libc)Error Messages.
  2351. * vwarnx: (libc)Error Messages.
  2352. * vwprintf: (libc)Variable Arguments Output.
  2353. * vwscanf: (libc)Variable Arguments Input.
  2354. * wait3: (libc)BSD Wait Functions.
  2355. * wait4: (libc)Process Completion.
  2356. * wait: (libc)Process Completion.
  2357. * waitpid: (libc)Process Completion.
  2358. * warn: (libc)Error Messages.
  2359. * warnx: (libc)Error Messages.
  2360. * wcpcpy: (libc)Copying Strings and Arrays.
  2361. * wcpncpy: (libc)Truncating Strings.
  2362. * wcrtomb: (libc)Converting a Character.
  2363. * wcscasecmp: (libc)String/Array Comparison.
  2364. * wcscat: (libc)Concatenating Strings.
  2365. * wcschr: (libc)Search Functions.
  2366. * wcschrnul: (libc)Search Functions.
  2367. * wcscmp: (libc)String/Array Comparison.
  2368. * wcscoll: (libc)Collation Functions.
  2369. * wcscpy: (libc)Copying Strings and Arrays.
  2370. * wcscspn: (libc)Search Functions.
  2371. * wcsdup: (libc)Copying Strings and Arrays.
  2372. * wcsftime: (libc)Formatting Calendar Time.
  2373. * wcslcat: (libc)Truncating Strings.
  2374. * wcslcpy: (libc)Truncating Strings.
  2375. * wcslen: (libc)String Length.
  2376. * wcsncasecmp: (libc)String/Array Comparison.
  2377. * wcsncat: (libc)Truncating Strings.
  2378. * wcsncmp: (libc)String/Array Comparison.
  2379. * wcsncpy: (libc)Truncating Strings.
  2380. * wcsnlen: (libc)String Length.
  2381. * wcsnrtombs: (libc)Converting Strings.
  2382. * wcspbrk: (libc)Search Functions.
  2383. * wcsrchr: (libc)Search Functions.
  2384. * wcsrtombs: (libc)Converting Strings.
  2385. * wcsspn: (libc)Search Functions.
  2386. * wcsstr: (libc)Search Functions.
  2387. * wcstod: (libc)Parsing of Floats.
  2388. * wcstof: (libc)Parsing of Floats.
  2389. * wcstofN: (libc)Parsing of Floats.
  2390. * wcstofNx: (libc)Parsing of Floats.
  2391. * wcstoimax: (libc)Parsing of Integers.
  2392. * wcstok: (libc)Finding Tokens in a String.
  2393. * wcstol: (libc)Parsing of Integers.
  2394. * wcstold: (libc)Parsing of Floats.
  2395. * wcstoll: (libc)Parsing of Integers.
  2396. * wcstombs: (libc)Non-reentrant String Conversion.
  2397. * wcstoq: (libc)Parsing of Integers.
  2398. * wcstoul: (libc)Parsing of Integers.
  2399. * wcstoull: (libc)Parsing of Integers.
  2400. * wcstoumax: (libc)Parsing of Integers.
  2401. * wcstouq: (libc)Parsing of Integers.
  2402. * wcswcs: (libc)Search Functions.
  2403. * wcsxfrm: (libc)Collation Functions.
  2404. * wctob: (libc)Converting a Character.
  2405. * wctomb: (libc)Non-reentrant Character Conversion.
  2406. * wctrans: (libc)Wide Character Case Conversion.
  2407. * wctype: (libc)Classification of Wide Characters.
  2408. * wmemchr: (libc)Search Functions.
  2409. * wmemcmp: (libc)String/Array Comparison.
  2410. * wmemcpy: (libc)Copying Strings and Arrays.
  2411. * wmemmove: (libc)Copying Strings and Arrays.
  2412. * wmempcpy: (libc)Copying Strings and Arrays.
  2413. * wmemset: (libc)Copying Strings and Arrays.
  2414. * wordexp: (libc)Calling Wordexp.
  2415. * wordfree: (libc)Calling Wordexp.
  2416. * wprintf: (libc)Formatted Output Functions.
  2417. * write: (libc)I/O Primitives.
  2418. * writev: (libc)Scatter-Gather.
  2419. * wscanf: (libc)Formatted Input Functions.
  2420. * y0: (libc)Special Functions.
  2421. * y0f: (libc)Special Functions.
  2422. * y0fN: (libc)Special Functions.
  2423. * y0fNx: (libc)Special Functions.
  2424. * y0l: (libc)Special Functions.
  2425. * y1: (libc)Special Functions.
  2426. * y1f: (libc)Special Functions.
  2427. * y1fN: (libc)Special Functions.
  2428. * y1fNx: (libc)Special Functions.
  2429. * y1l: (libc)Special Functions.
  2430. * yn: (libc)Special Functions.
  2431. * ynf: (libc)Special Functions.
  2432. * ynfN: (libc)Special Functions.
  2433. * ynfNx: (libc)Special Functions.
  2434. * ynl: (libc)Special Functions.
  2435. END-INFO-DIR-ENTRY
  2436. 
  2437. File: libc.info, Node: Variable Index, Next: File Index, Prev: Function Index, Up: Top
  2438. Variable and Constant Macro Index
  2439. *********************************
  2440. �[index�]
  2441. * Menu:
  2442. * __libc_single_threaded: Single-Threaded. (line 15)
  2443. * __rseq_flags: Restartable Sequences.
  2444. (line 68)
  2445. * __rseq_offset: Restartable Sequences.
  2446. (line 45)
  2447. * __rseq_size: Restartable Sequences.
  2448. (line 54)
  2449. * __STDC_WANT_IEC_60559_BFP_EXT__: Feature Test Macros. (line 242)
  2450. * __STDC_WANT_IEC_60559_EXT__: Feature Test Macros. (line 263)
  2451. * __STDC_WANT_IEC_60559_FUNCS_EXT__: Feature Test Macros. (line 249)
  2452. * __STDC_WANT_IEC_60559_TYPES_EXT__: Feature Test Macros. (line 256)
  2453. * __STDC_WANT_LIB_EXT2__: Feature Test Macros. (line 236)
  2454. * _ATFILE_SOURCE: Feature Test Macros. (line 292)
  2455. * _Complex_I: Complex Numbers. (line 21)
  2456. * _CS_LFS_CFLAGS: String Parameters. (line 44)
  2457. * _CS_LFS_LDFLAGS: String Parameters. (line 51)
  2458. * _CS_LFS_LIBS: String Parameters. (line 57)
  2459. * _CS_LFS_LINTFLAGS: String Parameters. (line 64)
  2460. * _CS_LFS64_CFLAGS: String Parameters. (line 71)
  2461. * _CS_LFS64_LDFLAGS: String Parameters. (line 78)
  2462. * _CS_LFS64_LIBS: String Parameters. (line 85)
  2463. * _CS_LFS64_LINTFLAGS: String Parameters. (line 92)
  2464. * _CS_PATH: String Parameters. (line 38)
  2465. * _DEFAULT_SOURCE: Feature Test Macros. (line 276)
  2466. * _DYNAMIC_STACK_SIZE_SOURCE: Feature Test Macros. (line 304)
  2467. * _FILE_OFFSET_BITS: Feature Test Macros. (line 143)
  2468. * _FORTIFY_SOURCE: Feature Test Macros. (line 296)
  2469. * _GNU_SOURCE: Feature Test Macros. (line 269)
  2470. * _IOFBF: Controlling Buffering.
  2471. (line 45)
  2472. * _IOLBF: Controlling Buffering.
  2473. (line 51)
  2474. * _IONBF: Controlling Buffering.
  2475. (line 57)
  2476. * _ISOC11_SOURCE: Feature Test Macros. (line 218)
  2477. * _ISOC23_SOURCE: Feature Test Macros. (line 223)
  2478. * _ISOC2Y_SOURCE: Feature Test Macros. (line 230)
  2479. * _ISOC99_SOURCE: Feature Test Macros. (line 212)
  2480. * _LARGEFILE_SOURCE: Feature Test Macros. (line 113)
  2481. * _LARGEFILE64_SOURCE: Feature Test Macros. (line 125)
  2482. * _PATH_FSTAB: Mount Information. (line 29)
  2483. * _PATH_MNTTAB: Mount Information. (line 29)
  2484. * _PATH_MOUNTED: Mount Information. (line 29)
  2485. * _PATH_UTMP: Manipulating the Database.
  2486. (line 312)
  2487. * _PATH_WTMP: Manipulating the Database.
  2488. (line 315)
  2489. * _PC_ASYNC_IO: Pathconf. (line 102)
  2490. * _PC_CHOWN_RESTRICTED: Pathconf. (line 86)
  2491. * _PC_FILESIZEBITS: Pathconf. (line 110)
  2492. * _PC_LINK_MAX: Pathconf. (line 62)
  2493. * _PC_MAX_CANON: Pathconf. (line 66)
  2494. * _PC_MAX_INPUT: Pathconf. (line 70)
  2495. * _PC_NAME_MAX: Pathconf. (line 74)
  2496. * _PC_NO_TRUNC: Pathconf. (line 90)
  2497. * _PC_PATH_MAX: Pathconf. (line 78)
  2498. * _PC_PIPE_BUF: Pathconf. (line 82)
  2499. * _PC_PRIO_IO: Pathconf. (line 106)
  2500. * _PC_REC_INCR_XFER_SIZE: Pathconf. (line 114)
  2501. * _PC_REC_MAX_XFER_SIZE: Pathconf. (line 118)
  2502. * _PC_REC_MIN_XFER_SIZE: Pathconf. (line 122)
  2503. * _PC_REC_XFER_ALIGN: Pathconf. (line 126)
  2504. * _PC_SYNC_IO: Pathconf. (line 98)
  2505. * _PC_VDISABLE: Pathconf. (line 94)
  2506. * _POSIX_AIO_LISTIO_MAX: Minimums. (line 11)
  2507. * _POSIX_AIO_MAX: Minimums. (line 18)
  2508. * _POSIX_ARG_MAX: Minimums. (line 26)
  2509. * _POSIX_C_SOURCE: Feature Test Macros. (line 46)
  2510. * _POSIX_CHILD_MAX: Minimums. (line 33)
  2511. * _POSIX_CHOWN_RESTRICTED: Options for Files. (line 26)
  2512. * _POSIX_JOB_CONTROL: Job Control. (line 18)
  2513. * _POSIX_JOB_CONTROL <1>: System Options. (line 19)
  2514. * _POSIX_LINK_MAX: File Minimums. (line 13)
  2515. * _POSIX_MAX_CANON: File Minimums. (line 20)
  2516. * _POSIX_MAX_INPUT: File Minimums. (line 26)
  2517. * _POSIX_NAME_MAX: File Minimums. (line 33)
  2518. * _POSIX_NGROUPS_MAX: Minimums. (line 39)
  2519. * _POSIX_NO_TRUNC: Options for Files. (line 34)
  2520. * _POSIX_OPEN_MAX: Minimums. (line 45)
  2521. * _POSIX_PATH_MAX: File Minimums. (line 39)
  2522. * _POSIX_PIPE_BUF: File Minimums. (line 45)
  2523. * _POSIX_SAVED_IDS: System Options. (line 27)
  2524. * _POSIX_SOURCE: Feature Test Macros. (line 37)
  2525. * _POSIX_SSIZE_MAX: Minimums. (line 51)
  2526. * _POSIX_STREAM_MAX: Minimums. (line 57)
  2527. * _POSIX_TZNAME_MAX: Minimums. (line 63)
  2528. * _POSIX_VDISABLE: Special Characters. (line 22)
  2529. * _POSIX_VDISABLE <1>: Options for Files. (line 40)
  2530. * _POSIX_VERSION: Version Supported. (line 6)
  2531. * _POSIX2_BC_BASE_MAX: Utility Minimums. (line 6)
  2532. * _POSIX2_BC_DIM_MAX: Utility Minimums. (line 11)
  2533. * _POSIX2_BC_SCALE_MAX: Utility Minimums. (line 16)
  2534. * _POSIX2_BC_STRING_MAX: Utility Minimums. (line 21)
  2535. * _POSIX2_C_DEV: System Options. (line 44)
  2536. * _POSIX2_C_VERSION: Version Supported. (line 23)
  2537. * _POSIX2_COLL_WEIGHTS_MAX: Utility Minimums. (line 27)
  2538. * _POSIX2_EQUIV_CLASS_MAX: Utility Minimums. (line 45)
  2539. * _POSIX2_EXPR_NEST_MAX: Utility Minimums. (line 33)
  2540. * _POSIX2_FORT_DEV: System Options. (line 51)
  2541. * _POSIX2_FORT_RUN: System Options. (line 57)
  2542. * _POSIX2_LINE_MAX: Utility Minimums. (line 39)
  2543. * _POSIX2_LOCALEDEF: System Options. (line 64)
  2544. * _POSIX2_RE_DUP_MAX: Minimums. (line 69)
  2545. * _POSIX2_SW_DEV: System Options. (line 70)
  2546. * _REENTRANT: Feature Test Macros. (line 309)
  2547. * _SC_2_C_DEV: Constants for Sysconf.
  2548. (line 306)
  2549. * _SC_2_FORT_DEV: Constants for Sysconf.
  2550. (line 311)
  2551. * _SC_2_FORT_RUN: Constants for Sysconf.
  2552. (line 316)
  2553. * _SC_2_LOCALEDEF: Constants for Sysconf.
  2554. (line 321)
  2555. * _SC_2_SW_DEV: Constants for Sysconf.
  2556. (line 326)
  2557. * _SC_2_VERSION: Constants for Sysconf.
  2558. (line 375)
  2559. * _SC_AIO_LISTIO_MAX: Constants for Sysconf.
  2560. (line 123)
  2561. * _SC_AIO_MAX: Constants for Sysconf.
  2562. (line 128)
  2563. * _SC_AIO_PRIO_DELTA_MAX: Constants for Sysconf.
  2564. (line 132)
  2565. * _SC_ARG_MAX: Constants for Sysconf.
  2566. (line 10)
  2567. * _SC_ASYNCHRONOUS_IO: Constants for Sysconf.
  2568. (line 72)
  2569. * _SC_ATEXIT_MAX: Constants for Sysconf.
  2570. (line 402)
  2571. * _SC_AVPHYS_PAGES: Query Memory Parameters.
  2572. (line 53)
  2573. * _SC_AVPHYS_PAGES <1>: Constants for Sysconf.
  2574. (line 398)
  2575. * _SC_BC_BASE_MAX: Constants for Sysconf.
  2576. (line 331)
  2577. * _SC_BC_DIM_MAX: Constants for Sysconf.
  2578. (line 335)
  2579. * _SC_BC_SCALE_MAX: Constants for Sysconf.
  2580. (line 339)
  2581. * _SC_BC_STRING_MAX: Constants for Sysconf.
  2582. (line 343)
  2583. * _SC_CHAR_BIT: Constants for Sysconf.
  2584. (line 532)
  2585. * _SC_CHAR_MAX: Constants for Sysconf.
  2586. (line 536)
  2587. * _SC_CHAR_MIN: Constants for Sysconf.
  2588. (line 541)
  2589. * _SC_CHARCLASS_NAME_MAX: Constants for Sysconf.
  2590. (line 51)
  2591. * _SC_CHILD_MAX: Constants for Sysconf.
  2592. (line 14)
  2593. * _SC_CLK_TCK: Constants for Sysconf.
  2594. (line 46)
  2595. * _SC_COLL_WEIGHTS_MAX: Constants for Sysconf.
  2596. (line 348)
  2597. * _SC_DELAYTIMER_MAX: Constants for Sysconf.
  2598. (line 139)
  2599. * _SC_EQUIV_CLASS_MAX: Constants for Sysconf.
  2600. (line 363)
  2601. * _SC_EXPR_NEST_MAX: Constants for Sysconf.
  2602. (line 353)
  2603. * _SC_FSYNC: Constants for Sysconf.
  2604. (line 87)
  2605. * _SC_GETGR_R_SIZE_MAX: Constants for Sysconf.
  2606. (line 237)
  2607. * _SC_GETPW_R_SIZE_MAX: Constants for Sysconf.
  2608. (line 242)
  2609. * _SC_INT_MAX: Constants for Sysconf.
  2610. (line 546)
  2611. * _SC_INT_MIN: Constants for Sysconf.
  2612. (line 551)
  2613. * _SC_JOB_CONTROL: Constants for Sysconf.
  2614. (line 34)
  2615. * _SC_LEVEL1_DCACHE_ASSOC: Constants for Sysconf.
  2616. (line 430)
  2617. * _SC_LEVEL1_DCACHE_LINESIZE: Constants for Sysconf.
  2618. (line 434)
  2619. * _SC_LEVEL1_DCACHE_SIZE: Constants for Sysconf.
  2620. (line 426)
  2621. * _SC_LEVEL1_ICACHE_ASSOC: Constants for Sysconf.
  2622. (line 411)
  2623. * _SC_LEVEL1_ICACHE_LINESIZE: Constants for Sysconf.
  2624. (line 415)
  2625. * _SC_LEVEL1_ICACHE_SIZE: Constants for Sysconf.
  2626. (line 407)
  2627. * _SC_LEVEL2_CACHE_ASSOC: Constants for Sysconf.
  2628. (line 449)
  2629. * _SC_LEVEL2_CACHE_LINESIZE: Constants for Sysconf.
  2630. (line 453)
  2631. * _SC_LEVEL2_CACHE_SIZE: Constants for Sysconf.
  2632. (line 445)
  2633. * _SC_LEVEL3_CACHE_ASSOC: Constants for Sysconf.
  2634. (line 461)
  2635. * _SC_LEVEL3_CACHE_LINESIZE: Constants for Sysconf.
  2636. (line 465)
  2637. * _SC_LEVEL3_CACHE_SIZE: Constants for Sysconf.
  2638. (line 457)
  2639. * _SC_LEVEL4_CACHE_ASSOC: Constants for Sysconf.
  2640. (line 473)
  2641. * _SC_LEVEL4_CACHE_LINESIZE: Constants for Sysconf.
  2642. (line 477)
  2643. * _SC_LEVEL4_CACHE_SIZE: Constants for Sysconf.
  2644. (line 469)
  2645. * _SC_LINE_MAX: Constants for Sysconf.
  2646. (line 358)
  2647. * _SC_LOGIN_NAME_MAX: Constants for Sysconf.
  2648. (line 247)
  2649. * _SC_LONG_BIT: Constants for Sysconf.
  2650. (line 556)
  2651. * _SC_MAPPED_FILES: Constants for Sysconf.
  2652. (line 91)
  2653. * _SC_MB_LEN_MAX: Constants for Sysconf.
  2654. (line 564)
  2655. * _SC_MEMLOCK: Constants for Sysconf.
  2656. (line 95)
  2657. * _SC_MEMLOCK_RANGE: Constants for Sysconf.
  2658. (line 99)
  2659. * _SC_MEMORY_PROTECTION: Constants for Sysconf.
  2660. (line 104)
  2661. * _SC_MESSAGE_PASSING: Constants for Sysconf.
  2662. (line 109)
  2663. * _SC_MINSIGSTKSZ: Constants for Sysconf.
  2664. (line 643)
  2665. * _SC_MQ_OPEN_MAX: Constants for Sysconf.
  2666. (line 144)
  2667. * _SC_MQ_PRIO_MAX: Constants for Sysconf.
  2668. (line 148)
  2669. * _SC_NGROUPS_MAX: Constants for Sysconf.
  2670. (line 30)
  2671. * _SC_NL_ARGMAX: Constants for Sysconf.
  2672. (line 619)
  2673. * _SC_NL_LANGMAX: Constants for Sysconf.
  2674. (line 623)
  2675. * _SC_NL_MSGMAX: Constants for Sysconf.
  2676. (line 627)
  2677. * _SC_NL_NMAX: Constants for Sysconf.
  2678. (line 631)
  2679. * _SC_NL_SETMAX: Constants for Sysconf.
  2680. (line 635)
  2681. * _SC_NL_TEXTMAX: Constants for Sysconf.
  2682. (line 639)
  2683. * _SC_NPROCESSORS_CONF: Processor Resources. (line 13)
  2684. * _SC_NPROCESSORS_CONF <1>: Constants for Sysconf.
  2685. (line 386)
  2686. * _SC_NPROCESSORS_ONLN: Processor Resources. (line 19)
  2687. * _SC_NPROCESSORS_ONLN <1>: Constants for Sysconf.
  2688. (line 390)
  2689. * _SC_NZERO: Constants for Sysconf.
  2690. (line 569)
  2691. * _SC_OPEN_MAX: Constants for Sysconf.
  2692. (line 18)
  2693. * _SC_PAGESIZE: Memory-mapped I/O. (line 29)
  2694. * _SC_PAGESIZE <1>: Query Memory Parameters.
  2695. (line 29)
  2696. * _SC_PAGESIZE <2>: Constants for Sysconf.
  2697. (line 380)
  2698. * _SC_PHYS_PAGES: Query Memory Parameters.
  2699. (line 47)
  2700. * _SC_PHYS_PAGES <1>: Constants for Sysconf.
  2701. (line 394)
  2702. * _SC_PII: Constants for Sysconf.
  2703. (line 174)
  2704. * _SC_PII_INTERNET: Constants for Sysconf.
  2705. (line 186)
  2706. * _SC_PII_INTERNET_DGRAM: Constants for Sysconf.
  2707. (line 207)
  2708. * _SC_PII_INTERNET_STREAM: Constants for Sysconf.
  2709. (line 202)
  2710. * _SC_PII_OSI: Constants for Sysconf.
  2711. (line 190)
  2712. * _SC_PII_OSI_CLTS: Constants for Sysconf.
  2713. (line 216)
  2714. * _SC_PII_OSI_COTS: Constants for Sysconf.
  2715. (line 212)
  2716. * _SC_PII_OSI_M: Constants for Sysconf.
  2717. (line 220)
  2718. * _SC_PII_SOCKET: Constants for Sysconf.
  2719. (line 182)
  2720. * _SC_PII_XTI: Constants for Sysconf.
  2721. (line 178)
  2722. * _SC_PRIORITIZED_IO: Constants for Sysconf.
  2723. (line 77)
  2724. * _SC_PRIORITY_SCHEDULING: Constants for Sysconf.
  2725. (line 63)
  2726. * _SC_REALTIME_SIGNALS: Constants for Sysconf.
  2727. (line 58)
  2728. * _SC_RTSIG_MAX: Constants for Sysconf.
  2729. (line 152)
  2730. * _SC_SAVED_IDS: Constants for Sysconf.
  2731. (line 38)
  2732. * _SC_SCHAR_MAX: Constants for Sysconf.
  2733. (line 579)
  2734. * _SC_SCHAR_MIN: Constants for Sysconf.
  2735. (line 584)
  2736. * _SC_SELECT: Constants for Sysconf.
  2737. (line 194)
  2738. * _SC_SEM_NSEMS_MAX: Constants for Sysconf.
  2739. (line 156)
  2740. * _SC_SEM_VALUE_MAX: Constants for Sysconf.
  2741. (line 161)
  2742. * _SC_SEMAPHORES: Constants for Sysconf.
  2743. (line 114)
  2744. * _SC_SHARED_MEMORY_OBJECTS: Constants for Sysconf.
  2745. (line 118)
  2746. * _SC_SHRT_MAX: Constants for Sysconf.
  2747. (line 589)
  2748. * _SC_SHRT_MIN: Constants for Sysconf.
  2749. (line 594)
  2750. * _SC_SIGQUEUE_MAX: Constants for Sysconf.
  2751. (line 166)
  2752. * _SC_SIGSTKSZ: Constants for Sysconf.
  2753. (line 649)
  2754. * _SC_SSIZE_MAX: Constants for Sysconf.
  2755. (line 574)
  2756. * _SC_STREAM_MAX: Constants for Sysconf.
  2757. (line 22)
  2758. * _SC_SYNCHRONIZED_IO: Constants for Sysconf.
  2759. (line 82)
  2760. * _SC_T_IOV_MAX: Constants for Sysconf.
  2761. (line 224)
  2762. * _SC_THREAD_ATTR_STACKADDR: Constants for Sysconf.
  2763. (line 276)
  2764. * _SC_THREAD_ATTR_STACKSIZE: Constants for Sysconf.
  2765. (line 281)
  2766. * _SC_THREAD_DESTRUCTOR_ITERATIONS: Constants for Sysconf.
  2767. (line 256)
  2768. * _SC_THREAD_KEYS_MAX: Constants for Sysconf.
  2769. (line 261)
  2770. * _SC_THREAD_PRIO_INHERIT: Constants for Sysconf.
  2771. (line 291)
  2772. * _SC_THREAD_PRIO_PROTECT: Constants for Sysconf.
  2773. (line 296)
  2774. * _SC_THREAD_PRIORITY_SCHEDULING: Constants for Sysconf.
  2775. (line 286)
  2776. * _SC_THREAD_PROCESS_SHARED: Constants for Sysconf.
  2777. (line 301)
  2778. * _SC_THREAD_SAFE_FUNCTIONS: Constants for Sysconf.
  2779. (line 232)
  2780. * _SC_THREAD_STACK_MIN: Constants for Sysconf.
  2781. (line 266)
  2782. * _SC_THREAD_THREADS_MAX: Constants for Sysconf.
  2783. (line 271)
  2784. * _SC_THREADS: Constants for Sysconf.
  2785. (line 228)
  2786. * _SC_TIMER_MAX: Constants for Sysconf.
  2787. (line 170)
  2788. * _SC_TIMERS: Constants for Sysconf.
  2789. (line 68)
  2790. * _SC_TTY_NAME_MAX: Constants for Sysconf.
  2791. (line 252)
  2792. * _SC_TZNAME_MAX: Constants for Sysconf.
  2793. (line 26)
  2794. * _SC_UCHAR_MAX: Constants for Sysconf.
  2795. (line 599)
  2796. * _SC_UINT_MAX: Constants for Sysconf.
  2797. (line 604)
  2798. * _SC_UIO_MAXIOV: Constants for Sysconf.
  2799. (line 198)
  2800. * _SC_ULONG_MAX: Constants for Sysconf.
  2801. (line 609)
  2802. * _SC_USHRT_MAX: Constants for Sysconf.
  2803. (line 614)
  2804. * _SC_VERSION: Constants for Sysconf.
  2805. (line 42)
  2806. * _SC_VERSION <1>: Constants for Sysconf.
  2807. (line 370)
  2808. * _SC_WORD_BIT: Constants for Sysconf.
  2809. (line 560)
  2810. * _SC_XOPEN_CRYPT: Constants for Sysconf.
  2811. (line 506)
  2812. * _SC_XOPEN_ENH_I18N: Constants for Sysconf.
  2813. (line 512)
  2814. * _SC_XOPEN_LEGACY: Constants for Sysconf.
  2815. (line 502)
  2816. * _SC_XOPEN_REALTIME: Constants for Sysconf.
  2817. (line 493)
  2818. * _SC_XOPEN_REALTIME_THREADS: Constants for Sysconf.
  2819. (line 497)
  2820. * _SC_XOPEN_SHM: Constants for Sysconf.
  2821. (line 516)
  2822. * _SC_XOPEN_UNIX: Constants for Sysconf.
  2823. (line 489)
  2824. * _SC_XOPEN_VERSION: Constants for Sysconf.
  2825. (line 481)
  2826. * _SC_XOPEN_XCU_VERSION: Constants for Sysconf.
  2827. (line 485)
  2828. * _SC_XOPEN_XPG2: Constants for Sysconf.
  2829. (line 520)
  2830. * _SC_XOPEN_XPG3: Constants for Sysconf.
  2831. (line 524)
  2832. * _SC_XOPEN_XPG4: Constants for Sysconf.
  2833. (line 528)
  2834. * _THREAD_SAFE: Feature Test Macros. (line 310)
  2835. * _TIME_BITS: Feature Test Macros. (line 174)
  2836. * _XOPEN_SOURCE: Feature Test Macros. (line 91)
  2837. * _XOPEN_SOURCE_EXTENDED: Feature Test Macros. (line 92)
  2838. * (*__gconv_end_fct): glibc iconv Implementation.
  2839. (line 558)
  2840. * (*__gconv_fct): glibc iconv Implementation.
  2841. (line 577)
  2842. * (*__gconv_init_fct): glibc iconv Implementation.
  2843. (line 404)
  2844. * (void): Error Messages. (line 326)
  2845. * ABDAY_1: The Elegant and Fast Way.
  2846. (line 35)
  2847. * ABDAY_2: The Elegant and Fast Way.
  2848. (line 36)
  2849. * ABDAY_3: The Elegant and Fast Way.
  2850. (line 37)
  2851. * ABDAY_4: The Elegant and Fast Way.
  2852. (line 38)
  2853. * ABDAY_5: The Elegant and Fast Way.
  2854. (line 39)
  2855. * ABDAY_6: The Elegant and Fast Way.
  2856. (line 40)
  2857. * ABDAY_7: The Elegant and Fast Way.
  2858. (line 41)
  2859. * ABMON_1: The Elegant and Fast Way.
  2860. (line 53)
  2861. * ABMON_10: The Elegant and Fast Way.
  2862. (line 62)
  2863. * ABMON_11: The Elegant and Fast Way.
  2864. (line 63)
  2865. * ABMON_12: The Elegant and Fast Way.
  2866. (line 64)
  2867. * ABMON_2: The Elegant and Fast Way.
  2868. (line 54)
  2869. * ABMON_3: The Elegant and Fast Way.
  2870. (line 55)
  2871. * ABMON_4: The Elegant and Fast Way.
  2872. (line 56)
  2873. * ABMON_5: The Elegant and Fast Way.
  2874. (line 57)
  2875. * ABMON_6: The Elegant and Fast Way.
  2876. (line 58)
  2877. * ABMON_7: The Elegant and Fast Way.
  2878. (line 59)
  2879. * ABMON_8: The Elegant and Fast Way.
  2880. (line 60)
  2881. * ABMON_9: The Elegant and Fast Way.
  2882. (line 61)
  2883. * ACCOUNTING: Manipulating the Database.
  2884. (line 113)
  2885. * AF_FILE: Address Formats. (line 55)
  2886. * AF_INET: Address Formats. (line 60)
  2887. * AF_INET6: Address Formats. (line 66)
  2888. * AF_LOCAL: Address Formats. (line 40)
  2889. * AF_UNIX: Address Formats. (line 47)
  2890. * AF_UNSPEC: Address Formats. (line 71)
  2891. * ALT_DIGITS: The Elegant and Fast Way.
  2892. (line 164)
  2893. * ALTMON_1: The Elegant and Fast Way.
  2894. (line 83)
  2895. * ALTMON_10: The Elegant and Fast Way.
  2896. (line 92)
  2897. * ALTMON_11: The Elegant and Fast Way.
  2898. (line 93)
  2899. * ALTMON_12: The Elegant and Fast Way.
  2900. (line 94)
  2901. * ALTMON_2: The Elegant and Fast Way.
  2902. (line 84)
  2903. * ALTMON_3: The Elegant and Fast Way.
  2904. (line 85)
  2905. * ALTMON_4: The Elegant and Fast Way.
  2906. (line 86)
  2907. * ALTMON_5: The Elegant and Fast Way.
  2908. (line 87)
  2909. * ALTMON_6: The Elegant and Fast Way.
  2910. (line 88)
  2911. * ALTMON_7: The Elegant and Fast Way.
  2912. (line 89)
  2913. * ALTMON_8: The Elegant and Fast Way.
  2914. (line 90)
  2915. * ALTMON_9: The Elegant and Fast Way.
  2916. (line 91)
  2917. * ALTWERASE: Local Modes. (line 130)
  2918. * AM_STR: The Elegant and Fast Way.
  2919. (line 109)
  2920. * ARG_MAX: General Limits. (line 24)
  2921. * argp_err_exit_status: Argp Global Variables.
  2922. (line 44)
  2923. * ARGP_ERR_UNKNOWN: Argp Parser Functions.
  2924. (line 45)
  2925. * ARGP_HELP_BUG_ADDR: Argp Help Flags. (line 45)
  2926. * ARGP_HELP_DOC: Argp Help Flags. (line 41)
  2927. * ARGP_HELP_EXIT_ERR: Argp Help Flags. (line 58)
  2928. * ARGP_HELP_EXIT_OK: Argp Help Flags. (line 62)
  2929. * ARGP_HELP_LONG: Argp Help Flags. (line 26)
  2930. * ARGP_HELP_LONG_ONLY: Argp Help Flags. (line 50)
  2931. * ARGP_HELP_POST_DOC: Argp Help Flags. (line 36)
  2932. * ARGP_HELP_PRE_DOC: Argp Help Flags. (line 31)
  2933. * ARGP_HELP_SEE: Argp Help Flags. (line 21)
  2934. * ARGP_HELP_SHORT_USAGE: Argp Help Flags. (line 15)
  2935. * ARGP_HELP_STD_ERR: Argp Help Flags. (line 69)
  2936. * ARGP_HELP_STD_HELP: Argp Help Flags. (line 81)
  2937. * ARGP_HELP_STD_USAGE: Argp Help Flags. (line 75)
  2938. * ARGP_HELP_USAGE: Argp Help Flags. (line 11)
  2939. * ARGP_IN_ORDER: Argp Flags. (line 34)
  2940. * ARGP_KEY_ARG: Argp Special Keys. (line 11)
  2941. * ARGP_KEY_ARGS: Argp Special Keys. (line 30)
  2942. * ARGP_KEY_END: Argp Special Keys. (line 57)
  2943. * ARGP_KEY_ERROR: Argp Special Keys. (line 83)
  2944. * ARGP_KEY_FINI: Argp Special Keys. (line 88)
  2945. * ARGP_KEY_HELP_ARGS_DOC: Argp Help Filter Keys.
  2946. (line 32)
  2947. * ARGP_KEY_HELP_DUP_ARGS_NOTE: Argp Help Filter Keys.
  2948. (line 27)
  2949. * ARGP_KEY_HELP_EXTRA: Argp Help Filter Keys.
  2950. (line 22)
  2951. * ARGP_KEY_HELP_HEADER: Argp Help Filter Keys.
  2952. (line 18)
  2953. * ARGP_KEY_HELP_POST_DOC: Argp Help Filter Keys.
  2954. (line 14)
  2955. * ARGP_KEY_HELP_PRE_DOC: Argp Help Filter Keys.
  2956. (line 10)
  2957. * ARGP_KEY_INIT: Argp Special Keys. (line 71)
  2958. * ARGP_KEY_NO_ARGS: Argp Special Keys. (line 63)
  2959. * ARGP_KEY_SUCCESS: Argp Special Keys. (line 78)
  2960. * ARGP_LONG_ONLY: Argp Flags. (line 51)
  2961. * ARGP_NO_ARGS: Argp Flags. (line 26)
  2962. * ARGP_NO_ERRS: Argp Flags. (line 18)
  2963. * ARGP_NO_EXIT: Argp Flags. (line 46)
  2964. * ARGP_NO_HELP: Argp Flags. (line 40)
  2965. * ARGP_PARSE_ARGV0: Argp Flags. (line 11)
  2966. * argp_program_bug_address: Argp Global Variables.
  2967. (line 17)
  2968. * argp_program_version: Argp Global Variables.
  2969. (line 10)
  2970. * argp_program_version_hook: Argp Global Variables.
  2971. (line 24)
  2972. * ARGP_SILENT: Argp Flags. (line 59)
  2973. * AT_EACCESS: Testing File Access. (line 106)
  2974. * AT_EMPTY_PATH: Descriptor-Relative Access.
  2975. (line 102)
  2976. * AT_FDCWD: Descriptor-Relative Access.
  2977. (line 67)
  2978. * AT_NO_AUTOMOUNT: Descriptor-Relative Access.
  2979. (line 108)
  2980. * AT_SYMLINK_FOLLOW: Descriptor-Relative Access.
  2981. (line 118)
  2982. * AT_SYMLINK_NOFOLLOW: Descriptor-Relative Access.
  2983. (line 123)
  2984. * B0: Line Speed. (line 86)
  2985. * B1000000: Line Speed. (line 91)
  2986. * B10000000: Line Speed. (line 91)
  2987. * B110: Line Speed. (line 86)
  2988. * B115200: Line Speed. (line 91)
  2989. * B1152000: Line Speed. (line 91)
  2990. * B1200: Line Speed. (line 86)
  2991. * B134: Line Speed. (line 86)
  2992. * B14400: Line Speed. (line 91)
  2993. * B150: Line Speed. (line 86)
  2994. * B1500000: Line Speed. (line 91)
  2995. * B153600: Line Speed. (line 91)
  2996. * B1800: Line Speed. (line 86)
  2997. * B19200: Line Speed. (line 86)
  2998. * B200: Line Speed. (line 86)
  2999. * B2000000: Line Speed. (line 91)
  3000. * B230400: Line Speed. (line 91)
  3001. * B2400: Line Speed. (line 86)
  3002. * B2500000: Line Speed. (line 91)
  3003. * B28800: Line Speed. (line 91)
  3004. * B300: Line Speed. (line 86)
  3005. * B3000000: Line Speed. (line 91)
  3006. * B307200: Line Speed. (line 91)
  3007. * B33600: Line Speed. (line 91)
  3008. * B3500000: Line Speed. (line 91)
  3009. * B38400: Line Speed. (line 86)
  3010. * B4000000: Line Speed. (line 91)
  3011. * B460800: Line Speed. (line 91)
  3012. * B4800: Line Speed. (line 86)
  3013. * B50: Line Speed. (line 86)
  3014. * B500000: Line Speed. (line 91)
  3015. * B5000000: Line Speed. (line 91)
  3016. * B57600: Line Speed. (line 91)
  3017. * B576000: Line Speed. (line 91)
  3018. * B600: Line Speed. (line 86)
  3019. * B614400: Line Speed. (line 91)
  3020. * B7200: Line Speed. (line 91)
  3021. * B75: Line Speed. (line 86)
  3022. * B76800: Line Speed. (line 91)
  3023. * B921600: Line Speed. (line 91)
  3024. * B9600: Line Speed. (line 86)
  3025. * BAUD_MAX: Line Speed. (line 180)
  3026. * BC_BASE_MAX: Utility Limits. (line 15)
  3027. * BC_DIM_MAX: Utility Limits. (line 20)
  3028. * BC_SCALE_MAX: Utility Limits. (line 25)
  3029. * BC_STRING_MAX: Utility Limits. (line 30)
  3030. * BOOT_TIME: Manipulating the Database.
  3031. (line 81)
  3032. * BOOT_TIME <1>: XPG Functions. (line 50)
  3033. * BRKINT: Input Modes. (line 67)
  3034. * BUFSIZ: Controlling Buffering.
  3035. (line 63)
  3036. * CCTS_OFLOW: Control Modes. (line 94)
  3037. * CHAR_BIT: Width of Type. (line 52)
  3038. * CHAR_MAX: Range of Type. (line 39)
  3039. * CHAR_MIN: Range of Type. (line 34)
  3040. * CHAR_WIDTH: Width of Type. (line 11)
  3041. * CHILD_MAX: General Limits. (line 29)
  3042. * CIGNORE: Control Modes. (line 108)
  3043. * CLK_TCK: Processor Time. (line 43)
  3044. * CLOCAL: Control Modes. (line 18)
  3045. * CLOCK_BOOTTIME: Getting the Time. (line 87)
  3046. * CLOCK_BOOTTIME_ALARM: Getting the Time. (line 89)
  3047. * CLOCK_MONOTONIC: Getting the Time. (line 58)
  3048. * CLOCK_MONOTONIC_COARSE: Getting the Time. (line 86)
  3049. * CLOCK_MONOTONIC_RAW: Getting the Time. (line 84)
  3050. * CLOCK_PROCESS_CPUTIME_ID: Getting the Time. (line 72)
  3051. * CLOCK_REALTIME: Getting the Time. (line 47)
  3052. * CLOCK_REALTIME_ALARM: Getting the Time. (line 88)
  3053. * CLOCK_REALTIME_COARSE: Getting the Time. (line 85)
  3054. * CLOCK_TAI: Getting the Time. (line 90)
  3055. * CLOCK_THREAD_CPUTIME_ID: Getting the Time. (line 77)
  3056. * CLOCKS_PER_SEC: Processor And CPU Time.
  3057. (line 21)
  3058. * CLOCKS_PER_SEC <1>: CPU Time. (line 33)
  3059. * CLOSE_RANGE_CLOEXEC: Opening and Closing Files.
  3060. (line 355)
  3061. * CLOSE_RANGE_UNSHARE: Opening and Closing Files.
  3062. (line 351)
  3063. * CODESET: The Elegant and Fast Way.
  3064. (line 31)
  3065. * COLL_WEIGHTS_MAX: Utility Limits. (line 35)
  3066. * COREFILE: Program Error Signals.
  3067. (line 32)
  3068. * CPU_SETSIZE: CPU Affinity. (line 62)
  3069. * CREAD: Control Modes. (line 42)
  3070. * CRNCYSTR: The Elegant and Fast Way.
  3071. (line 176)
  3072. * CRTS_IFLOW: Control Modes. (line 99)
  3073. * CS5: Control Modes. (line 75)
  3074. * CS6: Control Modes. (line 79)
  3075. * CS7: Control Modes. (line 83)
  3076. * CS8: Control Modes. (line 87)
  3077. * CSIZE: Control Modes. (line 71)
  3078. * CSTOPB: Control Modes. (line 47)
  3079. * CURRENCY_SYMBOL: The Elegant and Fast Way.
  3080. (line 175)
  3081. * D_FMT: The Elegant and Fast Way.
  3082. (line 121)
  3083. * D_T_FMT: The Elegant and Fast Way.
  3084. (line 118)
  3085. * DAY_1: The Elegant and Fast Way.
  3086. (line 44)
  3087. * DAY_2: The Elegant and Fast Way.
  3088. (line 45)
  3089. * DAY_3: The Elegant and Fast Way.
  3090. (line 46)
  3091. * DAY_4: The Elegant and Fast Way.
  3092. (line 47)
  3093. * DAY_5: The Elegant and Fast Way.
  3094. (line 48)
  3095. * DAY_6: The Elegant and Fast Way.
  3096. (line 49)
  3097. * DAY_7: The Elegant and Fast Way.
  3098. (line 50)
  3099. * daylight: Time Zone State. (line 63)
  3100. * DBL_DIG: Floating Point Parameters.
  3101. (line 100)
  3102. * DBL_EPSILON: Floating Point Parameters.
  3103. (line 191)
  3104. * DBL_MANT_DIG: Floating Point Parameters.
  3105. (line 80)
  3106. * DBL_MAX: Floating Point Parameters.
  3107. (line 165)
  3108. * DBL_MAX_10_EXP: Floating Point Parameters.
  3109. (line 151)
  3110. * DBL_MAX_EXP: Floating Point Parameters.
  3111. (line 139)
  3112. * DBL_MIN: Floating Point Parameters.
  3113. (line 178)
  3114. * DBL_MIN_10_EXP: Floating Point Parameters.
  3115. (line 126)
  3116. * DBL_MIN_EXP: Floating Point Parameters.
  3117. (line 114)
  3118. * DEAD_PROCESS: Manipulating the Database.
  3119. (line 109)
  3120. * DEAD_PROCESS <1>: XPG Functions. (line 78)
  3121. * DECIMAL_POINT: The Elegant and Fast Way.
  3122. (line 240)
  3123. * DLFO_EH_SEGMENT_TYPE: Dynamic Linker Introspection.
  3124. (line 242)
  3125. * DLFO_STRUCT_HAS_EH_COUNT: Dynamic Linker Introspection.
  3126. (line 232)
  3127. * DLFO_STRUCT_HAS_EH_DBASE: Dynamic Linker Introspection.
  3128. (line 223)
  3129. * DT_BLK: Directory Entries. (line 82)
  3130. * DT_CHR: Directory Entries. (line 79)
  3131. * DT_DIR: Directory Entries. (line 70)
  3132. * DT_FIFO: Directory Entries. (line 73)
  3133. * DT_LNK: Directory Entries. (line 85)
  3134. * DT_REG: Directory Entries. (line 67)
  3135. * DT_SOCK: Directory Entries. (line 76)
  3136. * DT_UNKNOWN: Directory Entries. (line 62)
  3137. * E2BIG: Error Codes. (line 50)
  3138. * EACCES: Error Codes. (line 88)
  3139. * EADDRINUSE: Error Codes. (line 328)
  3140. * EADDRNOTAVAIL: Error Codes. (line 333)
  3141. * EADV: Error Codes. (line 720)
  3142. * EAFNOSUPPORT: Error Codes. (line 322)
  3143. * EAGAIN: Error Codes. (line 220)
  3144. * EALREADY: Error Codes. (line 271)
  3145. * EAUTH: Error Codes. (line 506)
  3146. * EBACKGROUND: Error Codes. (line 548)
  3147. * EBADE: Error Codes. (line 680)
  3148. * EBADF: Error Codes. (line 63)
  3149. * EBADF <1>: Line Control. (line 138)
  3150. * EBADFD: Error Codes. (line 740)
  3151. * EBADMSG: Error Codes. (line 582)
  3152. * EBADR: Error Codes. (line 684)
  3153. * EBADRPC: Error Codes. (line 471)
  3154. * EBADRQC: Error Codes. (line 696)
  3155. * EBADSLT: Error Codes. (line 700)
  3156. * EBFONT: Error Codes. (line 708)
  3157. * EBUSY: Error Codes. (line 104)
  3158. * ECANCELED: Error Codes. (line 626)
  3159. * ECHILD: Error Codes. (line 69)
  3160. * ECHO: Local Modes. (line 23)
  3161. * ECHOCTL: Local Modes. (line 79)
  3162. * ECHOE: Local Modes. (line 28)
  3163. * ECHOK: Local Modes. (line 51)
  3164. * ECHOKE: Local Modes. (line 66)
  3165. * ECHONL: Local Modes. (line 73)
  3166. * ECHOPRT: Local Modes. (line 39)
  3167. * ECHRNG: Error Codes. (line 648)
  3168. * ECOMM: Error Codes. (line 728)
  3169. * ECONNABORTED: Error Codes. (line 354)
  3170. * ECONNREFUSED: Error Codes. (line 406)
  3171. * ECONNRESET: Error Codes. (line 359)
  3172. * ED: Error Codes. (line 565)
  3173. * EDEADLK: Error Codes. (line 75)
  3174. * EDEADLOCK: Error Codes. (line 704)
  3175. * EDESTADDRREQ: Error Codes. (line 385)
  3176. * EDIED: Error Codes. (line 558)
  3177. * EDOM: Error Codes. (line 208)
  3178. * EDOTDOT: Error Codes. (line 732)
  3179. * EDQUOT: Error Codes. (line 451)
  3180. * EEXIST: Error Codes. (line 110)
  3181. * EFAULT: Error Codes. (line 93)
  3182. * EFBIG: Error Codes. (line 175)
  3183. * EFTYPE: Error Codes. (line 498)
  3184. * EGRATUITOUS: Error Codes. (line 578)
  3185. * EGREGIOUS: Error Codes. (line 569)
  3186. * EHOSTDOWN: Error Codes. (line 424)
  3187. * EHOSTUNREACH: Error Codes. (line 429)
  3188. * EHWPOISON: Error Codes. (line 816)
  3189. * EIDRM: Error Codes. (line 586)
  3190. * EIEIO: Error Codes. (line 573)
  3191. * EILSEQ: Error Codes. (line 541)
  3192. * EINPROGRESS: Error Codes. (line 259)
  3193. * EINTR: Error Codes. (line 27)
  3194. * EINVAL: Error Codes. (line 137)
  3195. * EINVAL <1>: Error Messages. (line 91)
  3196. * EINVAL <2>: Line Control. (line 144)
  3197. * EIO: Error Codes. (line 37)
  3198. * EISCONN: Error Codes. (line 372)
  3199. * EISDIR: Error Codes. (line 132)
  3200. * EISNAM: Error Codes. (line 780)
  3201. * EKEYEXPIRED: Error Codes. (line 800)
  3202. * EKEYREJECTED: Error Codes. (line 808)
  3203. * EKEYREVOKED: Error Codes. (line 804)
  3204. * EL2HLT: Error Codes. (line 676)
  3205. * EL2NSYNC: Error Codes. (line 652)
  3206. * EL3HLT: Error Codes. (line 656)
  3207. * EL3RST: Error Codes. (line 660)
  3208. * ELIBACC: Error Codes. (line 748)
  3209. * ELIBBAD: Error Codes. (line 752)
  3210. * ELIBEXEC: Error Codes. (line 522)
  3211. * ELIBMAX: Error Codes. (line 760)
  3212. * ELIBSCN: Error Codes. (line 756)
  3213. * ELNRNG: Error Codes. (line 664)
  3214. * ELOOP: Error Codes. (line 412)
  3215. * EMEDIUMTYPE: Error Codes. (line 792)
  3216. * EMFILE: Error Codes. (line 142)
  3217. * EMLINK: Error Codes. (line 194)
  3218. * EMPTY: Manipulating the Database.
  3219. (line 72)
  3220. * EMPTY <1>: XPG Functions. (line 41)
  3221. * EMSGSIZE: Error Codes. (line 281)
  3222. * EMULTIHOP: Error Codes. (line 590)
  3223. * ENAMETOOLONG: Error Codes. (line 418)
  3224. * ENAVAIL: Error Codes. (line 776)
  3225. * endorder: Tree Search Function.
  3226. (line 132)
  3227. * ENEEDAUTH: Error Codes. (line 510)
  3228. * ENETDOWN: Error Codes. (line 339)
  3229. * ENETRESET: Error Codes. (line 349)
  3230. * ENETUNREACH: Error Codes. (line 344)
  3231. * ENFILE: Error Codes. (line 153)
  3232. * ENOANO: Error Codes. (line 692)
  3233. * ENOBUFS: Error Codes. (line 365)
  3234. * ENOCSI: Error Codes. (line 672)
  3235. * ENODATA: Error Codes. (line 594)
  3236. * ENODEV: Error Codes. (line 122)
  3237. * ENOENT: Error Codes. (line 17)
  3238. * ENOEXEC: Error Codes. (line 57)
  3239. * ENOKEY: Error Codes. (line 796)
  3240. * ENOLCK: Error Codes. (line 491)
  3241. * ENOLINK: Error Codes. (line 598)
  3242. * ENOMEDIUM: Error Codes. (line 788)
  3243. * ENOMEM: Error Codes. (line 83)
  3244. * ENOMSG: Error Codes. (line 602)
  3245. * ENONET: Error Codes. (line 712)
  3246. * ENOPKG: Error Codes. (line 716)
  3247. * ENOPROTOOPT: Error Codes. (line 291)
  3248. * ENOSPC: Error Codes. (line 180)
  3249. * ENOSR: Error Codes. (line 606)
  3250. * ENOSTR: Error Codes. (line 610)
  3251. * ENOSYS: Error Codes. (line 514)
  3252. * ENOTBLK: Error Codes. (line 98)
  3253. * ENOTCONN: Error Codes. (line 377)
  3254. * ENOTDIR: Error Codes. (line 127)
  3255. * ENOTEMPTY: Error Codes. (line 434)
  3256. * ENOTNAM: Error Codes. (line 772)
  3257. * ENOTRECOVERABLE: Error Codes. (line 637)
  3258. * ENOTSOCK: Error Codes. (line 276)
  3259. * ENOTSUP: Error Codes. (line 526)
  3260. * ENOTTY: Error Codes. (line 160)
  3261. * ENOTTY <1>: Line Control. (line 141)
  3262. * ENOTUNIQ: Error Codes. (line 736)
  3263. * environ: Environment Access. (line 133)
  3264. * ENXIO: Error Codes. (line 42)
  3265. * EOF: EOF and Errors. (line 23)
  3266. * EOPNOTSUPP: Error Codes. (line 307)
  3267. * EOVERFLOW: Error Codes. (line 614)
  3268. * EOWNERDEAD: Error Codes. (line 633)
  3269. * EPERM: Error Codes. (line 11)
  3270. * EPFNOSUPPORT: Error Codes. (line 317)
  3271. * EPIPE: Error Codes. (line 200)
  3272. * EPROCLIM: Error Codes. (line 440)
  3273. * EPROCUNAVAIL: Error Codes. (line 487)
  3274. * EPROGMISMATCH: Error Codes. (line 483)
  3275. * EPROGUNAVAIL: Error Codes. (line 479)
  3276. * EPROTO: Error Codes. (line 618)
  3277. * EPROTONOSUPPORT: Error Codes. (line 297)
  3278. * EPROTOTYPE: Error Codes. (line 286)
  3279. * EQUIV_CLASS_MAX: Utility Limits. (line 53)
  3280. * ERA: The Elegant and Fast Way.
  3281. (line 134)
  3282. * ERA_D_FMT: The Elegant and Fast Way.
  3283. (line 156)
  3284. * ERA_D_T_FMT: The Elegant and Fast Way.
  3285. (line 152)
  3286. * ERA_T_FMT: The Elegant and Fast Way.
  3287. (line 160)
  3288. * ERA_YEAR: The Elegant and Fast Way.
  3289. (line 148)
  3290. * ERANGE: Error Codes. (line 214)
  3291. * ERANGE <1>: Error Messages. (line 95)
  3292. * EREMCHG: Error Codes. (line 744)
  3293. * EREMOTE: Error Codes. (line 463)
  3294. * EREMOTEIO: Error Codes. (line 784)
  3295. * ERESTART: Error Codes. (line 644)
  3296. * ERFKILL: Error Codes. (line 812)
  3297. * EROFS: Error Codes. (line 189)
  3298. * ERPCMISMATCH: Error Codes. (line 475)
  3299. * errno: Checking for Errors. (line 14)
  3300. * error_message_count: Error Messages. (line 338)
  3301. * error_one_per_line: Error Messages. (line 344)
  3302. * error_print_progname: Error Messages. (line 326)
  3303. * ESHUTDOWN: Error Codes. (line 392)
  3304. * ESOCKTNOSUPPORT: Error Codes. (line 303)
  3305. * ESPIPE: Error Codes. (line 185)
  3306. * ESRCH: Error Codes. (line 23)
  3307. * ESRMNT: Error Codes. (line 724)
  3308. * ESTALE: Error Codes. (line 455)
  3309. * ESTRPIPE: Error Codes. (line 764)
  3310. * ETIME: Error Codes. (line 622)
  3311. * ETIMEDOUT: Error Codes. (line 401)
  3312. * ETOOMANYREFS: Error Codes. (line 397)
  3313. * ETXTBSY: Error Codes. (line 166)
  3314. * EUCLEAN: Error Codes. (line 768)
  3315. * EUNATCH: Error Codes. (line 668)
  3316. * EUSERS: Error Codes. (line 446)
  3317. * EWOULDBLOCK: Error Codes. (line 250)
  3318. * EXDEV: Error Codes. (line 115)
  3319. * EXFULL: Error Codes. (line 688)
  3320. * EXIT_FAILURE: Exit Status. (line 54)
  3321. * EXIT_SUCCESS: Exit Status. (line 45)
  3322. * EXPR_NEST_MAX: Utility Limits. (line 40)
  3323. * EXTA: Line Speed. (line 95)
  3324. * EXTB: Line Speed. (line 95)
  3325. * F_DUPFD: Control Operations. (line 32)
  3326. * F_DUPFD <1>: Duplicating Descriptors.
  3327. (line 65)
  3328. * F_GETFD: Control Operations. (line 37)
  3329. * F_GETFD <1>: Descriptor Flags. (line 17)
  3330. * F_GETFL: Control Operations. (line 45)
  3331. * F_GETFL <1>: Getting File Status Flags.
  3332. (line 8)
  3333. * F_GETLK: Control Operations. (line 53)
  3334. * F_GETLK <1>: File Locks. (line 73)
  3335. * F_GETOWN: Control Operations. (line 74)
  3336. * F_GETOWN <1>: Interrupt Input. (line 22)
  3337. * F_OFD_GETLK: Control Operations. (line 62)
  3338. * F_OFD_GETLK <1>: Open File Description Locks.
  3339. (line 56)
  3340. * F_OFD_SETLK: Control Operations. (line 66)
  3341. * F_OFD_SETLK <1>: Open File Description Locks.
  3342. (line 96)
  3343. * F_OFD_SETLKW: Control Operations. (line 70)
  3344. * F_OFD_SETLKW <1>: Open File Description Locks.
  3345. (line 142)
  3346. * F_OK: Testing File Access. (line 91)
  3347. * F_RDLCK: File Locks. (line 190)
  3348. * F_SETFD: Control Operations. (line 41)
  3349. * F_SETFD <1>: Descriptor Flags. (line 34)
  3350. * F_SETFL: Control Operations. (line 49)
  3351. * F_SETFL <1>: Getting File Status Flags.
  3352. (line 25)
  3353. * F_SETLK: Control Operations. (line 56)
  3354. * F_SETLK <1>: File Locks. (line 112)
  3355. * F_SETLKW: Control Operations. (line 59)
  3356. * F_SETLKW <1>: File Locks. (line 162)
  3357. * F_SETOWN: Control Operations. (line 78)
  3358. * F_SETOWN <1>: Interrupt Input. (line 38)
  3359. * F_UNLCK: File Locks. (line 198)
  3360. * F_WRLCK: File Locks. (line 194)
  3361. * FD_CLOEXEC: Descriptor Flags. (line 52)
  3362. * FD_SETSIZE: Waiting for I/O. (line 39)
  3363. * FE_DFL_ENV: Control Functions. (line 56)
  3364. * FE_DFL_MODE: Control Functions. (line 101)
  3365. * FE_DIVBYZERO: Status bit operations.
  3366. (line 20)
  3367. * FE_DOWNWARD: Rounding. (line 47)
  3368. * FE_INEXACT: Status bit operations.
  3369. (line 17)
  3370. * FE_INVALID: Status bit operations.
  3371. (line 29)
  3372. * FE_NOMASK_ENV: Control Functions. (line 61)
  3373. * FE_OVERFLOW: Status bit operations.
  3374. (line 26)
  3375. * FE_SNANS_ALWAYS_SIGNAL: Infinity and NaN. (line 72)
  3376. * FE_TONEAREST: Rounding. (line 39)
  3377. * FE_TOWARDZERO: Rounding. (line 51)
  3378. * FE_UNDERFLOW: Status bit operations.
  3379. (line 23)
  3380. * FE_UPWARD: Rounding. (line 43)
  3381. * FILENAME_MAX: Limits for Files. (line 70)
  3382. * FLT_DIG: Floating Point Parameters.
  3383. (line 87)
  3384. * FLT_EPSILON: Floating Point Parameters.
  3385. (line 185)
  3386. * FLT_MANT_DIG: Floating Point Parameters.
  3387. (line 67)
  3388. * FLT_MAX: Floating Point Parameters.
  3389. (line 157)
  3390. * FLT_MAX_10_EXP: Floating Point Parameters.
  3391. (line 145)
  3392. * FLT_MAX_EXP: Floating Point Parameters.
  3393. (line 132)
  3394. * FLT_MIN: Floating Point Parameters.
  3395. (line 172)
  3396. * FLT_MIN_10_EXP: Floating Point Parameters.
  3397. (line 120)
  3398. * FLT_MIN_EXP: Floating Point Parameters.
  3399. (line 107)
  3400. * FLT_RADIX: Floating Point Parameters.
  3401. (line 60)
  3402. * FLT_ROUNDS: Floating Point Parameters.
  3403. (line 28)
  3404. * FLUSHO: Local Modes. (line 145)
  3405. * FNM_CASEFOLD: Wildcard Matching. (line 73)
  3406. * FNM_EXTMATCH: Wildcard Matching. (line 80)
  3407. * FNM_FILE_NAME: Wildcard Matching. (line 30)
  3408. * FNM_LEADING_DIR: Wildcard Matching. (line 64)
  3409. * FNM_NOESCAPE: Wildcard Matching. (line 54)
  3410. * FNM_PATHNAME: Wildcard Matching. (line 37)
  3411. * FNM_PERIOD: Wildcard Matching. (line 43)
  3412. * FOPEN_MAX: Opening Streams. (line 148)
  3413. * FP_FAST_FMA: Misc FP Arithmetic. (line 218)
  3414. * FP_ILOGB0: Exponents and Logarithms.
  3415. (line 131)
  3416. * FP_ILOGBNAN: Exponents and Logarithms.
  3417. (line 145)
  3418. * FP_INFINITE: Floating Point Classes.
  3419. (line 21)
  3420. * FP_INT_DOWNWARD: Rounding Functions. (line 26)
  3421. * FP_INT_TONEAREST: Rounding Functions. (line 38)
  3422. * FP_INT_TONEARESTFROMZERO: Rounding Functions. (line 34)
  3423. * FP_INT_TOWARDZERO: Rounding Functions. (line 30)
  3424. * FP_INT_UPWARD: Rounding Functions. (line 22)
  3425. * FP_LLOGB0: Exponents and Logarithms.
  3426. (line 138)
  3427. * FP_LLOGBNAN: Exponents and Logarithms.
  3428. (line 152)
  3429. * FP_NAN: Floating Point Classes.
  3430. (line 17)
  3431. * FP_NORMAL: Floating Point Classes.
  3432. (line 38)
  3433. * FP_SUBNORMAL: Floating Point Classes.
  3434. (line 30)
  3435. * FP_ZERO: Floating Point Classes.
  3436. (line 25)
  3437. * FPE_DECOVF_TRAP: Program Error Signals.
  3438. (line 89)
  3439. * FPE_FLTDIV_TRAP: Program Error Signals.
  3440. (line 82)
  3441. * FPE_FLTOVF_TRAP: Program Error Signals.
  3442. (line 79)
  3443. * FPE_FLTUND_TRAP: Program Error Signals.
  3444. (line 85)
  3445. * FPE_INTDIV_TRAP: Program Error Signals.
  3446. (line 73)
  3447. * FPE_INTOVF_TRAP: Program Error Signals.
  3448. (line 69)
  3449. * FPE_SUBRNG_TRAP: Program Error Signals.
  3450. (line 76)
  3451. * FRAC_DIGITS: The Elegant and Fast Way.
  3452. (line 199)
  3453. * FSETLOCKING_BYCALLER: Streams and Threads. (line 188)
  3454. * FSETLOCKING_INTERNAL: Streams and Threads. (line 183)
  3455. * FSETLOCKING_QUERY: Streams and Threads. (line 194)
  3456. * FSTAB: Mount Information. (line 29)
  3457. * FSTAB_RO: fstab. (line 57)
  3458. * FSTAB_RQ: fstab. (line 54)
  3459. * FSTAB_RW: fstab. (line 52)
  3460. * FSTAB_SW: fstab. (line 59)
  3461. * FSTAB_XX: fstab. (line 61)
  3462. * FTW_ACTIONRETVAL: Working with Directory Trees.
  3463. (line 230)
  3464. * FTW_CHDIR: Working with Directory Trees.
  3465. (line 219)
  3466. * FTW_D: Working with Directory Trees.
  3467. (line 36)
  3468. * FTW_DEPTH: Working with Directory Trees.
  3469. (line 224)
  3470. * FTW_DNR: Working with Directory Trees.
  3471. (line 41)
  3472. * FTW_DP: Working with Directory Trees.
  3473. (line 76)
  3474. * FTW_F: Working with Directory Trees.
  3475. (line 32)
  3476. * FTW_MOUNT: Working with Directory Trees.
  3477. (line 215)
  3478. * FTW_NS: Working with Directory Trees.
  3479. (line 38)
  3480. * FTW_PHYS: Working with Directory Trees.
  3481. (line 209)
  3482. * FTW_SL: Working with Directory Trees.
  3483. (line 43)
  3484. * FTW_SLN: Working with Directory Trees.
  3485. (line 81)
  3486. * getdate_err: General Time String Parsing.
  3487. (line 13)
  3488. * GETFSIZE: Limits on Resources. (line 222)
  3489. * GLOB_ABORTED: Calling Glob. (line 267)
  3490. * GLOB_ALTDIRFUNC: More Flags for Globbing.
  3491. (line 23)
  3492. * GLOB_APPEND: Flags for Globbing. (line 13)
  3493. * GLOB_BRACE: More Flags for Globbing.
  3494. (line 32)
  3495. * GLOB_DOOFFS: Flags for Globbing. (line 31)
  3496. * GLOB_ERR: Flags for Globbing. (line 37)
  3497. * GLOB_MAGCHAR: More Flags for Globbing.
  3498. (line 16)
  3499. * GLOB_MARK: Flags for Globbing. (line 61)
  3500. * GLOB_NOCHECK: Flags for Globbing. (line 66)
  3501. * GLOB_NOESCAPE: Flags for Globbing. (line 73)
  3502. * GLOB_NOMAGIC: More Flags for Globbing.
  3503. (line 62)
  3504. * GLOB_NOMATCH: Calling Glob. (line 274)
  3505. * GLOB_NOSORT: Flags for Globbing. (line 87)
  3506. * GLOB_NOSPACE: Calling Glob. (line 281)
  3507. * GLOB_ONLYDIR: More Flags for Globbing.
  3508. (line 111)
  3509. * GLOB_PERIOD: More Flags for Globbing.
  3510. (line 11)
  3511. * GLOB_TILDE: More Flags for Globbing.
  3512. (line 68)
  3513. * GLOB_TILDE_CHECK: More Flags for Globbing.
  3514. (line 100)
  3515. * GROUPING: The Elegant and Fast Way.
  3516. (line 253)
  3517. * h_errno: Host Names. (line 103)
  3518. * HOST_NOT_FOUND: Host Names. (line 110)
  3519. * HUGE_VAL: Math Error Reporting.
  3520. (line 48)
  3521. * HUGE_VAL_FN: Math Error Reporting.
  3522. (line 51)
  3523. * HUGE_VAL_FNx: Math Error Reporting.
  3524. (line 52)
  3525. * HUGE_VALF: Math Error Reporting.
  3526. (line 49)
  3527. * HUGE_VALL: Math Error Reporting.
  3528. (line 50)
  3529. * HUPCL: Control Modes. (line 36)
  3530. * I: Complex Numbers. (line 36)
  3531. * ICANON: Local Modes. (line 17)
  3532. * ICRNL: Input Modes. (line 86)
  3533. * IEXTEN: Local Modes. (line 107)
  3534. * IFNAMSIZ: Interface Naming. (line 20)
  3535. * IGNBRK: Input Modes. (line 59)
  3536. * IGNCR: Input Modes. (line 79)
  3537. * IGNPAR: Input Modes. (line 34)
  3538. * IMAXBEL: Input Modes. (line 126)
  3539. * in6addr_any: Host Address Data Type.
  3540. (line 69)
  3541. * in6addr_loopback: Host Address Data Type.
  3542. (line 62)
  3543. * INADDR_ANY: Host Address Data Type.
  3544. (line 41)
  3545. * INADDR_BROADCAST: Host Address Data Type.
  3546. (line 48)
  3547. * INADDR_LOOPBACK: Host Address Data Type.
  3548. (line 31)
  3549. * INADDR_NONE: Host Address Data Type.
  3550. (line 52)
  3551. * INFINITY: Infinity and NaN. (line 39)
  3552. * INIT_PROCESS: Manipulating the Database.
  3553. (line 95)
  3554. * INIT_PROCESS <1>: XPG Functions. (line 64)
  3555. * INLCR: Input Modes. (line 92)
  3556. * INPCK: Input Modes. (line 16)
  3557. * INT_CURR_SYMBOL: The Elegant and Fast Way.
  3558. (line 172)
  3559. * INT_FRAC_DIGITS: The Elegant and Fast Way.
  3560. (line 196)
  3561. * INT_MAX: Range of Type. (line 63)
  3562. * INT_MIN: Range of Type. (line 57)
  3563. * INT_N_CS_PRECEDES: The Elegant and Fast Way.
  3564. (line 227)
  3565. * INT_N_SEP_BY_SPACE: The Elegant and Fast Way.
  3566. (line 230)
  3567. * INT_N_SIGN_POSN: The Elegant and Fast Way.
  3568. (line 236)
  3569. * INT_P_CS_PRECEDES: The Elegant and Fast Way.
  3570. (line 221)
  3571. * INT_P_SEP_BY_SPACE: The Elegant and Fast Way.
  3572. (line 224)
  3573. * INT_P_SIGN_POSN: The Elegant and Fast Way.
  3574. (line 233)
  3575. * INT_WIDTH: Width of Type. (line 16)
  3576. * INTPTR_WIDTH: Width of Type. (line 31)
  3577. * IPPORT_RESERVED: Ports. (line 37)
  3578. * IPPORT_USERRESERVED: Ports. (line 42)
  3579. * ISIG: Local Modes. (line 90)
  3580. * ISTRIP: Input Modes. (line 54)
  3581. * ITIMER_PROF: Setting an Alarm. (line 108)
  3582. * ITIMER_REAL: Setting an Alarm. (line 98)
  3583. * ITIMER_VIRTUAL: Setting an Alarm. (line 103)
  3584. * IXANY: Input Modes. (line 117)
  3585. * IXOFF: Input Modes. (line 98)
  3586. * IXON: Input Modes. (line 108)
  3587. * L_ctermid: Identifying the Terminal.
  3588. (line 31)
  3589. * L_cuserid: Who Logged In. (line 46)
  3590. * L_INCR: File Positioning. (line 178)
  3591. * L_INCR <1>: File Position Primitive.
  3592. (line 179)
  3593. * L_SET: File Positioning. (line 174)
  3594. * L_SET <1>: File Position Primitive.
  3595. (line 176)
  3596. * L_tmpnam: Temporary Files. (line 92)
  3597. * L_XTND: File Positioning. (line 182)
  3598. * L_XTND <1>: File Position Primitive.
  3599. (line 182)
  3600. * LANG: Locale Categories. (line 56)
  3601. * LANGUAGE: Locale Categories. (line 62)
  3602. * LC_ALL: Locale Categories. (line 49)
  3603. * LC_COLLATE: Locale Categories. (line 16)
  3604. * LC_CTYPE: Locale Categories. (line 21)
  3605. * LC_MESSAGES: Locale Categories. (line 42)
  3606. * LC_MONETARY: Locale Categories. (line 27)
  3607. * LC_NUMERIC: Locale Categories. (line 32)
  3608. * LC_TIME: Locale Categories. (line 37)
  3609. * LDBL_DIG: Floating Point Parameters.
  3610. (line 101)
  3611. * LDBL_EPSILON: Floating Point Parameters.
  3612. (line 192)
  3613. * LDBL_MANT_DIG: Floating Point Parameters.
  3614. (line 81)
  3615. * LDBL_MAX: Floating Point Parameters.
  3616. (line 166)
  3617. * LDBL_MAX_10_EXP: Floating Point Parameters.
  3618. (line 152)
  3619. * LDBL_MAX_EXP: Floating Point Parameters.
  3620. (line 140)
  3621. * LDBL_MIN: Floating Point Parameters.
  3622. (line 179)
  3623. * LDBL_MIN_10_EXP: Floating Point Parameters.
  3624. (line 127)
  3625. * LDBL_MIN_EXP: Floating Point Parameters.
  3626. (line 115)
  3627. * leaf: Tree Search Function.
  3628. (line 135)
  3629. * LIM_CORE: Limits on Resources. (line 263)
  3630. * LIM_CPU: Limits on Resources. (line 255)
  3631. * LIM_DATA: Limits on Resources. (line 259)
  3632. * LIM_FSIZE: Limits on Resources. (line 257)
  3633. * LIM_MAXRSS: Limits on Resources. (line 265)
  3634. * LIM_STACK: Limits on Resources. (line 261)
  3635. * LINE_MAX: Utility Limits. (line 45)
  3636. * LINK_MAX: Limits for Files. (line 24)
  3637. * LIO_NOP: Asynchronous I/O. (line 94)
  3638. * LIO_READ: Asynchronous I/O. (line 84)
  3639. * LIO_WRITE: Asynchronous I/O. (line 89)
  3640. * LLONG_MAX: Range of Type. (line 87)
  3641. * LLONG_MIN: Range of Type. (line 81)
  3642. * LLONG_WIDTH: Width of Type. (line 20)
  3643. * LOCPATH: Locale Names. (line 57)
  3644. * LOG_ALERT: syslog; vsyslog. (line 83)
  3645. * LOG_AUTH: syslog; vsyslog. (line 34)
  3646. * LOG_AUTHPRIV: syslog; vsyslog. (line 46)
  3647. * LOG_CONS: openlog. (line 81)
  3648. * LOG_CRIT: syslog; vsyslog. (line 85)
  3649. * LOG_CRON: syslog; vsyslog. (line 44)
  3650. * LOG_DAEMON: syslog; vsyslog. (line 32)
  3651. * LOG_DEBUG: syslog; vsyslog. (line 95)
  3652. * LOG_EMERG: syslog; vsyslog. (line 81)
  3653. * LOG_ERR: syslog; vsyslog. (line 87)
  3654. * LOG_FTP: syslog; vsyslog. (line 48)
  3655. * LOG_INFO: syslog; vsyslog. (line 93)
  3656. * LOG_LOCAL0: syslog; vsyslog. (line 50)
  3657. * LOG_LOCAL1: syslog; vsyslog. (line 52)
  3658. * LOG_LOCAL2: syslog; vsyslog. (line 54)
  3659. * LOG_LOCAL3: syslog; vsyslog. (line 56)
  3660. * LOG_LOCAL4: syslog; vsyslog. (line 58)
  3661. * LOG_LOCAL5: syslog; vsyslog. (line 60)
  3662. * LOG_LOCAL6: syslog; vsyslog. (line 62)
  3663. * LOG_LOCAL7: syslog; vsyslog. (line 64)
  3664. * LOG_LPR: syslog; vsyslog. (line 38)
  3665. * LOG_MAIL: syslog; vsyslog. (line 30)
  3666. * LOG_NDELAY: openlog. (line 94)
  3667. * LOG_NEWS: syslog; vsyslog. (line 40)
  3668. * LOG_NOTICE: syslog; vsyslog. (line 91)
  3669. * LOG_ODELAY: openlog. (line 102)
  3670. * LOG_PERROR: openlog. (line 75)
  3671. * LOG_PID: openlog. (line 88)
  3672. * LOG_SYSLOG: syslog; vsyslog. (line 36)
  3673. * LOG_USER: syslog; vsyslog. (line 28)
  3674. * LOG_UUCP: syslog; vsyslog. (line 42)
  3675. * LOG_WARNING: syslog; vsyslog. (line 89)
  3676. * LOGIN_PROCESS: Manipulating the Database.
  3677. (line 100)
  3678. * LOGIN_PROCESS <1>: XPG Functions. (line 69)
  3679. * LONG_LONG_MAX: Range of Type. (line 94)
  3680. * LONG_LONG_MIN: Range of Type. (line 93)
  3681. * LONG_MAX: Range of Type. (line 75)
  3682. * LONG_MIN: Range of Type. (line 69)
  3683. * LONG_WIDTH: Width of Type. (line 18)
  3684. * M_1_PI: Mathematical Constants.
  3685. (line 26)
  3686. * M_2_PI: Mathematical Constants.
  3687. (line 28)
  3688. * M_2_SQRTPI: Mathematical Constants.
  3689. (line 30)
  3690. * M_ARENA_MAX: Malloc Tunable Parameters.
  3691. (line 100)
  3692. * M_ARENA_TEST: Malloc Tunable Parameters.
  3693. (line 88)
  3694. * M_E: Mathematical Constants.
  3695. (line 10)
  3696. * M_LN10: Mathematical Constants.
  3697. (line 18)
  3698. * M_LN2: Mathematical Constants.
  3699. (line 16)
  3700. * M_LOG10E: Mathematical Constants.
  3701. (line 14)
  3702. * M_LOG2E: Mathematical Constants.
  3703. (line 12)
  3704. * M_MMAP_MAX: Malloc Tunable Parameters.
  3705. (line 18)
  3706. * M_MMAP_THRESHOLD: Malloc Tunable Parameters.
  3707. (line 28)
  3708. * M_PERTURB: Malloc Tunable Parameters.
  3709. (line 45)
  3710. * M_PI: Mathematical Constants.
  3711. (line 20)
  3712. * M_PI_2: Mathematical Constants.
  3713. (line 22)
  3714. * M_PI_4: Mathematical Constants.
  3715. (line 24)
  3716. * M_SQRT1_2: Mathematical Constants.
  3717. (line 34)
  3718. * M_SQRT2: Mathematical Constants.
  3719. (line 32)
  3720. * M_TOP_PAD: Malloc Tunable Parameters.
  3721. (line 60)
  3722. * M_TRIM_THRESHOLD: Malloc Tunable Parameters.
  3723. (line 73)
  3724. * MADV_DONTNEED: Memory-mapped I/O. (line 465)
  3725. * MADV_HUGEPAGE: Memory-mapped I/O. (line 470)
  3726. * MADV_NOHUGEPAGE: Memory-mapped I/O. (line 482)
  3727. * MADV_NORMAL: Memory-mapped I/O. (line 447)
  3728. * MADV_RANDOM: Memory-mapped I/O. (line 450)
  3729. * MADV_SEQUENTIAL: Memory-mapped I/O. (line 455)
  3730. * MADV_WILLNEED: Memory-mapped I/O. (line 461)
  3731. * MAP_32BIT: Memory-mapped I/O. (line 141)
  3732. * MAP_ANON: Memory-mapped I/O. (line 104)
  3733. * MAP_ANONYMOUS: Memory-mapped I/O. (line 103)
  3734. * MAP_DENYWRITE: Memory-mapped I/O. (line 146)
  3735. * MAP_DROPPABLE: Memory-mapped I/O. (line 214)
  3736. * MAP_EXECUTABLE: Memory-mapped I/O. (line 147)
  3737. * MAP_FILE: Memory-mapped I/O. (line 148)
  3738. * MAP_FIXED: Memory-mapped I/O. (line 97)
  3739. * MAP_FIXED_NOREPLACE: Memory-mapped I/O. (line 152)
  3740. * MAP_GROWSDOWN: Memory-mapped I/O. (line 160)
  3741. * MAP_HUGETLB: Memory-mapped I/O. (line 119)
  3742. * MAP_LOCKED: Memory-mapped I/O. (line 175)
  3743. * MAP_NONBLOCK: Memory-mapped I/O. (line 181)
  3744. * MAP_NORESERVE: Memory-mapped I/O. (line 190)
  3745. * MAP_POPULATE: Memory-mapped I/O. (line 180)
  3746. * MAP_PRIVATE: Memory-mapped I/O. (line 68)
  3747. * MAP_SHARED: Memory-mapped I/O. (line 79)
  3748. * MAP_SHARED_VALIDATE: Memory-mapped I/O. (line 89)
  3749. * MAP_STACK: Memory-mapped I/O. (line 203)
  3750. * MAP_SYNC: Memory-mapped I/O. (line 208)
  3751. * MAX_CANON: Limits for Files. (line 29)
  3752. * MAX_INPUT: Limits for Files. (line 34)
  3753. * MAXNAMLEN: Limits for Files. (line 66)
  3754. * MAXSYMLINKS: Symbolic Links. (line 34)
  3755. * MB_CUR_MAX: Selecting the Conversion.
  3756. (line 25)
  3757. * MB_LEN_MAX: Selecting the Conversion.
  3758. (line 19)
  3759. * MCL_CURRENT: Page Lock Functions. (line 117)
  3760. * MCL_FUTURE: Page Lock Functions. (line 121)
  3761. * MDMBUF: Control Modes. (line 104)
  3762. * MFD_ALLOW_SEALING: Memory-mapped I/O. (line 568)
  3763. * MFD_CLOEXEC: Memory-mapped I/O. (line 564)
  3764. * MFD_HUGETLB: Memory-mapped I/O. (line 573)
  3765. * MINSIGSTKSZ: Signal Stack. (line 46)
  3766. * MLOCK_ONFAULT: Page Lock Functions. (line 69)
  3767. * MM_APPL: Printing Formatted Messages.
  3768. (line 31)
  3769. * MM_CONSOLE: Printing Formatted Messages.
  3770. (line 13)
  3771. * MM_ERROR: Printing Formatted Messages.
  3772. (line 92)
  3773. * MM_FIRM: Printing Formatted Messages.
  3774. (line 24)
  3775. * MM_HALT: Printing Formatted Messages.
  3776. (line 90)
  3777. * MM_HARD: Printing Formatted Messages.
  3778. (line 20)
  3779. * MM_INFO: Printing Formatted Messages.
  3780. (line 96)
  3781. * MM_NOSEV: Printing Formatted Messages.
  3782. (line 88)
  3783. * MM_NRECOV: Printing Formatted Messages.
  3784. (line 43)
  3785. * MM_NULLACT: Printing Formatted Messages.
  3786. (line 76)
  3787. * MM_NULLLBL: Printing Formatted Messages.
  3788. (line 67)
  3789. * MM_NULLMC: Printing Formatted Messages.
  3790. (line 71)
  3791. * MM_NULLSEV: Printing Formatted Messages.
  3792. (line 69)
  3793. * MM_NULLTAG: Printing Formatted Messages.
  3794. (line 78)
  3795. * MM_NULLTXT: Printing Formatted Messages.
  3796. (line 74)
  3797. * MM_OPSYS: Printing Formatted Messages.
  3798. (line 35)
  3799. * MM_PRINT: Printing Formatted Messages.
  3800. (line 11)
  3801. * MM_RECOVER: Printing Formatted Messages.
  3802. (line 41)
  3803. * MM_SOFT: Printing Formatted Messages.
  3804. (line 22)
  3805. * MM_UTIL: Printing Formatted Messages.
  3806. (line 33)
  3807. * MM_WARNING: Printing Formatted Messages.
  3808. (line 94)
  3809. * MNT_FORCE: Mount-Unmount-Remount.
  3810. (line 192)
  3811. * MNTOPT_DEFAULTS: mtab. (line 60)
  3812. * MNTOPT_NOAUTO: mtab. (line 79)
  3813. * MNTOPT_NOSUID: mtab. (line 75)
  3814. * MNTOPT_RO: mtab. (line 64)
  3815. * MNTOPT_RW: mtab. (line 67)
  3816. * MNTOPT_SUID: mtab. (line 71)
  3817. * MNTTAB: Mount Information. (line 29)
  3818. * MNTTYPE_IGNORE: mtab. (line 34)
  3819. * MNTTYPE_NFS: mtab. (line 38)
  3820. * MNTTYPE_SWAP: mtab. (line 42)
  3821. * MON_1: The Elegant and Fast Way.
  3822. (line 68)
  3823. * MON_10: The Elegant and Fast Way.
  3824. (line 77)
  3825. * MON_11: The Elegant and Fast Way.
  3826. (line 78)
  3827. * MON_12: The Elegant and Fast Way.
  3828. (line 79)
  3829. * MON_2: The Elegant and Fast Way.
  3830. (line 69)
  3831. * MON_3: The Elegant and Fast Way.
  3832. (line 70)
  3833. * MON_4: The Elegant and Fast Way.
  3834. (line 71)
  3835. * MON_5: The Elegant and Fast Way.
  3836. (line 72)
  3837. * MON_6: The Elegant and Fast Way.
  3838. (line 73)
  3839. * MON_7: The Elegant and Fast Way.
  3840. (line 74)
  3841. * MON_8: The Elegant and Fast Way.
  3842. (line 75)
  3843. * MON_9: The Elegant and Fast Way.
  3844. (line 76)
  3845. * MON_DECIMAL_POINT: The Elegant and Fast Way.
  3846. (line 181)
  3847. * MON_GROUPING: The Elegant and Fast Way.
  3848. (line 187)
  3849. * MON_THOUSANDS_SEP: The Elegant and Fast Way.
  3850. (line 184)
  3851. * MOUNTED: Mount Information. (line 29)
  3852. * MS_ASYNC: Memory-mapped I/O. (line 348)
  3853. * MS_MANDLOCK: Mount-Unmount-Remount.
  3854. (line 102)
  3855. * MS_MGC_MASK: Mount-Unmount-Remount.
  3856. (line 68)
  3857. * MS_NOATIME: Mount-Unmount-Remount.
  3858. (line 106)
  3859. * MS_NODEV: Mount-Unmount-Remount.
  3860. (line 91)
  3861. * MS_NODIRATIME: Mount-Unmount-Remount.
  3862. (line 111)
  3863. * MS_NOEXEC: Mount-Unmount-Remount.
  3864. (line 87)
  3865. * MS_NOSUID: Mount-Unmount-Remount.
  3866. (line 83)
  3867. * MS_RDONLY: Mount-Unmount-Remount.
  3868. (line 78)
  3869. * MS_REMOUNT: Mount-Unmount-Remount.
  3870. (line 74)
  3871. * MS_SYNC: Memory-mapped I/O. (line 342)
  3872. * MS_SYNCHRONOUS: Mount-Unmount-Remount.
  3873. (line 96)
  3874. * MSG_DONTROUTE: Socket Data Options. (line 20)
  3875. * MSG_OOB: Socket Data Options. (line 10)
  3876. * MSG_PEEK: Socket Data Options. (line 14)
  3877. * mtx_plain: ISO C Mutexes. (line 20)
  3878. * mtx_recursive: ISO C Mutexes. (line 24)
  3879. * mtx_timed: ISO C Mutexes. (line 29)
  3880. * N_CS_PRECEDES: The Elegant and Fast Way.
  3881. (line 208)
  3882. * N_SEP_BY_SPACE: The Elegant and Fast Way.
  3883. (line 211)
  3884. * N_SIGN_POSN: The Elegant and Fast Way.
  3885. (line 217)
  3886. * NAME_MAX: Limits for Files. (line 39)
  3887. * NAN: Infinity and NaN. (line 52)
  3888. * NCCS: Mode Data Types. (line 53)
  3889. * NDEBUG: Consistency Checking.
  3890. (line 15)
  3891. * NEGATIVE_SIGN: The Elegant and Fast Way.
  3892. (line 193)
  3893. * NEW_TIME: Manipulating the Database.
  3894. (line 90)
  3895. * NEW_TIME <1>: XPG Functions. (line 59)
  3896. * NGROUPS_MAX: General Limits. (line 55)
  3897. * NL_ARGMAX: Output Conversion Syntax.
  3898. (line 45)
  3899. * NO_ADDRESS: Host Names. (line 123)
  3900. * NO_RECOVERY: Host Names. (line 119)
  3901. * NOEXPR: The Elegant and Fast Way.
  3902. (line 261)
  3903. * NOFLSH: Local Modes. (line 115)
  3904. * NOKERNINFO: Local Modes. (line 151)
  3905. * NOSTR: The Elegant and Fast Way.
  3906. (line 275)
  3907. * NSIG: Standard Signals. (line 17)
  3908. * NSS_STATUS_NOTFOUND: NSS Modules Interface.
  3909. (line 37)
  3910. * NSS_STATUS_SUCCESS: NSS Modules Interface.
  3911. (line 40)
  3912. * NSS_STATUS_TRYAGAIN: NSS Modules Interface.
  3913. (line 31)
  3914. * NSS_STATUS_UNAVAIL: NSS Modules Interface.
  3915. (line 34)
  3916. * NULL: Null Pointer Constant.
  3917. (line 10)
  3918. * O_ACCMODE: Access Modes. (line 44)
  3919. * O_APPEND: Operating Modes. (line 10)
  3920. * O_ASYNC: Operating Modes. (line 44)
  3921. * O_CREAT: Open-time Flags. (line 21)
  3922. * O_DIRECTORY: Open-time Flags. (line 34)
  3923. * O_EXCL: Open-time Flags. (line 25)
  3924. * O_EXEC: Access Modes. (line 74)
  3925. * O_EXLOCK: Open-time Flags. (line 151)
  3926. * O_FSYNC: Operating Modes. (line 52)
  3927. * O_IGNORE_CTTY: Open-time Flags. (line 102)
  3928. * O_NDELAY: Operating Modes. (line 36)
  3929. * O_NOATIME: Operating Modes. (line 64)
  3930. * O_NOCTTY: Open-time Flags. (line 86)
  3931. * O_NOFOLLOW: Open-time Flags. (line 40)
  3932. * O_NOLINK: Open-time Flags. (line 109)
  3933. * O_NONBLOCK: Open-time Flags. (line 70)
  3934. * O_NONBLOCK <1>: Operating Modes. (line 23)
  3935. * O_NOTRANS: Open-time Flags. (line 115)
  3936. * O_PATH: Access Modes. (line 22)
  3937. * O_RDONLY: Access Modes. (line 10)
  3938. * O_RDWR: Access Modes. (line 18)
  3939. * O_READ: Access Modes. (line 64)
  3940. * O_SHLOCK: Open-time Flags. (line 142)
  3941. * O_SYNC: Operating Modes. (line 60)
  3942. * O_TMPFILE: Open-time Flags. (line 46)
  3943. * O_TRUNC: Open-time Flags. (line 125)
  3944. * O_WRITE: Access Modes. (line 69)
  3945. * O_WRONLY: Access Modes. (line 14)
  3946. * obstack_alloc_failed_handler: Preparing for Obstacks.
  3947. (line 59)
  3948. * OLD_TIME: Manipulating the Database.
  3949. (line 85)
  3950. * OLD_TIME <1>: XPG Functions. (line 54)
  3951. * ONCE_FLAG_INIT: Call Once. (line 18)
  3952. * ONLCR: Output Modes. (line 26)
  3953. * ONOEOT: Output Modes. (line 38)
  3954. * OPEN_MAX: General Limits. (line 36)
  3955. * OPOST: Output Modes. (line 15)
  3956. * optarg: Using Getopt. (line 33)
  3957. * opterr: Using Getopt. (line 9)
  3958. * optind: Using Getopt. (line 25)
  3959. * OPTION_ALIAS: Argp Option Flags. (line 18)
  3960. * OPTION_ARG_OPTIONAL: Argp Option Flags. (line 10)
  3961. * OPTION_DOC: Argp Option Flags. (line 25)
  3962. * OPTION_HIDDEN: Argp Option Flags. (line 14)
  3963. * OPTION_NO_USAGE: Argp Option Flags. (line 41)
  3964. * optopt: Using Getopt. (line 18)
  3965. * OXTABS: Output Modes. (line 31)
  3966. * P_CS_PRECEDES: The Elegant and Fast Way.
  3967. (line 202)
  3968. * P_SEP_BY_SPACE: The Elegant and Fast Way.
  3969. (line 205)
  3970. * P_SIGN_POSN: The Elegant and Fast Way.
  3971. (line 214)
  3972. * P_tmpdir: Temporary Files. (line 148)
  3973. * PA_CHAR: Parsing a Template String.
  3974. (line 54)
  3975. * PA_DOUBLE: Parsing a Template String.
  3976. (line 72)
  3977. * PA_FLAG_LONG: Parsing a Template String.
  3978. (line 100)
  3979. * PA_FLAG_LONG_DOUBLE: Parsing a Template String.
  3980. (line 110)
  3981. * PA_FLAG_LONG_LONG: Parsing a Template String.
  3982. (line 105)
  3983. * PA_FLAG_MASK: Parsing a Template String.
  3984. (line 40)
  3985. * PA_FLAG_PTR: Parsing a Template String.
  3986. (line 89)
  3987. * PA_FLAG_SHORT: Parsing a Template String.
  3988. (line 95)
  3989. * PA_FLOAT: Parsing a Template String.
  3990. (line 68)
  3991. * PA_INT: Parsing a Template String.
  3992. (line 50)
  3993. * PA_LAST: Parsing a Template String.
  3994. (line 76)
  3995. * PA_POINTER: Parsing a Template String.
  3996. (line 63)
  3997. * PA_STRING: Parsing a Template String.
  3998. (line 58)
  3999. * PARENB: Control Modes. (line 52)
  4000. * PARMRK: Input Modes. (line 39)
  4001. * PARODD: Control Modes. (line 62)
  4002. * PATH_MAX: Limits for Files. (line 47)
  4003. * PENDIN: Local Modes. (line 156)
  4004. * PF_CCITT: Misc Namespaces. (line 6)
  4005. * PF_FILE: Local Namespace Details.
  4006. (line 20)
  4007. * PF_IMPLINK: Misc Namespaces. (line 6)
  4008. * PF_INET: Internet Namespace. (line 20)
  4009. * PF_INET6: Internet Namespace. (line 25)
  4010. * PF_ISO: Misc Namespaces. (line 6)
  4011. * PF_LOCAL: Local Namespace Details.
  4012. (line 10)
  4013. * PF_NS: Misc Namespaces. (line 6)
  4014. * PF_ROUTE: Misc Namespaces. (line 6)
  4015. * PF_UNIX: Local Namespace Details.
  4016. (line 16)
  4017. * PI: Mathematical Constants.
  4018. (line 55)
  4019. * PIPE_BUF: Limits for Files. (line 56)
  4020. * PKEY_DISABLE_ACCESS: Memory Protection. (line 375)
  4021. * PKEY_DISABLE_EXECUTE: Memory Protection. (line 383)
  4022. * PKEY_DISABLE_READ: Memory Protection. (line 363)
  4023. * PKEY_DISABLE_WRITE: Memory Protection. (line 370)
  4024. * PM_STR: The Elegant and Fast Way.
  4025. (line 110)
  4026. * POSITIVE_SIGN: The Elegant and Fast Way.
  4027. (line 190)
  4028. * POSIX_MADV_DONTNEED: Memory-mapped I/O. (line 500)
  4029. * POSIX_MADV_NORMAL: Memory-mapped I/O. (line 488)
  4030. * POSIX_MADV_RANDOM: Memory-mapped I/O. (line 491)
  4031. * POSIX_MADV_SEQUENTIAL: Memory-mapped I/O. (line 494)
  4032. * POSIX_MADV_WILLNEED: Memory-mapped I/O. (line 497)
  4033. * POSIX_REC_INCR_XFER_SIZE: File Minimums. (line 55)
  4034. * POSIX_REC_MAX_XFER_SIZE: File Minimums. (line 60)
  4035. * POSIX_REC_MIN_XFER_SIZE: File Minimums. (line 64)
  4036. * POSIX_REC_XFER_ALIGN: File Minimums. (line 68)
  4037. * postorder: Tree Search Function.
  4038. (line 129)
  4039. * preorder: Tree Search Function.
  4040. (line 126)
  4041. * PRIO_MAX: Traditional Scheduling Functions.
  4042. (line 22)
  4043. * PRIO_MIN: Traditional Scheduling Functions.
  4044. (line 18)
  4045. * PRIO_PGRP: Traditional Scheduling Functions.
  4046. (line 88)
  4047. * PRIO_PROCESS: Traditional Scheduling Functions.
  4048. (line 84)
  4049. * PRIO_USER: Traditional Scheduling Functions.
  4050. (line 93)
  4051. * program_invocation_name: Error Messages. (line 180)
  4052. * program_invocation_short_name: Error Messages. (line 189)
  4053. * PROT_EXEC: Memory Protection. (line 22)
  4054. * PROT_NONE: Memory Protection. (line 28)
  4055. * PROT_READ: Memory Protection. (line 16)
  4056. * PROT_WRITE: Memory Protection. (line 12)
  4057. * PTHREAD_ATTR_NO_SIGMASK_NP: Initial Thread Signal Mask.
  4058. (line 42)
  4059. * PTRDIFF_WIDTH: Width of Type. (line 33)
  4060. * PWD: Working Directory. (line 94)
  4061. * R_OK: Testing File Access. (line 79)
  4062. * RADIXCHAR: The Elegant and Fast Way.
  4063. (line 241)
  4064. * RAND_MAX: ISO Random. (line 12)
  4065. * RE_DUP_MAX: General Limits. (line 75)
  4066. * REG_BADBR: POSIX Regexp Compilation.
  4067. (line 70)
  4068. * REG_BADPAT: POSIX Regexp Compilation.
  4069. (line 76)
  4070. * REG_BADRPT: POSIX Regexp Compilation.
  4071. (line 80)
  4072. * REG_EBRACE: POSIX Regexp Compilation.
  4073. (line 112)
  4074. * REG_EBRACK: POSIX Regexp Compilation.
  4075. (line 103)
  4076. * REG_ECOLLATE: POSIX Regexp Compilation.
  4077. (line 85)
  4078. * REG_ECTYPE: POSIX Regexp Compilation.
  4079. (line 91)
  4080. * REG_EESCAPE: POSIX Regexp Compilation.
  4081. (line 95)
  4082. * REG_EPAREN: POSIX Regexp Compilation.
  4083. (line 107)
  4084. * REG_ERANGE: POSIX Regexp Compilation.
  4085. (line 116)
  4086. * REG_ESPACE: POSIX Regexp Compilation.
  4087. (line 120)
  4088. * REG_ESPACE <1>: Matching POSIX Regexps.
  4089. (line 59)
  4090. * REG_ESUBREG: POSIX Regexp Compilation.
  4091. (line 99)
  4092. * REG_EXTENDED: Flags for POSIX Regexps.
  4093. (line 9)
  4094. * REG_ICASE: Flags for POSIX Regexps.
  4095. (line 14)
  4096. * REG_NEWLINE: Flags for POSIX Regexps.
  4097. (line 22)
  4098. * REG_NOMATCH: Matching POSIX Regexps.
  4099. (line 55)
  4100. * REG_NOSUB: Flags for POSIX Regexps.
  4101. (line 18)
  4102. * REG_NOTBOL: Matching POSIX Regexps.
  4103. (line 41)
  4104. * REG_NOTEOL: Matching POSIX Regexps.
  4105. (line 47)
  4106. * RLIM_INFINITY: Limits on Resources. (line 196)
  4107. * RLIM_NLIMITS: Limits on Resources. (line 191)
  4108. * RLIMIT_AS: Limits on Resources. (line 184)
  4109. * RLIMIT_CORE: Limits on Resources. (line 151)
  4110. * RLIMIT_CPU: Limits on Resources. (line 127)
  4111. * RLIMIT_DATA: Limits on Resources. (line 139)
  4112. * RLIMIT_FSIZE: Limits on Resources. (line 133)
  4113. * RLIMIT_MEMLOCK: Limits on Resources. (line 165)
  4114. * RLIMIT_NOFILE: Limits on Resources. (line 176)
  4115. * RLIMIT_NPROC: Limits on Resources. (line 170)
  4116. * RLIMIT_OFILE: Limits on Resources. (line 177)
  4117. * RLIMIT_RSS: Limits on Resources. (line 158)
  4118. * RLIMIT_STACK: Limits on Resources. (line 145)
  4119. * RSEQ_SIG: Restartable Sequences.
  4120. (line 73)
  4121. * RTLD_DI_LINKMAP: Dynamic Linker Introspection.
  4122. (line 128)
  4123. * RTLD_DI_LMID: Dynamic Linker Introspection.
  4124. (line 133)
  4125. * RTLD_DI_ORIGIN: Dynamic Linker Introspection.
  4126. (line 138)
  4127. * RTLD_DI_PHDR: Dynamic Linker Introspection.
  4128. (line 177)
  4129. * RTLD_DI_SERINFO: Dynamic Linker Introspection.
  4130. (line 146)
  4131. * RTLD_DI_SERINFOSIZE: Dynamic Linker Introspection.
  4132. (line 147)
  4133. * RTLD_DI_TLS_DATA: Dynamic Linker Introspection.
  4134. (line 164)
  4135. * RTLD_DI_TLS_MODID: Dynamic Linker Introspection.
  4136. (line 171)
  4137. * RUN_LVL: Manipulating the Database.
  4138. (line 77)
  4139. * RUN_LVL <1>: XPG Functions. (line 46)
  4140. * RUSAGE_CHILDREN: Resource Usage. (line 24)
  4141. * RUSAGE_SELF: Resource Usage. (line 20)
  4142. * RWF_APPEND: Scatter-Gather. (line 182)
  4143. * RWF_ATOMIC: Scatter-Gather. (line 190)
  4144. * RWF_DONTCACHE: Scatter-Gather. (line 202)
  4145. * RWF_DSYNC: Scatter-Gather. (line 169)
  4146. * RWF_HIPRI: Scatter-Gather. (line 162)
  4147. * RWF_NOAPPEND: Scatter-Gather. (line 186)
  4148. * RWF_NOWAIT: Scatter-Gather. (line 177)
  4149. * RWF_SYNC: Scatter-Gather. (line 173)
  4150. * S_IEXEC: Permission Bits. (line 32)
  4151. * S_IFBLK: Testing File Type. (line 106)
  4152. * S_IFCHR: Testing File Type. (line 102)
  4153. * S_IFDIR: Testing File Type. (line 98)
  4154. * S_IFIFO: Testing File Type. (line 122)
  4155. * S_IFLNK: Testing File Type. (line 114)
  4156. * S_IFMT: Testing File Type. (line 91)
  4157. * S_IFREG: Testing File Type. (line 110)
  4158. * S_IFSOCK: Testing File Type. (line 118)
  4159. * S_IREAD: Permission Bits. (line 19)
  4160. * S_IRGRP: Permission Bits. (line 42)
  4161. * S_IROTH: Permission Bits. (line 59)
  4162. * S_IRUSR: Permission Bits. (line 18)
  4163. * S_IRWXG: Permission Bits. (line 55)
  4164. * S_IRWXO: Permission Bits. (line 71)
  4165. * S_IRWXU: Permission Bits. (line 38)
  4166. * S_ISGID: Permission Bits. (line 80)
  4167. * S_ISUID: Permission Bits. (line 75)
  4168. * S_ISVTX: Permission Bits. (line 85)
  4169. * S_IWGRP: Permission Bits. (line 46)
  4170. * S_IWOTH: Permission Bits. (line 63)
  4171. * S_IWRITE: Permission Bits. (line 26)
  4172. * S_IWUSR: Permission Bits. (line 25)
  4173. * S_IXGRP: Permission Bits. (line 50)
  4174. * S_IXOTH: Permission Bits. (line 67)
  4175. * S_IXUSR: Permission Bits. (line 31)
  4176. * SA_NOCLDSTOP: Flags for Sigaction. (line 25)
  4177. * SA_NOCLDWAIT: Flags for Sigaction. (line 34)
  4178. * SA_NODEFER: Flags for Sigaction. (line 43)
  4179. * SA_ONSTACK: Flags for Sigaction. (line 50)
  4180. * SA_RESETHAND: Flags for Sigaction. (line 58)
  4181. * SA_RESTART: Flags for Sigaction. (line 63)
  4182. * SA_SIGINFO: Flags for Sigaction. (line 77)
  4183. * SCHAR_MAX: Range of Type. (line 28)
  4184. * SCHAR_MIN: Range of Type. (line 23)
  4185. * SCHAR_WIDTH: Width of Type. (line 12)
  4186. * SCHED_FIFO: Basic Scheduling Functions.
  4187. (line 60)
  4188. * SCHED_OTHER: Basic Scheduling Functions.
  4189. (line 58)
  4190. * SCHED_RR: Basic Scheduling Functions.
  4191. (line 62)
  4192. * SEEK_CUR: File Positioning. (line 147)
  4193. * SEEK_CUR <1>: File Position Primitive.
  4194. (line 31)
  4195. * SEEK_END: File Positioning. (line 153)
  4196. * SEEK_END <1>: File Position Primitive.
  4197. (line 36)
  4198. * SEEK_SET: File Positioning. (line 141)
  4199. * SEEK_SET <1>: File Position Primitive.
  4200. (line 27)
  4201. * SETFSIZE: Limits on Resources. (line 226)
  4202. * SHRT_MAX: Range of Type. (line 51)
  4203. * SHRT_MIN: Range of Type. (line 45)
  4204. * SHRT_WIDTH: Width of Type. (line 14)
  4205. * SHUT_RD: Closing a Socket. (line 24)
  4206. * SHUT_RDWR: Closing a Socket. (line 33)
  4207. * SHUT_WR: Closing a Socket. (line 27)
  4208. * SIG_ATOMIC_WIDTH: Width of Type. (line 34)
  4209. * SIG_BLOCK: Process Signal Mask. (line 31)
  4210. * SIG_DFL: Basic Signal Handling.
  4211. (line 39)
  4212. * SIG_ERR: Basic Signal Handling.
  4213. (line 153)
  4214. * SIG_IGN: Basic Signal Handling.
  4215. (line 44)
  4216. * SIG_SETMASK: Process Signal Mask. (line 42)
  4217. * SIG_UNBLOCK: Process Signal Mask. (line 37)
  4218. * SIGABRT: Program Error Signals.
  4219. (line 139)
  4220. * SIGALRM: Alarm Signals. (line 15)
  4221. * SIGBUS: Program Error Signals.
  4222. (line 125)
  4223. * SIGCHLD: Job Control Signals. (line 13)
  4224. * SIGCLD: Job Control Signals. (line 25)
  4225. * SIGCONT: Job Control Signals. (line 29)
  4226. * SIGEMT: Program Error Signals.
  4227. (line 156)
  4228. * SIGFPE: Program Error Signals.
  4229. (line 41)
  4230. * SIGHUP: Termination Signals. (line 75)
  4231. * SIGILL: Program Error Signals.
  4232. (line 94)
  4233. * SIGINFO: Miscellaneous Signals.
  4234. (line 37)
  4235. * SIGINT: Termination Signals. (line 30)
  4236. * SIGIO: Asynchronous I/O Signals.
  4237. (line 12)
  4238. * SIGIOT: Program Error Signals.
  4239. (line 144)
  4240. * SIGKILL: Termination Signals. (line 55)
  4241. * SIGLOST: Operation Error Signals.
  4242. (line 27)
  4243. * signgam: Special Functions. (line 47)
  4244. * SIGPIPE: Operation Error Signals.
  4245. (line 12)
  4246. * SIGPOLL: Asynchronous I/O Signals.
  4247. (line 29)
  4248. * SIGPROF: Alarm Signals. (line 27)
  4249. * SIGPWR: Miscellaneous Signals.
  4250. (line 48)
  4251. * SIGQUIT: Termination Signals. (line 37)
  4252. * SIGSEGV: Program Error Signals.
  4253. (line 110)
  4254. * SIGSTKFLT: Program Error Signals.
  4255. (line 171)
  4256. * SIGSTKSZ: Signal Stack. (line 42)
  4257. * SIGSTOP: Job Control Signals. (line 44)
  4258. * SIGSYS: Program Error Signals.
  4259. (line 162)
  4260. * SIGTERM: Termination Signals. (line 21)
  4261. * SIGTRAP: Program Error Signals.
  4262. (line 149)
  4263. * SIGTSTP: Job Control Signals. (line 49)
  4264. * SIGTTIN: Job Control Signals. (line 63)
  4265. * SIGTTOU: Job Control Signals. (line 72)
  4266. * SIGURG: Asynchronous I/O Signals.
  4267. (line 24)
  4268. * SIGUSR1: Miscellaneous Signals.
  4269. (line 10)
  4270. * SIGUSR2: Miscellaneous Signals.
  4271. (line 11)
  4272. * SIGVTALRM: Alarm Signals. (line 21)
  4273. * SIGWINCH: Miscellaneous Signals.
  4274. (line 23)
  4275. * SIGXCPU: Operation Error Signals.
  4276. (line 35)
  4277. * SIGXFSZ: Operation Error Signals.
  4278. (line 41)
  4279. * SIZE_WIDTH: Width of Type. (line 35)
  4280. * SNAN: Infinity and NaN. (line 64)
  4281. * SNANF: Infinity and NaN. (line 63)
  4282. * SNANFN: Infinity and NaN. (line 66)
  4283. * SNANFNx: Infinity and NaN. (line 67)
  4284. * SNANL: Infinity and NaN. (line 65)
  4285. * SO_BROADCAST: Socket-Level Options.
  4286. (line 67)
  4287. * SO_DEBUG: Socket-Level Options.
  4288. (line 15)
  4289. * SO_DONTROUTE: Socket-Level Options.
  4290. (line 41)
  4291. * SO_ERROR: Socket-Level Options.
  4292. (line 99)
  4293. * SO_KEEPALIVE: Socket-Level Options.
  4294. (line 34)
  4295. * SO_LINGER: Socket-Level Options.
  4296. (line 48)
  4297. * SO_OOBINLINE: Socket-Level Options.
  4298. (line 72)
  4299. * SO_RCVBUF: Socket-Level Options.
  4300. (line 85)
  4301. * SO_REUSEADDR: Socket-Level Options.
  4302. (line 21)
  4303. * SO_SNDBUF: Socket-Level Options.
  4304. (line 80)
  4305. * SO_STYLE: Socket-Level Options.
  4306. (line 90)
  4307. * SO_TYPE: Socket-Level Options.
  4308. (line 91)
  4309. * SOCK_DGRAM: Communication Styles.
  4310. (line 19)
  4311. * SOCK_RAW: Communication Styles.
  4312. (line 43)
  4313. * SOCK_STREAM: Communication Styles.
  4314. (line 11)
  4315. * SOL_SOCKET: Socket-Level Options.
  4316. (line 6)
  4317. * SPEED_MAX: Line Speed. (line 99)
  4318. * SS_DISABLE: Signal Stack. (line 61)
  4319. * SS_ONSTACK: Signal Stack. (line 65)
  4320. * SSIZE_MAX: General Limits. (line 66)
  4321. * stderr: Standard Streams. (line 23)
  4322. * STDERR_FILENO: Descriptors and Streams.
  4323. (line 75)
  4324. * stdin: Standard Streams. (line 13)
  4325. * STDIN_FILENO: Descriptors and Streams.
  4326. (line 65)
  4327. * stdout: Standard Streams. (line 18)
  4328. * STDOUT_FILENO: Descriptors and Streams.
  4329. (line 70)
  4330. * STREAM_MAX: General Limits. (line 43)
  4331. * SYMLINK_MAX: File Minimums. (line 51)
  4332. * T_FMT: The Elegant and Fast Way.
  4333. (line 124)
  4334. * T_FMT_AMPM: The Elegant and Fast Way.
  4335. (line 127)
  4336. * TCIFLUSH: Line Control. (line 77)
  4337. * TCIOFF: Line Control. (line 125)
  4338. * TCIOFLUSH: Line Control. (line 85)
  4339. * TCION: Line Control. (line 128)
  4340. * TCOFLUSH: Line Control. (line 81)
  4341. * TCOOFF: Line Control. (line 119)
  4342. * TCOON: Line Control. (line 122)
  4343. * TCSADRAIN: Mode Functions. (line 42)
  4344. * TCSAFLUSH: Mode Functions. (line 48)
  4345. * TCSANOW: Mode Functions. (line 38)
  4346. * TCSASOFT: Mode Functions. (line 52)
  4347. * THOUSANDS_SEP: The Elegant and Fast Way.
  4348. (line 247)
  4349. * THOUSEP: The Elegant and Fast Way.
  4350. (line 248)
  4351. * thrd_busy: ISO C Threads Return Values.
  4352. (line 18)
  4353. * thrd_error: ISO C Threads Return Values.
  4354. (line 23)
  4355. * thrd_nomem: ISO C Threads Return Values.
  4356. (line 27)
  4357. * thrd_success: ISO C Threads Return Values.
  4358. (line 14)
  4359. * thrd_timedout: ISO C Threads Return Values.
  4360. (line 9)
  4361. * thread_local: ISO C Thread-local Storage.
  4362. (line 27)
  4363. * TIME_ERROR: Setting and Adjusting the Time.
  4364. (line 111)
  4365. * TIME_UTC: Getting the Time. (line 149)
  4366. * timezone: Time Zone State. (line 52)
  4367. * TMP_MAX: Temporary Files. (line 98)
  4368. * TOSTOP: Local Modes. (line 121)
  4369. * TRY_AGAIN: Host Names. (line 114)
  4370. * TSS_DTOR_ITERATIONS: ISO C Thread-local Storage.
  4371. (line 36)
  4372. * tzname: Time Zone State. (line 31)
  4373. * TZNAME_MAX: General Limits. (line 48)
  4374. * UCHAR_MAX: Range of Type. (line 29)
  4375. * UCHAR_WIDTH: Width of Type. (line 13)
  4376. * UINT_MAX: Range of Type. (line 64)
  4377. * UINT_WIDTH: Width of Type. (line 17)
  4378. * UINTPTR_WIDTH: Width of Type. (line 32)
  4379. * ULLONG_MAX: Range of Type. (line 88)
  4380. * ULLONG_WIDTH: Width of Type. (line 21)
  4381. * ULONG_LONG_MAX: Range of Type. (line 95)
  4382. * ULONG_MAX: Range of Type. (line 76)
  4383. * ULONG_WIDTH: Width of Type. (line 19)
  4384. * USER_PROCESS: Manipulating the Database.
  4385. (line 105)
  4386. * USER_PROCESS <1>: XPG Functions. (line 74)
  4387. * USHRT_MAX: Range of Type. (line 52)
  4388. * USHRT_WIDTH: Width of Type. (line 15)
  4389. * VDISCARD: Other Special. (line 24)
  4390. * VDSUSP: Signal Characters. (line 55)
  4391. * VEOF: Editing Characters. (line 9)
  4392. * VEOL: Editing Characters. (line 22)
  4393. * VEOL2: Editing Characters. (line 36)
  4394. * VERASE: Editing Characters. (line 49)
  4395. * VINTR: Signal Characters. (line 10)
  4396. * VKILL: Editing Characters. (line 89)
  4397. * VLNEXT: Other Special. (line 6)
  4398. * VMIN: Noncanonical Input. (line 24)
  4399. * VQUIT: Signal Characters. (line 22)
  4400. * VREPRINT: Editing Characters. (line 101)
  4401. * VSTART: Start/Stop Characters.
  4402. (line 10)
  4403. * VSTATUS: Other Special. (line 39)
  4404. * VSTOP: Start/Stop Characters.
  4405. (line 28)
  4406. * VSUSP: Signal Characters. (line 34)
  4407. * VTIME: Noncanonical Input. (line 33)
  4408. * VWERASE: Editing Characters. (line 64)
  4409. * W_OK: Testing File Access. (line 83)
  4410. * WAIT_ANY: Process Completion. (line 81)
  4411. * WAIT_MYPGRP: Process Completion. (line 86)
  4412. * WCHAR_MAX: Extended Char Intro. (line 112)
  4413. * WCHAR_MAX <1>: Range of Type. (line 102)
  4414. * WCHAR_MIN: Extended Char Intro. (line 105)
  4415. * WCHAR_WIDTH: Width of Type. (line 36)
  4416. * WEOF: Extended Char Intro. (line 121)
  4417. * WEOF <1>: EOF and Errors. (line 32)
  4418. * WINT_WIDTH: Width of Type. (line 37)
  4419. * WNOHANG: Process Completion. (line 95)
  4420. * WRDE_APPEND: Flags for Wordexp. (line 10)
  4421. * WRDE_BADCHAR: Calling Wordexp. (line 73)
  4422. * WRDE_BADVAL: Calling Wordexp. (line 78)
  4423. * WRDE_CMDSUB: Calling Wordexp. (line 83)
  4424. * WRDE_DOOFFS: Flags for Wordexp. (line 22)
  4425. * WRDE_NOCMD: Flags for Wordexp. (line 28)
  4426. * WRDE_NOSPACE: Calling Wordexp. (line 88)
  4427. * WRDE_REUSE: Flags for Wordexp. (line 33)
  4428. * WRDE_SHOWERR: Flags for Wordexp. (line 43)
  4429. * WRDE_SYNTAX: Calling Wordexp. (line 94)
  4430. * WRDE_UNDEF: Flags for Wordexp. (line 51)
  4431. * WUNTRACED: Process Completion. (line 101)
  4432. * X_OK: Testing File Access. (line 87)
  4433. * YESEXPR: The Elegant and Fast Way.
  4434. (line 256)
  4435. * YESSTR: The Elegant and Fast Way.
  4436. (line 265)