libc.info-17 236 KB

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