1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668
|
(
("a64l" . "http://www.opengroup.org/onlinepubs/007908799/xsh/a64l.html")
("abort" . "http://www.opengroup.org/onlinepubs/007908799/xsh/abort.html")
("abs" . "http://www.opengroup.org/onlinepubs/007908799/xsh/abs.html")
("access" . "http://www.opengroup.org/onlinepubs/007908799/xsh/access.html")
("acosh" . "http://www.opengroup.org/onlinepubs/007908799/xsh/acosh.html")
("acos" . "http://www.opengroup.org/onlinepubs/007908799/xsh/acos.html")
("advance" . "http://www.opengroup.org/onlinepubs/007908799/xsh/advance.html")
("aio_cancel" . "http://www.opengroup.org/onlinepubs/007908799/xsh/aio_cancel.html")
("aio_error" . "http://www.opengroup.org/onlinepubs/007908799/xsh/aio_error.html")
("aio_fsync" . "http://www.opengroup.org/onlinepubs/007908799/xsh/aio_fsync.html")
("aio.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/aio.h.html")
("aio_read" . "http://www.opengroup.org/onlinepubs/007908799/xsh/aio_read.html")
("aio_return" . "http://www.opengroup.org/onlinepubs/007908799/xsh/aio_return.html")
("aio_suspend" . "http://www.opengroup.org/onlinepubs/007908799/xsh/aio_suspend.html")
("aio_write" . "http://www.opengroup.org/onlinepubs/007908799/xsh/aio_write.html")
("alarm" . "http://www.opengroup.org/onlinepubs/007908799/xsh/alarm.html")
("asctime" . "http://www.opengroup.org/onlinepubs/007908799/xsh/asctime.html")
("asctime_r" . "http://www.opengroup.org/onlinepubs/007908799/xsh/asctime_r.html")
("asinh" . "http://www.opengroup.org/onlinepubs/007908799/xsh/asinh.html")
("asin" . "http://www.opengroup.org/onlinepubs/007908799/xsh/asin.html")
("assert.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/assert.h.html")
("assert" . "http://www.opengroup.org/onlinepubs/007908799/xsh/assert.html")
("atan2" . "http://www.opengroup.org/onlinepubs/007908799/xsh/atan2.html")
("atanh" . "http://www.opengroup.org/onlinepubs/007908799/xsh/atanh.html")
("atan" . "http://www.opengroup.org/onlinepubs/007908799/xsh/atan.html")
("atexit" . "http://www.opengroup.org/onlinepubs/007908799/xsh/atexit.html")
("atof" . "http://www.opengroup.org/onlinepubs/007908799/xsh/atof.html")
("atoi" . "http://www.opengroup.org/onlinepubs/007908799/xsh/atoi.html")
("atol" . "http://www.opengroup.org/onlinepubs/007908799/xsh/atol.html")
("basename" . "http://www.opengroup.org/onlinepubs/007908799/xsh/basename.html")
("bcmp" . "http://www.opengroup.org/onlinepubs/007908799/xsh/bcmp.html")
("bcopy" . "http://www.opengroup.org/onlinepubs/007908799/xsh/bcopy.html")
("brk" . "http://www.opengroup.org/onlinepubs/007908799/xsh/brk.html")
("bsd_signal" . "http://www.opengroup.org/onlinepubs/007908799/xsh/bsd_signal.html")
("bsearch" . "http://www.opengroup.org/onlinepubs/007908799/xsh/bsearch.html")
("btowc" . "http://www.opengroup.org/onlinepubs/007908799/xsh/btowc.html")
("bzero" . "http://www.opengroup.org/onlinepubs/007908799/xsh/bzero.html")
("calloc" . "http://www.opengroup.org/onlinepubs/007908799/xsh/calloc.html")
("catclose" . "http://www.opengroup.org/onlinepubs/007908799/xsh/catclose.html")
("catgets" . "http://www.opengroup.org/onlinepubs/007908799/xsh/catgets.html")
("catopen" . "http://www.opengroup.org/onlinepubs/007908799/xsh/catopen.html")
("cbrt" . "http://www.opengroup.org/onlinepubs/007908799/xsh/cbrt.html")
("ceil" . "http://www.opengroup.org/onlinepubs/007908799/xsh/ceil.html")
("cfgetispeed" . "http://www.opengroup.org/onlinepubs/007908799/xsh/cfgetispeed.html")
("cfgetospeed" . "http://www.opengroup.org/onlinepubs/007908799/xsh/cfgetospeed.html")
("cfsetispeed" . "http://www.opengroup.org/onlinepubs/007908799/xsh/cfsetispeed.html")
("cfsetospeed" . "http://www.opengroup.org/onlinepubs/007908799/xsh/cfsetospeed.html")
("chdir" . "http://www.opengroup.org/onlinepubs/007908799/xsh/chdir.html")
("chmod" . "http://www.opengroup.org/onlinepubs/007908799/xsh/chmod.html")
("chown" . "http://www.opengroup.org/onlinepubs/007908799/xsh/chown.html")
("chroot" . "http://www.opengroup.org/onlinepubs/007908799/xsh/chroot.html")
("clearerr" . "http://www.opengroup.org/onlinepubs/007908799/xsh/clearerr.html")
("clock_getres" . "http://www.opengroup.org/onlinepubs/007908799/xsh/clock_getres.html")
("clock_gettime" . "http://www.opengroup.org/onlinepubs/007908799/xsh/clock_gettime.html")
("clock" . "http://www.opengroup.org/onlinepubs/007908799/xsh/clock.html")
("clock_settime" . "http://www.opengroup.org/onlinepubs/007908799/xsh/clock_settime.html")
("closedir" . "http://www.opengroup.org/onlinepubs/007908799/xsh/closedir.html")
("close" . "http://www.opengroup.org/onlinepubs/007908799/xsh/close.html")
("closelog" . "http://www.opengroup.org/onlinepubs/007908799/xsh/closelog.html")
("compilation" . "http://www.opengroup.org/onlinepubs/007908799/xsh/compilation.html")
("compile" . "http://www.opengroup.org/onlinepubs/007908799/xsh/compile.html")
("confstr" . "http://www.opengroup.org/onlinepubs/007908799/xsh/confstr.html")
("cosh" . "http://www.opengroup.org/onlinepubs/007908799/xsh/cosh.html")
("cos" . "http://www.opengroup.org/onlinepubs/007908799/xsh/cos.html")
("cpio.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/cpio.h.html")
("creat" . "http://www.opengroup.org/onlinepubs/007908799/xsh/creat.html")
("crypt" . "http://www.opengroup.org/onlinepubs/007908799/xsh/crypt.html")
("ctermid" . "http://www.opengroup.org/onlinepubs/007908799/xsh/ctermid.html")
("ctime" . "http://www.opengroup.org/onlinepubs/007908799/xsh/ctime.html")
("ctime_r" . "http://www.opengroup.org/onlinepubs/007908799/xsh/ctime_r.html")
("ctype.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/ctype.h.html")
("cuserid" . "http://www.opengroup.org/onlinepubs/007908799/xsh/cuserid.html")
("datatypes" . "http://www.opengroup.org/onlinepubs/007908799/xsh/datatypes.html")
("daylight" . "http://www.opengroup.org/onlinepubs/007908799/xsh/daylight.html")
("dbm_clearerr" . "http://www.opengroup.org/onlinepubs/007908799/xsh/dbm_clearerr.html")
("dbm_close" . "http://www.opengroup.org/onlinepubs/007908799/xsh/dbm_close.html")
("dbm_delete" . "http://www.opengroup.org/onlinepubs/007908799/xsh/dbm_delete.html")
("dbm_error" . "http://www.opengroup.org/onlinepubs/007908799/xsh/dbm_error.html")
("dbm_fetch" . "http://www.opengroup.org/onlinepubs/007908799/xsh/dbm_fetch.html")
("dbm_firstkey" . "http://www.opengroup.org/onlinepubs/007908799/xsh/dbm_firstkey.html")
("dbm_nextkey" . "http://www.opengroup.org/onlinepubs/007908799/xsh/dbm_nextkey.html")
("dbm_open" . "http://www.opengroup.org/onlinepubs/007908799/xsh/dbm_open.html")
("dbm_store" . "http://www.opengroup.org/onlinepubs/007908799/xsh/dbm_store.html")
("difftime" . "http://www.opengroup.org/onlinepubs/007908799/xsh/difftime.html")
("dirent.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/dirent.h.html")
("dirname" . "http://www.opengroup.org/onlinepubs/007908799/xsh/dirname.html")
("div" . "http://www.opengroup.org/onlinepubs/007908799/xsh/div.html")
("dlclose" . "http://www.opengroup.org/onlinepubs/007908799/xsh/dlclose.html")
("dlerror" . "http://www.opengroup.org/onlinepubs/007908799/xsh/dlerror.html")
("dlfcn.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/dlfcn.h.html")
("dlopen" . "http://www.opengroup.org/onlinepubs/007908799/xsh/dlopen.html")
("dlsym" . "http://www.opengroup.org/onlinepubs/007908799/xsh/dlsym.html")
("drand48" . "http://www.opengroup.org/onlinepubs/007908799/xsh/drand48.html")
("dup2" . "http://www.opengroup.org/onlinepubs/007908799/xsh/dup2.html")
("dup" . "http://www.opengroup.org/onlinepubs/007908799/xsh/dup.html")
("ecvt" . "http://www.opengroup.org/onlinepubs/007908799/xsh/ecvt.html")
("encrypt" . "http://www.opengroup.org/onlinepubs/007908799/xsh/encrypt.html")
("endgrent" . "http://www.opengroup.org/onlinepubs/007908799/xsh/endgrent.html")
("endpwent" . "http://www.opengroup.org/onlinepubs/007908799/xsh/endpwent.html")
("endutxent" . "http://www.opengroup.org/onlinepubs/007908799/xsh/endutxent.html")
("environ" . "http://www.opengroup.org/onlinepubs/007908799/xsh/environ.html")
("erand48" . "http://www.opengroup.org/onlinepubs/007908799/xsh/erand48.html")
("erfc" . "http://www.opengroup.org/onlinepubs/007908799/xsh/erfc.html")
("erf" . "http://www.opengroup.org/onlinepubs/007908799/xsh/erf.html")
("errno.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/errno.h.html")
("errno" . "http://www.opengroup.org/onlinepubs/007908799/xsh/errno.html")
("errors" . "http://www.opengroup.org/onlinepubs/007908799/xsh/errors.html")
("exec" . "http://www.opengroup.org/onlinepubs/007908799/xsh/exec.html")
("execle" . "http://www.opengroup.org/onlinepubs/007908799/xsh/execle.html")
("execl" . "http://www.opengroup.org/onlinepubs/007908799/xsh/execl.html")
("execlp" . "http://www.opengroup.org/onlinepubs/007908799/xsh/execlp.html")
("execve" . "http://www.opengroup.org/onlinepubs/007908799/xsh/execve.html")
("execv" . "http://www.opengroup.org/onlinepubs/007908799/xsh/execv.html")
("execvp" . "http://www.opengroup.org/onlinepubs/007908799/xsh/execvp.html")
("_exit" . "http://www.opengroup.org/onlinepubs/007908799/xsh/_exit.html")
("exit" . "http://www.opengroup.org/onlinepubs/007908799/xsh/exit.html")
("exp" . "http://www.opengroup.org/onlinepubs/007908799/xsh/exp.html")
("expm1" . "http://www.opengroup.org/onlinepubs/007908799/xsh/expm1.html")
("fabs" . "http://www.opengroup.org/onlinepubs/007908799/xsh/fabs.html")
("fattach" . "http://www.opengroup.org/onlinepubs/007908799/xsh/fattach.html")
("fchdir" . "http://www.opengroup.org/onlinepubs/007908799/xsh/fchdir.html")
("fchmod" . "http://www.opengroup.org/onlinepubs/007908799/xsh/fchmod.html")
("fchown" . "http://www.opengroup.org/onlinepubs/007908799/xsh/fchown.html")
("fclose" . "http://www.opengroup.org/onlinepubs/007908799/xsh/fclose.html")
("fcntl.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/fcntl.h.html")
("fcntl" . "http://www.opengroup.org/onlinepubs/007908799/xsh/fcntl.html")
("fcvt" . "http://www.opengroup.org/onlinepubs/007908799/xsh/fcvt.html")
("fdatasync" . "http://www.opengroup.org/onlinepubs/007908799/xsh/fdatasync.html")
("FD_CLR" . "http://www.opengroup.org/onlinepubs/007908799/xsh/FD_CLR.html")
("fdetach" . "http://www.opengroup.org/onlinepubs/007908799/xsh/fdetach.html")
("fdopen" . "http://www.opengroup.org/onlinepubs/007908799/xsh/fdopen.html")
("feature" . "http://www.opengroup.org/onlinepubs/007908799/xsh/feature.html")
("feof" . "http://www.opengroup.org/onlinepubs/007908799/xsh/feof.html")
("ferror" . "http://www.opengroup.org/onlinepubs/007908799/xsh/ferror.html")
("fflush" . "http://www.opengroup.org/onlinepubs/007908799/xsh/fflush.html")
("ffs" . "http://www.opengroup.org/onlinepubs/007908799/xsh/ffs.html")
("fgetc" . "http://www.opengroup.org/onlinepubs/007908799/xsh/fgetc.html")
("fgetpos" . "http://www.opengroup.org/onlinepubs/007908799/xsh/fgetpos.html")
("fgets" . "http://www.opengroup.org/onlinepubs/007908799/xsh/fgets.html")
("fgetwc" . "http://www.opengroup.org/onlinepubs/007908799/xsh/fgetwc.html")
("fgetws" . "http://www.opengroup.org/onlinepubs/007908799/xsh/fgetws.html")
("fileno" . "http://www.opengroup.org/onlinepubs/007908799/xsh/fileno.html")
("float.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/float.h.html")
("flockfile" . "http://www.opengroup.org/onlinepubs/007908799/xsh/flockfile.html")
("floor" . "http://www.opengroup.org/onlinepubs/007908799/xsh/floor.html")
("fmod" . "http://www.opengroup.org/onlinepubs/007908799/xsh/fmod.html")
("fmtmsg.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/fmtmsg.h.html")
("fmtmsg" . "http://www.opengroup.org/onlinepubs/007908799/xsh/fmtmsg.html")
("fnmatch.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/fnmatch.h.html")
("fnmatch" . "http://www.opengroup.org/onlinepubs/007908799/xsh/fnmatch.html")
("fopen" . "http://www.opengroup.org/onlinepubs/007908799/xsh/fopen.html")
("fork" . "http://www.opengroup.org/onlinepubs/007908799/xsh/fork.html")
("fpathconf" . "http://www.opengroup.org/onlinepubs/007908799/xsh/fpathconf.html")
("fprintf" . "http://www.opengroup.org/onlinepubs/007908799/xsh/fprintf.html")
("fputc" . "http://www.opengroup.org/onlinepubs/007908799/xsh/fputc.html")
("fputs" . "http://www.opengroup.org/onlinepubs/007908799/xsh/fputs.html")
("fputwc" . "http://www.opengroup.org/onlinepubs/007908799/xsh/fputwc.html")
("fputws" . "http://www.opengroup.org/onlinepubs/007908799/xsh/fputws.html")
("fread" . "http://www.opengroup.org/onlinepubs/007908799/xsh/fread.html")
("free" . "http://www.opengroup.org/onlinepubs/007908799/xsh/free.html")
("freopen" . "http://www.opengroup.org/onlinepubs/007908799/xsh/freopen.html")
("frexp" . "http://www.opengroup.org/onlinepubs/007908799/xsh/frexp.html")
("fscanf" . "http://www.opengroup.org/onlinepubs/007908799/xsh/fscanf.html")
("fseek" . "http://www.opengroup.org/onlinepubs/007908799/xsh/fseek.html")
("fseeko" . "http://www.opengroup.org/onlinepubs/007908799/xsh/fseeko.html")
("fsetpos" . "http://www.opengroup.org/onlinepubs/007908799/xsh/fsetpos.html")
("fstat" . "http://www.opengroup.org/onlinepubs/007908799/xsh/fstat.html")
("fstatvfs" . "http://www.opengroup.org/onlinepubs/007908799/xsh/fstatvfs.html")
("fsync" . "http://www.opengroup.org/onlinepubs/007908799/xsh/fsync.html")
("ftell" . "http://www.opengroup.org/onlinepubs/007908799/xsh/ftell.html")
("ftello" . "http://www.opengroup.org/onlinepubs/007908799/xsh/ftello.html")
("ftime" . "http://www.opengroup.org/onlinepubs/007908799/xsh/ftime.html")
("ftok" . "http://www.opengroup.org/onlinepubs/007908799/xsh/ftok.html")
("ftruncate" . "http://www.opengroup.org/onlinepubs/007908799/xsh/ftruncate.html")
("ftrylockfile" . "http://www.opengroup.org/onlinepubs/007908799/xsh/ftrylockfile.html")
("ftw.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/ftw.h.html")
("ftw" . "http://www.opengroup.org/onlinepubs/007908799/xsh/ftw.html")
("funlockfile" . "http://www.opengroup.org/onlinepubs/007908799/xsh/funlockfile.html")
("fwide" . "http://www.opengroup.org/onlinepubs/007908799/xsh/fwide.html")
("fwprintf" . "http://www.opengroup.org/onlinepubs/007908799/xsh/fwprintf.html")
("fwrite" . "http://www.opengroup.org/onlinepubs/007908799/xsh/fwrite.html")
("fwscanf" . "http://www.opengroup.org/onlinepubs/007908799/xsh/fwscanf.html")
("gamma" . "http://www.opengroup.org/onlinepubs/007908799/xsh/gamma.html")
("gcvt" . "http://www.opengroup.org/onlinepubs/007908799/xsh/gcvt.html")
("getchar" . "http://www.opengroup.org/onlinepubs/007908799/xsh/getchar.html")
("getchar_unlocked" . "http://www.opengroup.org/onlinepubs/007908799/xsh/getchar_unlocked.html")
("getc" . "http://www.opengroup.org/onlinepubs/007908799/xsh/getc.html")
("getcontext" . "http://www.opengroup.org/onlinepubs/007908799/xsh/getcontext.html")
("getc_unlocked" . "http://www.opengroup.org/onlinepubs/007908799/xsh/getc_unlocked.html")
("getcwd" . "http://www.opengroup.org/onlinepubs/007908799/xsh/getcwd.html")
("getdate" . "http://www.opengroup.org/onlinepubs/007908799/xsh/getdate.html")
("getdtablesize" . "http://www.opengroup.org/onlinepubs/007908799/xsh/getdtablesize.html")
("getegid" . "http://www.opengroup.org/onlinepubs/007908799/xsh/getegid.html")
("getenv" . "http://www.opengroup.org/onlinepubs/007908799/xsh/getenv.html")
("geteuid" . "http://www.opengroup.org/onlinepubs/007908799/xsh/geteuid.html")
("getgid" . "http://www.opengroup.org/onlinepubs/007908799/xsh/getgid.html")
("getgrent" . "http://www.opengroup.org/onlinepubs/007908799/xsh/getgrent.html")
("getgrgid" . "http://www.opengroup.org/onlinepubs/007908799/xsh/getgrgid.html")
("getgrgid_r" . "http://www.opengroup.org/onlinepubs/007908799/xsh/getgrgid_r.html")
("getgrnam" . "http://www.opengroup.org/onlinepubs/007908799/xsh/getgrnam.html")
("getgrnam_r" . "http://www.opengroup.org/onlinepubs/007908799/xsh/getgrnam_r.html")
("getgroups" . "http://www.opengroup.org/onlinepubs/007908799/xsh/getgroups.html")
("gethostid" . "http://www.opengroup.org/onlinepubs/007908799/xsh/gethostid.html")
("getitimer" . "http://www.opengroup.org/onlinepubs/007908799/xsh/getitimer.html")
("getlogin" . "http://www.opengroup.org/onlinepubs/007908799/xsh/getlogin.html")
("getlogin_r" . "http://www.opengroup.org/onlinepubs/007908799/xsh/getlogin_r.html")
("getmsg" . "http://www.opengroup.org/onlinepubs/007908799/xsh/getmsg.html")
("getopt" . "http://www.opengroup.org/onlinepubs/007908799/xsh/getopt.html")
("getpagesize" . "http://www.opengroup.org/onlinepubs/007908799/xsh/getpagesize.html")
("getpass" . "http://www.opengroup.org/onlinepubs/007908799/xsh/getpass.html")
("getpgid" . "http://www.opengroup.org/onlinepubs/007908799/xsh/getpgid.html")
("getpgrp" . "http://www.opengroup.org/onlinepubs/007908799/xsh/getpgrp.html")
("getpid" . "http://www.opengroup.org/onlinepubs/007908799/xsh/getpid.html")
("getpmsg" . "http://www.opengroup.org/onlinepubs/007908799/xsh/getpmsg.html")
("getppid" . "http://www.opengroup.org/onlinepubs/007908799/xsh/getppid.html")
("getpriority" . "http://www.opengroup.org/onlinepubs/007908799/xsh/getpriority.html")
("getpwent" . "http://www.opengroup.org/onlinepubs/007908799/xsh/getpwent.html")
("getpwnam" . "http://www.opengroup.org/onlinepubs/007908799/xsh/getpwnam.html")
("getpwnam_r" . "http://www.opengroup.org/onlinepubs/007908799/xsh/getpwnam_r.html")
("getpwuid" . "http://www.opengroup.org/onlinepubs/007908799/xsh/getpwuid.html")
("getpwuid_r" . "http://www.opengroup.org/onlinepubs/007908799/xsh/getpwuid_r.html")
("getrlimit" . "http://www.opengroup.org/onlinepubs/007908799/xsh/getrlimit.html")
("getrusage" . "http://www.opengroup.org/onlinepubs/007908799/xsh/getrusage.html")
("gets" . "http://www.opengroup.org/onlinepubs/007908799/xsh/gets.html")
("getsid" . "http://www.opengroup.org/onlinepubs/007908799/xsh/getsid.html")
("getsubopt" . "http://www.opengroup.org/onlinepubs/007908799/xsh/getsubopt.html")
("gettimeofday" . "http://www.opengroup.org/onlinepubs/007908799/xsh/gettimeofday.html")
("getuid" . "http://www.opengroup.org/onlinepubs/007908799/xsh/getuid.html")
("getutxent" . "http://www.opengroup.org/onlinepubs/007908799/xsh/getutxent.html")
("getutxid" . "http://www.opengroup.org/onlinepubs/007908799/xsh/getutxid.html")
("getutxline" . "http://www.opengroup.org/onlinepubs/007908799/xsh/getutxline.html")
("getwchar" . "http://www.opengroup.org/onlinepubs/007908799/xsh/getwchar.html")
("getwc" . "http://www.opengroup.org/onlinepubs/007908799/xsh/getwc.html")
("getwd" . "http://www.opengroup.org/onlinepubs/007908799/xsh/getwd.html")
("getw" . "http://www.opengroup.org/onlinepubs/007908799/xsh/getw.html")
("globfree" . "http://www.opengroup.org/onlinepubs/007908799/xsh/globfree.html")
("glob.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/glob.h.html")
("glob" . "http://www.opengroup.org/onlinepubs/007908799/xsh/glob.html")
("gmtime" . "http://www.opengroup.org/onlinepubs/007908799/xsh/gmtime.html")
("gmtime_r" . "http://www.opengroup.org/onlinepubs/007908799/xsh/gmtime_r.html")
("grantpt" . "http://www.opengroup.org/onlinepubs/007908799/xsh/grantpt.html")
("grp.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/grp.h.html")
("hcreate" . "http://www.opengroup.org/onlinepubs/007908799/xsh/hcreate.html")
("hdestroy" . "http://www.opengroup.org/onlinepubs/007908799/xsh/hdestroy.html")
("hsearch" . "http://www.opengroup.org/onlinepubs/007908799/xsh/hsearch.html")
("hypot" . "http://www.opengroup.org/onlinepubs/007908799/xsh/hypot.html")
("iconv_close" . "http://www.opengroup.org/onlinepubs/007908799/xsh/iconv_close.html")
("iconv.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/iconv.h.html")
("iconv" . "http://www.opengroup.org/onlinepubs/007908799/xsh/iconv.html")
("iconv_open" . "http://www.opengroup.org/onlinepubs/007908799/xsh/iconv_open.html")
("ilogb" . "http://www.opengroup.org/onlinepubs/007908799/xsh/ilogb.html")
("index" . "http://www.opengroup.org/onlinepubs/007908799/xsh/index.html")
("initstate" . "http://www.opengroup.org/onlinepubs/007908799/xsh/initstate.html")
("insque" . "http://www.opengroup.org/onlinepubs/007908799/xsh/insque.html")
("interfaces" . "http://www.opengroup.org/onlinepubs/007908799/xsh/interfaces.html")
("inttypes.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/inttypes.h.html")
("ioctl" . "http://www.opengroup.org/onlinepubs/007908799/xsh/ioctl.html")
("ipc" . "http://www.opengroup.org/onlinepubs/007908799/xsh/ipc.html")
("isalnum" . "http://www.opengroup.org/onlinepubs/007908799/xsh/isalnum.html")
("isalpha" . "http://www.opengroup.org/onlinepubs/007908799/xsh/isalpha.html")
("isascii" . "http://www.opengroup.org/onlinepubs/007908799/xsh/isascii.html")
("isastream" . "http://www.opengroup.org/onlinepubs/007908799/xsh/isastream.html")
("isatty" . "http://www.opengroup.org/onlinepubs/007908799/xsh/isatty.html")
("iscntrl" . "http://www.opengroup.org/onlinepubs/007908799/xsh/iscntrl.html")
("isdigit" . "http://www.opengroup.org/onlinepubs/007908799/xsh/isdigit.html")
("isgraph" . "http://www.opengroup.org/onlinepubs/007908799/xsh/isgraph.html")
("islower" . "http://www.opengroup.org/onlinepubs/007908799/xsh/islower.html")
("isnan" . "http://www.opengroup.org/onlinepubs/007908799/xsh/isnan.html")
("iso646.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/iso646.h.html")
("isprint" . "http://www.opengroup.org/onlinepubs/007908799/xsh/isprint.html")
("ispunct" . "http://www.opengroup.org/onlinepubs/007908799/xsh/ispunct.html")
("isspace" . "http://www.opengroup.org/onlinepubs/007908799/xsh/isspace.html")
("isupper" . "http://www.opengroup.org/onlinepubs/007908799/xsh/isupper.html")
("iswalnum" . "http://www.opengroup.org/onlinepubs/007908799/xsh/iswalnum.html")
("iswalpha" . "http://www.opengroup.org/onlinepubs/007908799/xsh/iswalpha.html")
("iswcntrl" . "http://www.opengroup.org/onlinepubs/007908799/xsh/iswcntrl.html")
("iswctype" . "http://www.opengroup.org/onlinepubs/007908799/xsh/iswctype.html")
("iswdigit" . "http://www.opengroup.org/onlinepubs/007908799/xsh/iswdigit.html")
("iswgraph" . "http://www.opengroup.org/onlinepubs/007908799/xsh/iswgraph.html")
("iswlower" . "http://www.opengroup.org/onlinepubs/007908799/xsh/iswlower.html")
("iswprint" . "http://www.opengroup.org/onlinepubs/007908799/xsh/iswprint.html")
("iswpunct" . "http://www.opengroup.org/onlinepubs/007908799/xsh/iswpunct.html")
("iswspace" . "http://www.opengroup.org/onlinepubs/007908799/xsh/iswspace.html")
("iswupper" . "http://www.opengroup.org/onlinepubs/007908799/xsh/iswupper.html")
("iswxdigit" . "http://www.opengroup.org/onlinepubs/007908799/xsh/iswxdigit.html")
("isxdigit" . "http://www.opengroup.org/onlinepubs/007908799/xsh/isxdigit.html")
("j0" . "http://www.opengroup.org/onlinepubs/007908799/xsh/j0.html")
("j1" . "http://www.opengroup.org/onlinepubs/007908799/xsh/j1.html")
("jn" . "http://www.opengroup.org/onlinepubs/007908799/xsh/jn.html")
("jrand48" . "http://www.opengroup.org/onlinepubs/007908799/xsh/jrand48.html")
("kill" . "http://www.opengroup.org/onlinepubs/007908799/xsh/kill.html")
("killpg" . "http://www.opengroup.org/onlinepubs/007908799/xsh/killpg.html")
("l64a" . "http://www.opengroup.org/onlinepubs/007908799/xsh/l64a.html")
("labs" . "http://www.opengroup.org/onlinepubs/007908799/xsh/labs.html")
("langinfo.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/langinfo.h.html")
("lchown" . "http://www.opengroup.org/onlinepubs/007908799/xsh/lchown.html")
("lcong48" . "http://www.opengroup.org/onlinepubs/007908799/xsh/lcong48.html")
("ldexp" . "http://www.opengroup.org/onlinepubs/007908799/xsh/ldexp.html")
("ldiv" . "http://www.opengroup.org/onlinepubs/007908799/xsh/ldiv.html")
("lfind" . "http://www.opengroup.org/onlinepubs/007908799/xsh/lfind.html")
("lgamma" . "http://www.opengroup.org/onlinepubs/007908799/xsh/lgamma.html")
("libgen.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/libgen.h.html")
("limits.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/limits.h.html")
("link" . "http://www.opengroup.org/onlinepubs/007908799/xsh/link.html")
("lio_listio" . "http://www.opengroup.org/onlinepubs/007908799/xsh/lio_listio.html")
("loc1" . "http://www.opengroup.org/onlinepubs/007908799/xsh/loc1.html")
("localeconv" . "http://www.opengroup.org/onlinepubs/007908799/xsh/localeconv.html")
("locale.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/locale.h.html")
("localtime" . "http://www.opengroup.org/onlinepubs/007908799/xsh/localtime.html")
("localtime_r" . "http://www.opengroup.org/onlinepubs/007908799/xsh/localtime_r.html")
("lockf" . "http://www.opengroup.org/onlinepubs/007908799/xsh/lockf.html")
("locs" . "http://www.opengroup.org/onlinepubs/007908799/xsh/locs.html")
("log10" . "http://www.opengroup.org/onlinepubs/007908799/xsh/log10.html")
("log1p" . "http://www.opengroup.org/onlinepubs/007908799/xsh/log1p.html")
("logb" . "http://www.opengroup.org/onlinepubs/007908799/xsh/logb.html")
("log" . "http://www.opengroup.org/onlinepubs/007908799/xsh/log.html")
("_longjmp" . "http://www.opengroup.org/onlinepubs/007908799/xsh/_longjmp.html")
("longjmp" . "http://www.opengroup.org/onlinepubs/007908799/xsh/longjmp.html")
("lrand48" . "http://www.opengroup.org/onlinepubs/007908799/xsh/lrand48.html")
("lsearch" . "http://www.opengroup.org/onlinepubs/007908799/xsh/lsearch.html")
("lseek" . "http://www.opengroup.org/onlinepubs/007908799/xsh/lseek.html")
("lstat" . "http://www.opengroup.org/onlinepubs/007908799/xsh/lstat.html")
("makecontext" . "http://www.opengroup.org/onlinepubs/007908799/xsh/makecontext.html")
("malloc" . "http://www.opengroup.org/onlinepubs/007908799/xsh/malloc.html")
("math.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/math.h.html")
("mblen" . "http://www.opengroup.org/onlinepubs/007908799/xsh/mblen.html")
("mbrlen" . "http://www.opengroup.org/onlinepubs/007908799/xsh/mbrlen.html")
("mbrtowc" . "http://www.opengroup.org/onlinepubs/007908799/xsh/mbrtowc.html")
("mbsinit" . "http://www.opengroup.org/onlinepubs/007908799/xsh/mbsinit.html")
("mbsrtowcs" . "http://www.opengroup.org/onlinepubs/007908799/xsh/mbsrtowcs.html")
("mbstowcs" . "http://www.opengroup.org/onlinepubs/007908799/xsh/mbstowcs.html")
("mbtowc" . "http://www.opengroup.org/onlinepubs/007908799/xsh/mbtowc.html")
("memccpy" . "http://www.opengroup.org/onlinepubs/007908799/xsh/memccpy.html")
("memchr" . "http://www.opengroup.org/onlinepubs/007908799/xsh/memchr.html")
("memcmp" . "http://www.opengroup.org/onlinepubs/007908799/xsh/memcmp.html")
("memcpy" . "http://www.opengroup.org/onlinepubs/007908799/xsh/memcpy.html")
("memmove" . "http://www.opengroup.org/onlinepubs/007908799/xsh/memmove.html")
("memset" . "http://www.opengroup.org/onlinepubs/007908799/xsh/memset.html")
("mkdir" . "http://www.opengroup.org/onlinepubs/007908799/xsh/mkdir.html")
("mkfifo" . "http://www.opengroup.org/onlinepubs/007908799/xsh/mkfifo.html")
("mknod" . "http://www.opengroup.org/onlinepubs/007908799/xsh/mknod.html")
("mkstemp" . "http://www.opengroup.org/onlinepubs/007908799/xsh/mkstemp.html")
("mktemp" . "http://www.opengroup.org/onlinepubs/007908799/xsh/mktemp.html")
("mktime" . "http://www.opengroup.org/onlinepubs/007908799/xsh/mktime.html")
("mlockall" . "http://www.opengroup.org/onlinepubs/007908799/xsh/mlockall.html")
("mlock" . "http://www.opengroup.org/onlinepubs/007908799/xsh/mlock.html")
("mmap" . "http://www.opengroup.org/onlinepubs/007908799/xsh/mmap.html")
("modf" . "http://www.opengroup.org/onlinepubs/007908799/xsh/modf.html")
("monetary.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/monetary.h.html")
("mprotect" . "http://www.opengroup.org/onlinepubs/007908799/xsh/mprotect.html")
("mq_close" . "http://www.opengroup.org/onlinepubs/007908799/xsh/mq_close.html")
("mq_getattr" . "http://www.opengroup.org/onlinepubs/007908799/xsh/mq_getattr.html")
("mq_notify" . "http://www.opengroup.org/onlinepubs/007908799/xsh/mq_notify.html")
("mq_open" . "http://www.opengroup.org/onlinepubs/007908799/xsh/mq_open.html")
("mq_receive" . "http://www.opengroup.org/onlinepubs/007908799/xsh/mq_receive.html")
("mq_send" . "http://www.opengroup.org/onlinepubs/007908799/xsh/mq_send.html")
("mq_setattr" . "http://www.opengroup.org/onlinepubs/007908799/xsh/mq_setattr.html")
("mqueue.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/mqueue.h.html")
("mq_unlink" . "http://www.opengroup.org/onlinepubs/007908799/xsh/mq_unlink.html")
("mrand48" . "http://www.opengroup.org/onlinepubs/007908799/xsh/mrand48.html")
("msgctl" . "http://www.opengroup.org/onlinepubs/007908799/xsh/msgctl.html")
("msgget" . "http://www.opengroup.org/onlinepubs/007908799/xsh/msgget.html")
("msgrcv" . "http://www.opengroup.org/onlinepubs/007908799/xsh/msgrcv.html")
("msgsnd" . "http://www.opengroup.org/onlinepubs/007908799/xsh/msgsnd.html")
("msync" . "http://www.opengroup.org/onlinepubs/007908799/xsh/msync.html")
("munlockall" . "http://www.opengroup.org/onlinepubs/007908799/xsh/munlockall.html")
("munlock" . "http://www.opengroup.org/onlinepubs/007908799/xsh/munlock.html")
("munmap" . "http://www.opengroup.org/onlinepubs/007908799/xsh/munmap.html")
("nanosleep" . "http://www.opengroup.org/onlinepubs/007908799/xsh/nanosleep.html")
("ndbm.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/ndbm.h.html")
("nextafter" . "http://www.opengroup.org/onlinepubs/007908799/xsh/nextafter.html")
("nftw" . "http://www.opengroup.org/onlinepubs/007908799/xsh/nftw.html")
("nice" . "http://www.opengroup.org/onlinepubs/007908799/xsh/nice.html")
("nl_langinfo" . "http://www.opengroup.org/onlinepubs/007908799/xsh/nl_langinfo.html")
("nl_types.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/nl_types.h.html")
("nrand48" . "http://www.opengroup.org/onlinepubs/007908799/xsh/nrand48.html")
("opendir" . "http://www.opengroup.org/onlinepubs/007908799/xsh/opendir.html")
("open" . "http://www.opengroup.org/onlinepubs/007908799/xsh/open.html")
("openlog" . "http://www.opengroup.org/onlinepubs/007908799/xsh/openlog.html")
("optarg" . "http://www.opengroup.org/onlinepubs/007908799/xsh/optarg.html")
("pathconf" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pathconf.html")
("pause" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pause.html")
("pclose" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pclose.html")
("perror" . "http://www.opengroup.org/onlinepubs/007908799/xsh/perror.html")
("pipe" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pipe.html")
("poll.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/poll.h.html")
("poll" . "http://www.opengroup.org/onlinepubs/007908799/xsh/poll.html")
("popen" . "http://www.opengroup.org/onlinepubs/007908799/xsh/popen.html")
("pow" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pow.html")
("pread" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pread.html")
("printf" . "http://www.opengroup.org/onlinepubs/007908799/xsh/printf.html")
("pthread_atfork" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_atfork.html")
("pthread_attr_destroy" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_attr_destroy.html")
("pthread_attr_getdetachstate" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_attr_getdetachstate.html")
("pthread_attr_getguardsize" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_attr_getguardsize.html")
("pthread_attr_getinheritsched" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_attr_getinheritsched.html")
("pthread_attr_getschedparam" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_attr_getschedparam.html")
("pthread_attr_getschedpolicy" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_attr_getschedpolicy.html")
("pthread_attr_getscope" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_attr_getscope.html")
("pthread_attr_getstackaddr" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_attr_getstackaddr.html")
("pthread_attr_getstacksize" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_attr_getstacksize.html")
("pthread_attr_init" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_attr_init.html")
("pthread_attr_setdetachstate" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_attr_setdetachstate.html")
("pthread_attr_setguardsize" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_attr_setguardsize.html")
("pthread_attr_setinheritsched" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_attr_setinheritsched.html")
("pthread_attr_setschedparam" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_attr_setschedparam.html")
("pthread_attr_setschedpolicy" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_attr_setschedpolicy.html")
("pthread_attr_setscope" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_attr_setscope.html")
("pthread_attr_setstackaddr" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_attr_setstackaddr.html")
("pthread_attr_setstacksize" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_attr_setstacksize.html")
("pthread_cancel" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_cancel.html")
("pthread_cleanup_pop" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_cleanup_pop.html")
("pthread_cleanup_push" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_cleanup_push.html")
("pthread_condattr_destroy" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_condattr_destroy.html")
("pthread_condattr_getpshared" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_condattr_getpshared.html")
("pthread_condattr_init" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_condattr_init.html")
("pthread_condattr_setpshared" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_condattr_setpshared.html")
("pthread_cond_broadcast" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_cond_broadcast.html")
("pthread_cond_destroy" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_cond_destroy.html")
("pthread_cond_init" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_cond_init.html")
("pthread_cond_signal" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_cond_signal.html")
("pthread_cond_timedwait" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_cond_timedwait.html")
("pthread_cond_wait" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_cond_wait.html")
("pthread_create" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_create.html")
("pthread_detach" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_detach.html")
("pthread_equal" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_equal.html")
("pthread_exit" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_exit.html")
("pthread_getconcurrency" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_getconcurrency.html")
("pthread_getschedparam" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_getschedparam.html")
("pthread_getspecific" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_getspecific.html")
("pthread.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread.h.html")
("pthread_join" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_join.html")
("pthread_key_create" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_key_create.html")
("pthread_key_delete" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_key_delete.html")
("pthread_kill" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_kill.html")
("pthread_mutexattr_destroy" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_mutexattr_destroy.html")
("pthread_mutexattr_getprioceiling" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_mutexattr_getprioceiling.html")
("pthread_mutexattr_getprotocol" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_mutexattr_getprotocol.html")
("pthread_mutexattr_getpshared" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_mutexattr_getpshared.html")
("pthread_mutexattr_gettype" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_mutexattr_gettype.html")
("pthread_mutexattr_init" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_mutexattr_init.html")
("pthread_mutexattr_setprioceiling" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_mutexattr_setprioceiling.html")
("pthread_mutexattr_setprotocol" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_mutexattr_setprotocol.html")
("pthread_mutexattr_setpshared" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_mutexattr_setpshared.html")
("pthread_mutexattr_settype" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_mutexattr_settype.html")
("pthread_mutex_destroy" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_mutex_destroy.html")
("pthread_mutex_getprioceiling" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_mutex_getprioceiling.html")
("pthread_mutex_init" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_mutex_init.html")
("pthread_mutex_lock" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_mutex_lock.html")
("pthread_mutex_setprioceiling" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_mutex_setprioceiling.html")
("pthread_mutex_trylock" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_mutex_trylock.html")
("pthread_mutex_unlock" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_mutex_unlock.html")
("pthread_once" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_once.html")
("pthread_rwlockattr_destroy" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_rwlockattr_destroy.html")
("pthread_rwlockattr_getpshared" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_rwlockattr_getpshared.html")
("pthread_rwlockattr_init" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_rwlockattr_init.html")
("pthread_rwlockattr_setpshared" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_rwlockattr_setpshared.html")
("pthread_rwlock_destroy" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_rwlock_destroy.html")
("pthread_rwlock_init" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_rwlock_init.html")
("pthread_rwlock_rdlock" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_rwlock_rdlock.html")
("pthread_rwlock_tryrdlock" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_rwlock_tryrdlock.html")
("pthread_rwlock_trywrlock" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_rwlock_trywrlock.html")
("pthread_rwlock_unlock" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_rwlock_unlock.html")
("pthread_rwlock_wrlock" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_rwlock_wrlock.html")
("pthread_self" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_self.html")
("pthread_setcancelstate" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_setcancelstate.html")
("pthread_setcanceltype" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_setcanceltype.html")
("pthread_setconcurrency" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_setconcurrency.html")
("pthread_setschedparam" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_setschedparam.html")
("pthread_setspecific" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_setspecific.html")
("pthread_sigmask" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_sigmask.html")
("pthread_testcancel" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_testcancel.html")
("ptsname" . "http://www.opengroup.org/onlinepubs/007908799/xsh/ptsname.html")
("putchar" . "http://www.opengroup.org/onlinepubs/007908799/xsh/putchar.html")
("putchar_unlocked" . "http://www.opengroup.org/onlinepubs/007908799/xsh/putchar_unlocked.html")
("putc" . "http://www.opengroup.org/onlinepubs/007908799/xsh/putc.html")
("putc_unlocked" . "http://www.opengroup.org/onlinepubs/007908799/xsh/putc_unlocked.html")
("putenv" . "http://www.opengroup.org/onlinepubs/007908799/xsh/putenv.html")
("putmsg" . "http://www.opengroup.org/onlinepubs/007908799/xsh/putmsg.html")
("putpmsg" . "http://www.opengroup.org/onlinepubs/007908799/xsh/putpmsg.html")
("puts" . "http://www.opengroup.org/onlinepubs/007908799/xsh/puts.html")
("pututxline" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pututxline.html")
("putwchar" . "http://www.opengroup.org/onlinepubs/007908799/xsh/putwchar.html")
("putwc" . "http://www.opengroup.org/onlinepubs/007908799/xsh/putwc.html")
("putw" . "http://www.opengroup.org/onlinepubs/007908799/xsh/putw.html")
("pwd.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pwd.h.html")
("pwrite" . "http://www.opengroup.org/onlinepubs/007908799/xsh/pwrite.html")
("qsort" . "http://www.opengroup.org/onlinepubs/007908799/xsh/qsort.html")
("raise" . "http://www.opengroup.org/onlinepubs/007908799/xsh/raise.html")
("rand" . "http://www.opengroup.org/onlinepubs/007908799/xsh/rand.html")
("random" . "http://www.opengroup.org/onlinepubs/007908799/xsh/random.html")
("rand_r" . "http://www.opengroup.org/onlinepubs/007908799/xsh/rand_r.html")
("readdir" . "http://www.opengroup.org/onlinepubs/007908799/xsh/readdir.html")
("readdir_r" . "http://www.opengroup.org/onlinepubs/007908799/xsh/readdir_r.html")
("read" . "http://www.opengroup.org/onlinepubs/007908799/xsh/read.html")
("readlink" . "http://www.opengroup.org/onlinepubs/007908799/xsh/readlink.html")
("readv" . "http://www.opengroup.org/onlinepubs/007908799/xsh/readv.html")
("realloc" . "http://www.opengroup.org/onlinepubs/007908799/xsh/realloc.html")
("realpath" . "http://www.opengroup.org/onlinepubs/007908799/xsh/realpath.html")
("realtime" . "http://www.opengroup.org/onlinepubs/007908799/xsh/realtime.html")
("re_comp.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/re_comp.h.html")
("re_comp" . "http://www.opengroup.org/onlinepubs/007908799/xsh/re_comp.html")
("re_exec" . "http://www.opengroup.org/onlinepubs/007908799/xsh/re_exec.html")
("regcmp" . "http://www.opengroup.org/onlinepubs/007908799/xsh/regcmp.html")
("regcomp" . "http://www.opengroup.org/onlinepubs/007908799/xsh/regcomp.html")
("regerror" . "http://www.opengroup.org/onlinepubs/007908799/xsh/regerror.html")
("regexec" . "http://www.opengroup.org/onlinepubs/007908799/xsh/regexec.html")
("regex.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/regex.h.html")
("regex" . "http://www.opengroup.org/onlinepubs/007908799/xsh/regex.html")
("regexp.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/regexp.h.html")
("regexp" . "http://www.opengroup.org/onlinepubs/007908799/xsh/regexp.html")
("regfree" . "http://www.opengroup.org/onlinepubs/007908799/xsh/regfree.html")
("remainder" . "http://www.opengroup.org/onlinepubs/007908799/xsh/remainder.html")
("remove" . "http://www.opengroup.org/onlinepubs/007908799/xsh/remove.html")
("remque" . "http://www.opengroup.org/onlinepubs/007908799/xsh/remque.html")
("rename" . "http://www.opengroup.org/onlinepubs/007908799/xsh/rename.html")
("rewinddir" . "http://www.opengroup.org/onlinepubs/007908799/xsh/rewinddir.html")
("rewind" . "http://www.opengroup.org/onlinepubs/007908799/xsh/rewind.html")
("rindex" . "http://www.opengroup.org/onlinepubs/007908799/xsh/rindex.html")
("rint" . "http://www.opengroup.org/onlinepubs/007908799/xsh/rint.html")
("rmdir" . "http://www.opengroup.org/onlinepubs/007908799/xsh/rmdir.html")
("sbrk" . "http://www.opengroup.org/onlinepubs/007908799/xsh/sbrk.html")
("scalb" . "http://www.opengroup.org/onlinepubs/007908799/xsh/scalb.html")
("scanf" . "http://www.opengroup.org/onlinepubs/007908799/xsh/scanf.html")
("sched_getparam" . "http://www.opengroup.org/onlinepubs/007908799/xsh/sched_getparam.html")
("sched_get_priority_max" . "http://www.opengroup.org/onlinepubs/007908799/xsh/sched_get_priority_max.html")
("sched_get_priority_min" . "http://www.opengroup.org/onlinepubs/007908799/xsh/sched_get_priority_min.html")
("sched_getscheduler" . "http://www.opengroup.org/onlinepubs/007908799/xsh/sched_getscheduler.html")
("sched.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/sched.h.html")
("sched_rr_get_interval" . "http://www.opengroup.org/onlinepubs/007908799/xsh/sched_rr_get_interval.html")
("sched_setparam" . "http://www.opengroup.org/onlinepubs/007908799/xsh/sched_setparam.html")
("sched_setscheduler" . "http://www.opengroup.org/onlinepubs/007908799/xsh/sched_setscheduler.html")
("sched_yield" . "http://www.opengroup.org/onlinepubs/007908799/xsh/sched_yield.html")
("search.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/search.h.html")
("seed48" . "http://www.opengroup.org/onlinepubs/007908799/xsh/seed48.html")
("seekdir" . "http://www.opengroup.org/onlinepubs/007908799/xsh/seekdir.html")
("select" . "http://www.opengroup.org/onlinepubs/007908799/xsh/select.html")
("semaphore.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/semaphore.h.html")
("sem_close" . "http://www.opengroup.org/onlinepubs/007908799/xsh/sem_close.html")
("semctl" . "http://www.opengroup.org/onlinepubs/007908799/xsh/semctl.html")
("sem_destroy" . "http://www.opengroup.org/onlinepubs/007908799/xsh/sem_destroy.html")
("semget" . "http://www.opengroup.org/onlinepubs/007908799/xsh/semget.html")
("sem_getvalue" . "http://www.opengroup.org/onlinepubs/007908799/xsh/sem_getvalue.html")
("sem_init" . "http://www.opengroup.org/onlinepubs/007908799/xsh/sem_init.html")
("sem_open" . "http://www.opengroup.org/onlinepubs/007908799/xsh/sem_open.html")
("semop" . "http://www.opengroup.org/onlinepubs/007908799/xsh/semop.html")
("sem_post" . "http://www.opengroup.org/onlinepubs/007908799/xsh/sem_post.html")
("sem_trywait" . "http://www.opengroup.org/onlinepubs/007908799/xsh/sem_trywait.html")
("sem_unlink" . "http://www.opengroup.org/onlinepubs/007908799/xsh/sem_unlink.html")
("sem_wait" . "http://www.opengroup.org/onlinepubs/007908799/xsh/sem_wait.html")
("setbuf" . "http://www.opengroup.org/onlinepubs/007908799/xsh/setbuf.html")
("setcontext" . "http://www.opengroup.org/onlinepubs/007908799/xsh/setcontext.html")
("setgid" . "http://www.opengroup.org/onlinepubs/007908799/xsh/setgid.html")
("setgrent" . "http://www.opengroup.org/onlinepubs/007908799/xsh/setgrent.html")
("setitimer" . "http://www.opengroup.org/onlinepubs/007908799/xsh/setitimer.html")
("setjmp.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/setjmp.h.html")
("_setjmp" . "http://www.opengroup.org/onlinepubs/007908799/xsh/_setjmp.html")
("setjmp" . "http://www.opengroup.org/onlinepubs/007908799/xsh/setjmp.html")
("setkey" . "http://www.opengroup.org/onlinepubs/007908799/xsh/setkey.html")
("setlocale" . "http://www.opengroup.org/onlinepubs/007908799/xsh/setlocale.html")
("setlogmask" . "http://www.opengroup.org/onlinepubs/007908799/xsh/setlogmask.html")
("setpgid" . "http://www.opengroup.org/onlinepubs/007908799/xsh/setpgid.html")
("setpgrp" . "http://www.opengroup.org/onlinepubs/007908799/xsh/setpgrp.html")
("setpriority" . "http://www.opengroup.org/onlinepubs/007908799/xsh/setpriority.html")
("setpwent" . "http://www.opengroup.org/onlinepubs/007908799/xsh/setpwent.html")
("setregid" . "http://www.opengroup.org/onlinepubs/007908799/xsh/setregid.html")
("setreuid" . "http://www.opengroup.org/onlinepubs/007908799/xsh/setreuid.html")
("setrlimit" . "http://www.opengroup.org/onlinepubs/007908799/xsh/setrlimit.html")
("setsid" . "http://www.opengroup.org/onlinepubs/007908799/xsh/setsid.html")
("setstate" . "http://www.opengroup.org/onlinepubs/007908799/xsh/setstate.html")
("setuid" . "http://www.opengroup.org/onlinepubs/007908799/xsh/setuid.html")
("setutxent" . "http://www.opengroup.org/onlinepubs/007908799/xsh/setutxent.html")
("setvbuf" . "http://www.opengroup.org/onlinepubs/007908799/xsh/setvbuf.html")
("shmat" . "http://www.opengroup.org/onlinepubs/007908799/xsh/shmat.html")
("shmctl" . "http://www.opengroup.org/onlinepubs/007908799/xsh/shmctl.html")
("shmdt" . "http://www.opengroup.org/onlinepubs/007908799/xsh/shmdt.html")
("shmget" . "http://www.opengroup.org/onlinepubs/007908799/xsh/shmget.html")
("shm_open" . "http://www.opengroup.org/onlinepubs/007908799/xsh/shm_open.html")
("shm_unlink" . "http://www.opengroup.org/onlinepubs/007908799/xsh/shm_unlink.html")
("sigaction" . "http://www.opengroup.org/onlinepubs/007908799/xsh/sigaction.html")
("sigaddset" . "http://www.opengroup.org/onlinepubs/007908799/xsh/sigaddset.html")
("sigaltstack" . "http://www.opengroup.org/onlinepubs/007908799/xsh/sigaltstack.html")
("sigdelset" . "http://www.opengroup.org/onlinepubs/007908799/xsh/sigdelset.html")
("sigemptyset" . "http://www.opengroup.org/onlinepubs/007908799/xsh/sigemptyset.html")
("sigfillset" . "http://www.opengroup.org/onlinepubs/007908799/xsh/sigfillset.html")
("sighold" . "http://www.opengroup.org/onlinepubs/007908799/xsh/sighold.html")
("sigignore" . "http://www.opengroup.org/onlinepubs/007908799/xsh/sigignore.html")
("siginterrupt" . "http://www.opengroup.org/onlinepubs/007908799/xsh/siginterrupt.html")
("sigismember" . "http://www.opengroup.org/onlinepubs/007908799/xsh/sigismember.html")
("siglongjmp" . "http://www.opengroup.org/onlinepubs/007908799/xsh/siglongjmp.html")
("signal.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/signal.h.html")
("signal" . "http://www.opengroup.org/onlinepubs/007908799/xsh/signal.html")
("signgam" . "http://www.opengroup.org/onlinepubs/007908799/xsh/signgam.html")
("sigpause" . "http://www.opengroup.org/onlinepubs/007908799/xsh/sigpause.html")
("sigpending" . "http://www.opengroup.org/onlinepubs/007908799/xsh/sigpending.html")
("sigprocmask" . "http://www.opengroup.org/onlinepubs/007908799/xsh/sigprocmask.html")
("sigqueue" . "http://www.opengroup.org/onlinepubs/007908799/xsh/sigqueue.html")
("sigrelse" . "http://www.opengroup.org/onlinepubs/007908799/xsh/sigrelse.html")
("sigset" . "http://www.opengroup.org/onlinepubs/007908799/xsh/sigset.html")
("sigsetjmp" . "http://www.opengroup.org/onlinepubs/007908799/xsh/sigsetjmp.html")
("sigstack" . "http://www.opengroup.org/onlinepubs/007908799/xsh/sigstack.html")
("sigsuspend" . "http://www.opengroup.org/onlinepubs/007908799/xsh/sigsuspend.html")
("sigtimedwait" . "http://www.opengroup.org/onlinepubs/007908799/xsh/sigtimedwait.html")
("sigwait" . "http://www.opengroup.org/onlinepubs/007908799/xsh/sigwait.html")
("sigwaitinfo" . "http://www.opengroup.org/onlinepubs/007908799/xsh/sigwaitinfo.html")
("sinh" . "http://www.opengroup.org/onlinepubs/007908799/xsh/sinh.html")
("sin" . "http://www.opengroup.org/onlinepubs/007908799/xsh/sin.html")
("sleep" . "http://www.opengroup.org/onlinepubs/007908799/xsh/sleep.html")
("snprintf" . "http://www.opengroup.org/onlinepubs/007908799/xsh/snprintf.html")
("sprintf" . "http://www.opengroup.org/onlinepubs/007908799/xsh/sprintf.html")
("sqrt" . "http://www.opengroup.org/onlinepubs/007908799/xsh/sqrt.html")
("srand48" . "http://www.opengroup.org/onlinepubs/007908799/xsh/srand48.html")
("srand" . "http://www.opengroup.org/onlinepubs/007908799/xsh/srand.html")
("srandom" . "http://www.opengroup.org/onlinepubs/007908799/xsh/srandom.html")
("sscanf" . "http://www.opengroup.org/onlinepubs/007908799/xsh/sscanf.html")
("stat" . "http://www.opengroup.org/onlinepubs/007908799/xsh/stat.html")
("statvfs" . "http://www.opengroup.org/onlinepubs/007908799/xsh/statvfs.html")
("stdarg.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/stdarg.h.html")
("stddef.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/stddef.h.html")
("stderr" . "http://www.opengroup.org/onlinepubs/007908799/xsh/stderr.html")
("stdin" . "http://www.opengroup.org/onlinepubs/007908799/xsh/stdin.html")
("stdio.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/stdio.h.html")
("stdio" . "http://www.opengroup.org/onlinepubs/007908799/xsh/stdio.html")
("stdlib.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/stdlib.h.html")
("stdout" . "http://www.opengroup.org/onlinepubs/007908799/xsh/stdout.html")
("step" . "http://www.opengroup.org/onlinepubs/007908799/xsh/step.html")
("strcasecmp" . "http://www.opengroup.org/onlinepubs/007908799/xsh/strcasecmp.html")
("strcat" . "http://www.opengroup.org/onlinepubs/007908799/xsh/strcat.html")
("strchr" . "http://www.opengroup.org/onlinepubs/007908799/xsh/strchr.html")
("strcmp" . "http://www.opengroup.org/onlinepubs/007908799/xsh/strcmp.html")
("strcoll" . "http://www.opengroup.org/onlinepubs/007908799/xsh/strcoll.html")
("strcpy" . "http://www.opengroup.org/onlinepubs/007908799/xsh/strcpy.html")
("strcspn" . "http://www.opengroup.org/onlinepubs/007908799/xsh/strcspn.html")
("strdup" . "http://www.opengroup.org/onlinepubs/007908799/xsh/strdup.html")
("STREAMS" . "http://www.opengroup.org/onlinepubs/007908799/xsh/STREAMS.html")
("strerror" . "http://www.opengroup.org/onlinepubs/007908799/xsh/strerror.html")
("strfmon" . "http://www.opengroup.org/onlinepubs/007908799/xsh/strfmon.html")
("strftime" . "http://www.opengroup.org/onlinepubs/007908799/xsh/strftime.html")
("string.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/string.h.html")
("strings.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/strings.h.html")
("strlen" . "http://www.opengroup.org/onlinepubs/007908799/xsh/strlen.html")
("strncasecmp" . "http://www.opengroup.org/onlinepubs/007908799/xsh/strncasecmp.html")
("strncat" . "http://www.opengroup.org/onlinepubs/007908799/xsh/strncat.html")
("strncmp" . "http://www.opengroup.org/onlinepubs/007908799/xsh/strncmp.html")
("strncpy" . "http://www.opengroup.org/onlinepubs/007908799/xsh/strncpy.html")
("stropts.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/stropts.h.html")
("strpbrk" . "http://www.opengroup.org/onlinepubs/007908799/xsh/strpbrk.html")
("strptime" . "http://www.opengroup.org/onlinepubs/007908799/xsh/strptime.html")
("strrchr" . "http://www.opengroup.org/onlinepubs/007908799/xsh/strrchr.html")
("strspn" . "http://www.opengroup.org/onlinepubs/007908799/xsh/strspn.html")
("strstr" . "http://www.opengroup.org/onlinepubs/007908799/xsh/strstr.html")
("strtod" . "http://www.opengroup.org/onlinepubs/007908799/xsh/strtod.html")
("strtok" . "http://www.opengroup.org/onlinepubs/007908799/xsh/strtok.html")
("strtok_r" . "http://www.opengroup.org/onlinepubs/007908799/xsh/strtok_r.html")
("strtol" . "http://www.opengroup.org/onlinepubs/007908799/xsh/strtol.html")
("strtoul" . "http://www.opengroup.org/onlinepubs/007908799/xsh/strtoul.html")
("strxfrm" . "http://www.opengroup.org/onlinepubs/007908799/xsh/strxfrm.html")
("swab" . "http://www.opengroup.org/onlinepubs/007908799/xsh/swab.html")
("swapcontext" . "http://www.opengroup.org/onlinepubs/007908799/xsh/swapcontext.html")
("swprintf" . "http://www.opengroup.org/onlinepubs/007908799/xsh/swprintf.html")
("swscanf" . "http://www.opengroup.org/onlinepubs/007908799/xsh/swscanf.html")
("symlink" . "http://www.opengroup.org/onlinepubs/007908799/xsh/symlink.html")
("sync" . "http://www.opengroup.org/onlinepubs/007908799/xsh/sync.html")
("sysconf" . "http://www.opengroup.org/onlinepubs/007908799/xsh/sysconf.html")
("sysipc.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/sysipc.h.html")
("syslog.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/syslog.h.html")
("syslog" . "http://www.opengroup.org/onlinepubs/007908799/xsh/syslog.html")
("sysmman.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/sysmman.h.html")
("sysmsg.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/sysmsg.h.html")
("sysresource.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/sysresource.h.html")
("syssem.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/syssem.h.html")
("sysshm.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/sysshm.h.html")
("sysstat.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/sysstat.h.html")
("sysstatvfs.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/sysstatvfs.h.html")
("system" . "http://www.opengroup.org/onlinepubs/007908799/xsh/system.html")
("systimeb.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/systimeb.h.html")
("systime.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/systime.h.html")
("systimes.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/systimes.h.html")
("systypes.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/systypes.h.html")
("sysuio.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/sysuio.h.html")
("sysutsname.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/sysutsname.h.html")
("syswait.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/syswait.h.html")
("tanh" . "http://www.opengroup.org/onlinepubs/007908799/xsh/tanh.html")
("tan" . "http://www.opengroup.org/onlinepubs/007908799/xsh/tan.html")
("tar.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/tar.h.html")
("tcdrain" . "http://www.opengroup.org/onlinepubs/007908799/xsh/tcdrain.html")
("tcflow" . "http://www.opengroup.org/onlinepubs/007908799/xsh/tcflow.html")
("tcflush" . "http://www.opengroup.org/onlinepubs/007908799/xsh/tcflush.html")
("tcgetattr" . "http://www.opengroup.org/onlinepubs/007908799/xsh/tcgetattr.html")
("tcgetpgrp" . "http://www.opengroup.org/onlinepubs/007908799/xsh/tcgetpgrp.html")
("tcgetsid" . "http://www.opengroup.org/onlinepubs/007908799/xsh/tcgetsid.html")
("tcsendbreak" . "http://www.opengroup.org/onlinepubs/007908799/xsh/tcsendbreak.html")
("tcsetattr" . "http://www.opengroup.org/onlinepubs/007908799/xsh/tcsetattr.html")
("tcsetpgrp" . "http://www.opengroup.org/onlinepubs/007908799/xsh/tcsetpgrp.html")
("tdelete" . "http://www.opengroup.org/onlinepubs/007908799/xsh/tdelete.html")
("telldir" . "http://www.opengroup.org/onlinepubs/007908799/xsh/telldir.html")
("tempnam" . "http://www.opengroup.org/onlinepubs/007908799/xsh/tempnam.html")
("termios.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/termios.h.html")
("tfind" . "http://www.opengroup.org/onlinepubs/007908799/xsh/tfind.html")
("threads" . "http://www.opengroup.org/onlinepubs/007908799/xsh/threads.html")
("time.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/time.h.html")
("time" . "http://www.opengroup.org/onlinepubs/007908799/xsh/time.html")
("timer_create" . "http://www.opengroup.org/onlinepubs/007908799/xsh/timer_create.html")
("timer_delete" . "http://www.opengroup.org/onlinepubs/007908799/xsh/timer_delete.html")
("timer_getoverrun" . "http://www.opengroup.org/onlinepubs/007908799/xsh/timer_getoverrun.html")
("timer_gettime" . "http://www.opengroup.org/onlinepubs/007908799/xsh/timer_gettime.html")
("timer_settime" . "http://www.opengroup.org/onlinepubs/007908799/xsh/timer_settime.html")
("times" . "http://www.opengroup.org/onlinepubs/007908799/xsh/times.html")
("timezone" . "http://www.opengroup.org/onlinepubs/007908799/xsh/timezone.html")
("tmpfile" . "http://www.opengroup.org/onlinepubs/007908799/xsh/tmpfile.html")
("tmpnam" . "http://www.opengroup.org/onlinepubs/007908799/xsh/tmpnam.html")
("toascii" . "http://www.opengroup.org/onlinepubs/007908799/xsh/toascii.html")
("_tolower" . "http://www.opengroup.org/onlinepubs/007908799/xsh/_tolower.html")
("tolower" . "http://www.opengroup.org/onlinepubs/007908799/xsh/tolower.html")
("_toupper" . "http://www.opengroup.org/onlinepubs/007908799/xsh/_toupper.html")
("toupper" . "http://www.opengroup.org/onlinepubs/007908799/xsh/toupper.html")
("towctrans" . "http://www.opengroup.org/onlinepubs/007908799/xsh/towctrans.html")
("towlower" . "http://www.opengroup.org/onlinepubs/007908799/xsh/towlower.html")
("towupper" . "http://www.opengroup.org/onlinepubs/007908799/xsh/towupper.html")
("truncate" . "http://www.opengroup.org/onlinepubs/007908799/xsh/truncate.html")
("tsearch" . "http://www.opengroup.org/onlinepubs/007908799/xsh/tsearch.html")
("ttyname" . "http://www.opengroup.org/onlinepubs/007908799/xsh/ttyname.html")
("ttyname_r" . "http://www.opengroup.org/onlinepubs/007908799/xsh/ttyname_r.html")
("ttyslot" . "http://www.opengroup.org/onlinepubs/007908799/xsh/ttyslot.html")
("twalk" . "http://www.opengroup.org/onlinepubs/007908799/xsh/twalk.html")
("tzname" . "http://www.opengroup.org/onlinepubs/007908799/xsh/tzname.html")
("tzset" . "http://www.opengroup.org/onlinepubs/007908799/xsh/tzset.html")
("ualarm" . "http://www.opengroup.org/onlinepubs/007908799/xsh/ualarm.html")
("ucontext.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/ucontext.h.html")
("ulimit.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/ulimit.h.html")
("ulimit" . "http://www.opengroup.org/onlinepubs/007908799/xsh/ulimit.html")
("umask" . "http://www.opengroup.org/onlinepubs/007908799/xsh/umask.html")
("uname" . "http://www.opengroup.org/onlinepubs/007908799/xsh/uname.html")
("ungetc" . "http://www.opengroup.org/onlinepubs/007908799/xsh/ungetc.html")
("ungetwc" . "http://www.opengroup.org/onlinepubs/007908799/xsh/ungetwc.html")
("unistd.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/unistd.h.html")
("unlink" . "http://www.opengroup.org/onlinepubs/007908799/xsh/unlink.html")
("unlockpt" . "http://www.opengroup.org/onlinepubs/007908799/xsh/unlockpt.html")
("usleep" . "http://www.opengroup.org/onlinepubs/007908799/xsh/usleep.html")
("utime.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/utime.h.html")
("utime" . "http://www.opengroup.org/onlinepubs/007908799/xsh/utime.html")
("utimes" . "http://www.opengroup.org/onlinepubs/007908799/xsh/utimes.html")
("utmpx.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/utmpx.h.html")
("va_arg" . "http://www.opengroup.org/onlinepubs/007908799/xsh/va_arg.html")
("va_end" . "http://www.opengroup.org/onlinepubs/007908799/xsh/va_end.html")
("valloc" . "http://www.opengroup.org/onlinepubs/007908799/xsh/valloc.html")
("varargs.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/varargs.h.html")
("va_start" . "http://www.opengroup.org/onlinepubs/007908799/xsh/va_start.html")
("vfork" . "http://www.opengroup.org/onlinepubs/007908799/xsh/vfork.html")
("vfprintf" . "http://www.opengroup.org/onlinepubs/007908799/xsh/vfprintf.html")
("vfwprintf" . "http://www.opengroup.org/onlinepubs/007908799/xsh/vfwprintf.html")
("vprintf" . "http://www.opengroup.org/onlinepubs/007908799/xsh/vprintf.html")
("vsnprintf" . "http://www.opengroup.org/onlinepubs/007908799/xsh/vsnprintf.html")
("vsprintf" . "http://www.opengroup.org/onlinepubs/007908799/xsh/vsprintf.html")
("vswprintf" . "http://www.opengroup.org/onlinepubs/007908799/xsh/vswprintf.html")
("vwprintf" . "http://www.opengroup.org/onlinepubs/007908799/xsh/vwprintf.html")
("wait3" . "http://www.opengroup.org/onlinepubs/007908799/xsh/wait3.html")
("wait" . "http://www.opengroup.org/onlinepubs/007908799/xsh/wait.html")
("waitid" . "http://www.opengroup.org/onlinepubs/007908799/xsh/waitid.html")
("waitpid" . "http://www.opengroup.org/onlinepubs/007908799/xsh/waitpid.html")
("wchar.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/wchar.h.html")
("wcrtomb" . "http://www.opengroup.org/onlinepubs/007908799/xsh/wcrtomb.html")
("wcscat" . "http://www.opengroup.org/onlinepubs/007908799/xsh/wcscat.html")
("wcschr" . "http://www.opengroup.org/onlinepubs/007908799/xsh/wcschr.html")
("wcscmp" . "http://www.opengroup.org/onlinepubs/007908799/xsh/wcscmp.html")
("wcscoll" . "http://www.opengroup.org/onlinepubs/007908799/xsh/wcscoll.html")
("wcscpy" . "http://www.opengroup.org/onlinepubs/007908799/xsh/wcscpy.html")
("wcscspn" . "http://www.opengroup.org/onlinepubs/007908799/xsh/wcscspn.html")
("wcsftime" . "http://www.opengroup.org/onlinepubs/007908799/xsh/wcsftime.html")
("wcslen" . "http://www.opengroup.org/onlinepubs/007908799/xsh/wcslen.html")
("wcsncat" . "http://www.opengroup.org/onlinepubs/007908799/xsh/wcsncat.html")
("wcsncmp" . "http://www.opengroup.org/onlinepubs/007908799/xsh/wcsncmp.html")
("wcsncpy" . "http://www.opengroup.org/onlinepubs/007908799/xsh/wcsncpy.html")
("wcspbrk" . "http://www.opengroup.org/onlinepubs/007908799/xsh/wcspbrk.html")
("wcsrchr" . "http://www.opengroup.org/onlinepubs/007908799/xsh/wcsrchr.html")
("wcsrtombs" . "http://www.opengroup.org/onlinepubs/007908799/xsh/wcsrtombs.html")
("wcsspn" . "http://www.opengroup.org/onlinepubs/007908799/xsh/wcsspn.html")
("wcsstr" . "http://www.opengroup.org/onlinepubs/007908799/xsh/wcsstr.html")
("wcstod" . "http://www.opengroup.org/onlinepubs/007908799/xsh/wcstod.html")
("wcstok" . "http://www.opengroup.org/onlinepubs/007908799/xsh/wcstok.html")
("wcstol" . "http://www.opengroup.org/onlinepubs/007908799/xsh/wcstol.html")
("wcstombs" . "http://www.opengroup.org/onlinepubs/007908799/xsh/wcstombs.html")
("wcstoul" . "http://www.opengroup.org/onlinepubs/007908799/xsh/wcstoul.html")
("wcswcs" . "http://www.opengroup.org/onlinepubs/007908799/xsh/wcswcs.html")
("wcswidth" . "http://www.opengroup.org/onlinepubs/007908799/xsh/wcswidth.html")
("wcsxfrm" . "http://www.opengroup.org/onlinepubs/007908799/xsh/wcsxfrm.html")
("wctob" . "http://www.opengroup.org/onlinepubs/007908799/xsh/wctob.html")
("wctomb" . "http://www.opengroup.org/onlinepubs/007908799/xsh/wctomb.html")
("wctrans" . "http://www.opengroup.org/onlinepubs/007908799/xsh/wctrans.html")
("wctype.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/wctype.h.html")
("wctype" . "http://www.opengroup.org/onlinepubs/007908799/xsh/wctype.html")
("wcwidth" . "http://www.opengroup.org/onlinepubs/007908799/xsh/wcwidth.html")
("wmemchr" . "http://www.opengroup.org/onlinepubs/007908799/xsh/wmemchr.html")
("wmemcmp" . "http://www.opengroup.org/onlinepubs/007908799/xsh/wmemcmp.html")
("wmemcpy" . "http://www.opengroup.org/onlinepubs/007908799/xsh/wmemcpy.html")
("wmemmove" . "http://www.opengroup.org/onlinepubs/007908799/xsh/wmemmove.html")
("wmemset" . "http://www.opengroup.org/onlinepubs/007908799/xsh/wmemset.html")
("wordexp.h" . "http://www.opengroup.org/onlinepubs/007908799/xsh/wordexp.h.html")
("wordexp" . "http://www.opengroup.org/onlinepubs/007908799/xsh/wordexp.html")
("wordfree" . "http://www.opengroup.org/onlinepubs/007908799/xsh/wordfree.html")
("wprintf" . "http://www.opengroup.org/onlinepubs/007908799/xsh/wprintf.html")
("write" . "http://www.opengroup.org/onlinepubs/007908799/xsh/write.html")
("writev" . "http://www.opengroup.org/onlinepubs/007908799/xsh/writev.html")
("wscanf" . "http://www.opengroup.org/onlinepubs/007908799/xsh/wscanf.html")
("y0" . "http://www.opengroup.org/onlinepubs/007908799/xsh/y0.html")
("y1" . "http://www.opengroup.org/onlinepubs/007908799/xsh/y1.html")
("yn" . "http://www.opengroup.org/onlinepubs/007908799/xsh/yn.html")
("accept" . "http://www.opengroup.org/onlinepubs/007908799/xns/accept.html")
("arpainet.h" . "http://www.opengroup.org/onlinepubs/007908799/xns/arpainet.h.html")
("bind" . "http://www.opengroup.org/onlinepubs/007908799/xns/bind.html")
("close" . "http://www.opengroup.org/onlinepubs/007908799/xns/close.html")
("compilation" . "http://www.opengroup.org/onlinepubs/007908799/xns/compilation.html")
("connect" . "http://www.opengroup.org/onlinepubs/007908799/xns/connect.html")
("endhostent" . "http://www.opengroup.org/onlinepubs/007908799/xns/endhostent.html")
("endnetent" . "http://www.opengroup.org/onlinepubs/007908799/xns/endnetent.html")
("endprotoent" . "http://www.opengroup.org/onlinepubs/007908799/xns/endprotoent.html")
("endservent" . "http://www.opengroup.org/onlinepubs/007908799/xns/endservent.html")
("fcntl.h" . "http://www.opengroup.org/onlinepubs/007908799/xns/fcntl.h.html")
("fcntl" . "http://www.opengroup.org/onlinepubs/007908799/xns/fcntl.html")
("fgetpos" . "http://www.opengroup.org/onlinepubs/007908799/xns/fgetpos.html")
("fsetpos" . "http://www.opengroup.org/onlinepubs/007908799/xns/fsetpos.html")
("ftell" . "http://www.opengroup.org/onlinepubs/007908799/xns/ftell.html")
("gethostbyaddr" . "http://www.opengroup.org/onlinepubs/007908799/xns/gethostbyaddr.html")
("gethostbyname" . "http://www.opengroup.org/onlinepubs/007908799/xns/gethostbyname.html")
("gethostent" . "http://www.opengroup.org/onlinepubs/007908799/xns/gethostent.html")
("gethostname" . "http://www.opengroup.org/onlinepubs/007908799/xns/gethostname.html")
("getnetbyaddr" . "http://www.opengroup.org/onlinepubs/007908799/xns/getnetbyaddr.html")
("getnetbyname" . "http://www.opengroup.org/onlinepubs/007908799/xns/getnetbyname.html")
("getnetent" . "http://www.opengroup.org/onlinepubs/007908799/xns/getnetent.html")
("getpeername" . "http://www.opengroup.org/onlinepubs/007908799/xns/getpeername.html")
("getprotobyname" . "http://www.opengroup.org/onlinepubs/007908799/xns/getprotobyname.html")
("getprotobynumber" . "http://www.opengroup.org/onlinepubs/007908799/xns/getprotobynumber.html")
("getprotoent" . "http://www.opengroup.org/onlinepubs/007908799/xns/getprotoent.html")
("getservbyname" . "http://www.opengroup.org/onlinepubs/007908799/xns/getservbyname.html")
("getservbyport" . "http://www.opengroup.org/onlinepubs/007908799/xns/getservbyport.html")
("getservent" . "http://www.opengroup.org/onlinepubs/007908799/xns/getservent.html")
("getsockname" . "http://www.opengroup.org/onlinepubs/007908799/xns/getsockname.html")
("getsockopt" . "http://www.opengroup.org/onlinepubs/007908799/xns/getsockopt.html")
("h_errno" . "http://www.opengroup.org/onlinepubs/007908799/xns/h_errno.html")
("htonl" . "http://www.opengroup.org/onlinepubs/007908799/xns/htonl.html")
("htons" . "http://www.opengroup.org/onlinepubs/007908799/xns/htons.html")
("inet_addr" . "http://www.opengroup.org/onlinepubs/007908799/xns/inet_addr.html")
("inet_lnaof" . "http://www.opengroup.org/onlinepubs/007908799/xns/inet_lnaof.html")
("inet_makeaddr" . "http://www.opengroup.org/onlinepubs/007908799/xns/inet_makeaddr.html")
("inet_netof" . "http://www.opengroup.org/onlinepubs/007908799/xns/inet_netof.html")
("inet_network" . "http://www.opengroup.org/onlinepubs/007908799/xns/inet_network.html")
("inet_ntoa" . "http://www.opengroup.org/onlinepubs/007908799/xns/inet_ntoa.html")
("listen" . "http://www.opengroup.org/onlinepubs/007908799/xns/listen.html")
("lseek" . "http://www.opengroup.org/onlinepubs/007908799/xns/lseek.html")
("namespace" . "http://www.opengroup.org/onlinepubs/007908799/xns/namespace.html")
("netdb.h" . "http://www.opengroup.org/onlinepubs/007908799/xns/netdb.h.html")
("netinetin.h" . "http://www.opengroup.org/onlinepubs/007908799/xns/netinetin.h.html")
("ntohl" . "http://www.opengroup.org/onlinepubs/007908799/xns/ntohl.html")
("ntohs" . "http://www.opengroup.org/onlinepubs/007908799/xns/ntohs.html")
("poll" . "http://www.opengroup.org/onlinepubs/007908799/xns/poll.html")
("read" . "http://www.opengroup.org/onlinepubs/007908799/xns/read.html")
("recvfrom" . "http://www.opengroup.org/onlinepubs/007908799/xns/recvfrom.html")
("recv" . "http://www.opengroup.org/onlinepubs/007908799/xns/recv.html")
("recvmsg" . "http://www.opengroup.org/onlinepubs/007908799/xns/recvmsg.html")
("relation" . "http://www.opengroup.org/onlinepubs/007908799/xns/relation.html")
("select" . "http://www.opengroup.org/onlinepubs/007908799/xns/select.html")
("send" . "http://www.opengroup.org/onlinepubs/007908799/xns/send.html")
("sendmsg" . "http://www.opengroup.org/onlinepubs/007908799/xns/sendmsg.html")
("sendto" . "http://www.opengroup.org/onlinepubs/007908799/xns/sendto.html")
("sethostent" . "http://www.opengroup.org/onlinepubs/007908799/xns/sethostent.html")
("setnetent" . "http://www.opengroup.org/onlinepubs/007908799/xns/setnetent.html")
("setprotoent" . "http://www.opengroup.org/onlinepubs/007908799/xns/setprotoent.html")
("setservent" . "http://www.opengroup.org/onlinepubs/007908799/xns/setservent.html")
("setsockopt" . "http://www.opengroup.org/onlinepubs/007908799/xns/setsockopt.html")
("shutdown" . "http://www.opengroup.org/onlinepubs/007908799/xns/shutdown.html")
("socket" . "http://www.opengroup.org/onlinepubs/007908799/xns/socket.html")
("socketpair" . "http://www.opengroup.org/onlinepubs/007908799/xns/socketpair.html")
("syssocket.h" . "http://www.opengroup.org/onlinepubs/007908799/xns/syssocket.h.html")
("sysstat.h" . "http://www.opengroup.org/onlinepubs/007908799/xns/sysstat.h.html")
("sysuio.h" . "http://www.opengroup.org/onlinepubs/007908799/xns/sysuio.h.html")
("sysun.h" . "http://www.opengroup.org/onlinepubs/007908799/xns/sysun.h.html")
("t_accept" . "http://www.opengroup.org/onlinepubs/007908799/xns/t_accept.html")
("t_alloc" . "http://www.opengroup.org/onlinepubs/007908799/xns/t_alloc.html")
("t_bind" . "http://www.opengroup.org/onlinepubs/007908799/xns/t_bind.html")
("t_close" . "http://www.opengroup.org/onlinepubs/007908799/xns/t_close.html")
("t_connect" . "http://www.opengroup.org/onlinepubs/007908799/xns/t_connect.html")
("t_errno" . "http://www.opengroup.org/onlinepubs/007908799/xns/t_errno.html")
("t_error" . "http://www.opengroup.org/onlinepubs/007908799/xns/t_error.html")
("t_free" . "http://www.opengroup.org/onlinepubs/007908799/xns/t_free.html")
("t_getinfo" . "http://www.opengroup.org/onlinepubs/007908799/xns/t_getinfo.html")
("t_getprotaddr" . "http://www.opengroup.org/onlinepubs/007908799/xns/t_getprotaddr.html")
("t_getstate" . "http://www.opengroup.org/onlinepubs/007908799/xns/t_getstate.html")
("t_listen" . "http://www.opengroup.org/onlinepubs/007908799/xns/t_listen.html")
("t_look" . "http://www.opengroup.org/onlinepubs/007908799/xns/t_look.html")
("t_open" . "http://www.opengroup.org/onlinepubs/007908799/xns/t_open.html")
("t_optmgmt" . "http://www.opengroup.org/onlinepubs/007908799/xns/t_optmgmt.html")
("t_rcvconnect" . "http://www.opengroup.org/onlinepubs/007908799/xns/t_rcvconnect.html")
("t_rcvdis" . "http://www.opengroup.org/onlinepubs/007908799/xns/t_rcvdis.html")
("t_rcv" . "http://www.opengroup.org/onlinepubs/007908799/xns/t_rcv.html")
("t_rcvreldata" . "http://www.opengroup.org/onlinepubs/007908799/xns/t_rcvreldata.html")
("t_rcvrel" . "http://www.opengroup.org/onlinepubs/007908799/xns/t_rcvrel.html")
("t_rcvudata" . "http://www.opengroup.org/onlinepubs/007908799/xns/t_rcvudata.html")
("t_rcvuderr" . "http://www.opengroup.org/onlinepubs/007908799/xns/t_rcvuderr.html")
("t_rcvv" . "http://www.opengroup.org/onlinepubs/007908799/xns/t_rcvv.html")
("t_rcvvudata" . "http://www.opengroup.org/onlinepubs/007908799/xns/t_rcvvudata.html")
("t_snddis" . "http://www.opengroup.org/onlinepubs/007908799/xns/t_snddis.html")
("t_snd" . "http://www.opengroup.org/onlinepubs/007908799/xns/t_snd.html")
("t_sndreldata" . "http://www.opengroup.org/onlinepubs/007908799/xns/t_sndreldata.html")
("t_sndrel" . "http://www.opengroup.org/onlinepubs/007908799/xns/t_sndrel.html")
("t_sndudata" . "http://www.opengroup.org/onlinepubs/007908799/xns/t_sndudata.html")
("t_sndv" . "http://www.opengroup.org/onlinepubs/007908799/xns/t_sndv.html")
("t_sndvudata" . "http://www.opengroup.org/onlinepubs/007908799/xns/t_sndvudata.html")
("t_strerror" . "http://www.opengroup.org/onlinepubs/007908799/xns/t_strerror.html")
("t_sync" . "http://www.opengroup.org/onlinepubs/007908799/xns/t_sync.html")
("t_sysconf" . "http://www.opengroup.org/onlinepubs/007908799/xns/t_sysconf.html")
("t_unbind" . "http://www.opengroup.org/onlinepubs/007908799/xns/t_unbind.html")
("unistd.h" . "http://www.opengroup.org/onlinepubs/007908799/xns/unistd.h.html")
("write" . "http://www.opengroup.org/onlinepubs/007908799/xns/write.html")
("xti.h" . "http://www.opengroup.org/onlinepubs/007908799/xns/xti.h.html")
("admin" . "http://www.opengroup.org/onlinepubs/007908799/xcu/admin.html")
("admin(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/admin.html")
("alias" . "http://www.opengroup.org/onlinepubs/007908799/xcu/alias.html")
("alias(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/alias.html")
("ar" . "http://www.opengroup.org/onlinepubs/007908799/xcu/ar.html")
("ar(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/ar.html")
("asa" . "http://www.opengroup.org/onlinepubs/007908799/xcu/asa.html")
("asa(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/asa.html")
("at" . "http://www.opengroup.org/onlinepubs/007908799/xcu/at.html")
("at(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/at.html")
("awk" . "http://www.opengroup.org/onlinepubs/007908799/xcu/awk.html")
("awk(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/awk.html")
("basename" . "http://www.opengroup.org/onlinepubs/007908799/xcu/basename.html")
("basename(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/basename.html")
("batch" . "http://www.opengroup.org/onlinepubs/007908799/xcu/batch.html")
("batch(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/batch.html")
("bc" . "http://www.opengroup.org/onlinepubs/007908799/xcu/bc.html")
("bc(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/bc.html")
("bg" . "http://www.opengroup.org/onlinepubs/007908799/xcu/bg.html")
("bg(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/bg.html")
("c89" . "http://www.opengroup.org/onlinepubs/007908799/xcu/c89.html")
("c89(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/c89.html")
("calendar" . "http://www.opengroup.org/onlinepubs/007908799/xcu/calendar.html")
("calendar(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/calendar.html")
("cal" . "http://www.opengroup.org/onlinepubs/007908799/xcu/cal.html")
("cal(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/cal.html")
("cancel" . "http://www.opengroup.org/onlinepubs/007908799/xcu/cancel.html")
("cancel(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/cancel.html")
("cat" . "http://www.opengroup.org/onlinepubs/007908799/xcu/cat.html")
("cat(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/cat.html")
("cc" . "http://www.opengroup.org/onlinepubs/007908799/xcu/cc.html")
("cc(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/cc.html")
("cd" . "http://www.opengroup.org/onlinepubs/007908799/xcu/cd.html")
("cd(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/cd.html")
("cflow" . "http://www.opengroup.org/onlinepubs/007908799/xcu/cflow.html")
("cflow(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/cflow.html")
("chap2" . "http://www.opengroup.org/onlinepubs/007908799/xcu/chap2.html")
("chap2(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/chap2.html")
("chgrp" . "http://www.opengroup.org/onlinepubs/007908799/xcu/chgrp.html")
("chgrp(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/chgrp.html")
("chmod" . "http://www.opengroup.org/onlinepubs/007908799/xcu/chmod.html")
("chmod(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/chmod.html")
("chown" . "http://www.opengroup.org/onlinepubs/007908799/xcu/chown.html")
("chown(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/chown.html")
("cksum" . "http://www.opengroup.org/onlinepubs/007908799/xcu/cksum.html")
("cksum(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/cksum.html")
("cmp" . "http://www.opengroup.org/onlinepubs/007908799/xcu/cmp.html")
("cmp(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/cmp.html")
("col" . "http://www.opengroup.org/onlinepubs/007908799/xcu/col.html")
("col(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/col.html")
("command" . "http://www.opengroup.org/onlinepubs/007908799/xcu/command.html")
("command(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/command.html")
("comm" . "http://www.opengroup.org/onlinepubs/007908799/xcu/comm.html")
("comm(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/comm.html")
("compress" . "http://www.opengroup.org/onlinepubs/007908799/xcu/compress.html")
("compress(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/compress.html")
("cp" . "http://www.opengroup.org/onlinepubs/007908799/xcu/cp.html")
("cp(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/cp.html")
("cpio" . "http://www.opengroup.org/onlinepubs/007908799/xcu/cpio.html")
("cpio(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/cpio.html")
("crontab" . "http://www.opengroup.org/onlinepubs/007908799/xcu/crontab.html")
("crontab(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/crontab.html")
("csplit" . "http://www.opengroup.org/onlinepubs/007908799/xcu/csplit.html")
("csplit(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/csplit.html")
("ctags" . "http://www.opengroup.org/onlinepubs/007908799/xcu/ctags.html")
("ctags(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/ctags.html")
("cu" . "http://www.opengroup.org/onlinepubs/007908799/xcu/cu.html")
("cu(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/cu.html")
("cut" . "http://www.opengroup.org/onlinepubs/007908799/xcu/cut.html")
("cut(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/cut.html")
("cxref" . "http://www.opengroup.org/onlinepubs/007908799/xcu/cxref.html")
("cxref(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/cxref.html")
("date" . "http://www.opengroup.org/onlinepubs/007908799/xcu/date.html")
("date(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/date.html")
("dd" . "http://www.opengroup.org/onlinepubs/007908799/xcu/dd.html")
("dd(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/dd.html")
("delta" . "http://www.opengroup.org/onlinepubs/007908799/xcu/delta.html")
("delta(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/delta.html")
("df" . "http://www.opengroup.org/onlinepubs/007908799/xcu/df.html")
("df(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/df.html")
("diff" . "http://www.opengroup.org/onlinepubs/007908799/xcu/diff.html")
("diff(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/diff.html")
("dircmp" . "http://www.opengroup.org/onlinepubs/007908799/xcu/dircmp.html")
("dircmp(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/dircmp.html")
("dirname" . "http://www.opengroup.org/onlinepubs/007908799/xcu/dirname.html")
("dirname(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/dirname.html")
("dis" . "http://www.opengroup.org/onlinepubs/007908799/xcu/dis.html")
("dis(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/dis.html")
("du" . "http://www.opengroup.org/onlinepubs/007908799/xcu/du.html")
("du(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/du.html")
("echo" . "http://www.opengroup.org/onlinepubs/007908799/xcu/echo.html")
("echo(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/echo.html")
("ed" . "http://www.opengroup.org/onlinepubs/007908799/xcu/ed.html")
("ed(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/ed.html")
("egrep" . "http://www.opengroup.org/onlinepubs/007908799/xcu/egrep.html")
("egrep(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/egrep.html")
("env" . "http://www.opengroup.org/onlinepubs/007908799/xcu/env.html")
("env(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/env.html")
("ex" . "http://www.opengroup.org/onlinepubs/007908799/xcu/ex.html")
("ex(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/ex.html")
("expand" . "http://www.opengroup.org/onlinepubs/007908799/xcu/expand.html")
("expand(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/expand.html")
("expr" . "http://www.opengroup.org/onlinepubs/007908799/xcu/expr.html")
("expr(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/expr.html")
("false" . "http://www.opengroup.org/onlinepubs/007908799/xcu/false.html")
("false(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/false.html")
("fc" . "http://www.opengroup.org/onlinepubs/007908799/xcu/fc.html")
("fc(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/fc.html")
("fg" . "http://www.opengroup.org/onlinepubs/007908799/xcu/fg.html")
("fg(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/fg.html")
("fgrep" . "http://www.opengroup.org/onlinepubs/007908799/xcu/fgrep.html")
("fgrep(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/fgrep.html")
("file" . "http://www.opengroup.org/onlinepubs/007908799/xcu/file.html")
("file(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/file.html")
("find" . "http://www.opengroup.org/onlinepubs/007908799/xcu/find.html")
("find(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/find.html")
("fold" . "http://www.opengroup.org/onlinepubs/007908799/xcu/fold.html")
("fold(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/fold.html")
("fort77" . "http://www.opengroup.org/onlinepubs/007908799/xcu/fort77.html")
("fort77(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/fort77.html")
("fuser" . "http://www.opengroup.org/onlinepubs/007908799/xcu/fuser.html")
("fuser(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/fuser.html")
("gencat" . "http://www.opengroup.org/onlinepubs/007908799/xcu/gencat.html")
("gencat(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/gencat.html")
("getconf" . "http://www.opengroup.org/onlinepubs/007908799/xcu/getconf.html")
("getconf(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/getconf.html")
("get" . "http://www.opengroup.org/onlinepubs/007908799/xcu/get.html")
("get(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/get.html")
("getopts" . "http://www.opengroup.org/onlinepubs/007908799/xcu/getopts.html")
("getopts(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/getopts.html")
("grep" . "http://www.opengroup.org/onlinepubs/007908799/xcu/grep.html")
("grep(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/grep.html")
("hash" . "http://www.opengroup.org/onlinepubs/007908799/xcu/hash.html")
("hash(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/hash.html")
("head" . "http://www.opengroup.org/onlinepubs/007908799/xcu/head.html")
("head(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/head.html")
("iconv" . "http://www.opengroup.org/onlinepubs/007908799/xcu/iconv.html")
("iconv(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/iconv.html")
("id" . "http://www.opengroup.org/onlinepubs/007908799/xcu/id.html")
("id(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/id.html")
("intro" . "http://www.opengroup.org/onlinepubs/007908799/xcu/intro.html")
("intro(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/intro.html")
("ipcrm" . "http://www.opengroup.org/onlinepubs/007908799/xcu/ipcrm.html")
("ipcrm(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/ipcrm.html")
("ipcs" . "http://www.opengroup.org/onlinepubs/007908799/xcu/ipcs.html")
("ipcs(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/ipcs.html")
("jobs" . "http://www.opengroup.org/onlinepubs/007908799/xcu/jobs.html")
("jobs(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/jobs.html")
("join" . "http://www.opengroup.org/onlinepubs/007908799/xcu/join.html")
("join(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/join.html")
("kill" . "http://www.opengroup.org/onlinepubs/007908799/xcu/kill.html")
("kill(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/kill.html")
("lex" . "http://www.opengroup.org/onlinepubs/007908799/xcu/lex.html")
("lex(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/lex.html")
("line" . "http://www.opengroup.org/onlinepubs/007908799/xcu/line.html")
("line(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/line.html")
("link" . "http://www.opengroup.org/onlinepubs/007908799/xcu/link.html")
("link(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/link.html")
("lint" . "http://www.opengroup.org/onlinepubs/007908799/xcu/lint.html")
("lint(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/lint.html")
("ln" . "http://www.opengroup.org/onlinepubs/007908799/xcu/ln.html")
("ln(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/ln.html")
("localedef" . "http://www.opengroup.org/onlinepubs/007908799/xcu/localedef.html")
("localedef(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/localedef.html")
("locale" . "http://www.opengroup.org/onlinepubs/007908799/xcu/locale.html")
("locale(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/locale.html")
("logger" . "http://www.opengroup.org/onlinepubs/007908799/xcu/logger.html")
("logger(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/logger.html")
("logname" . "http://www.opengroup.org/onlinepubs/007908799/xcu/logname.html")
("logname(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/logname.html")
("lp" . "http://www.opengroup.org/onlinepubs/007908799/xcu/lp.html")
("lp(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/lp.html")
("lpstat" . "http://www.opengroup.org/onlinepubs/007908799/xcu/lpstat.html")
("lpstat(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/lpstat.html")
("ls" . "http://www.opengroup.org/onlinepubs/007908799/xcu/ls.html")
("ls(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/ls.html")
("m4" . "http://www.opengroup.org/onlinepubs/007908799/xcu/m4.html")
("m4(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/m4.html")
("mail" . "http://www.opengroup.org/onlinepubs/007908799/xcu/mail.html")
("mail(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/mail.html")
("mailx" . "http://www.opengroup.org/onlinepubs/007908799/xcu/mailx.html")
("mailx(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/mailx.html")
("make" . "http://www.opengroup.org/onlinepubs/007908799/xcu/make.html")
("make(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/make.html")
("man" . "http://www.opengroup.org/onlinepubs/007908799/xcu/man.html")
("man(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/man.html")
("mesg" . "http://www.opengroup.org/onlinepubs/007908799/xcu/mesg.html")
("mesg(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/mesg.html")
("mkdir" . "http://www.opengroup.org/onlinepubs/007908799/xcu/mkdir.html")
("mkdir(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/mkdir.html")
("mkfifo" . "http://www.opengroup.org/onlinepubs/007908799/xcu/mkfifo.html")
("mkfifo(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/mkfifo.html")
("more" . "http://www.opengroup.org/onlinepubs/007908799/xcu/more.html")
("more(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/more.html")
("mv" . "http://www.opengroup.org/onlinepubs/007908799/xcu/mv.html")
("mv(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/mv.html")
("newgrp" . "http://www.opengroup.org/onlinepubs/007908799/xcu/newgrp.html")
("newgrp(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/newgrp.html")
("nice" . "http://www.opengroup.org/onlinepubs/007908799/xcu/nice.html")
("nice(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/nice.html")
("nl" . "http://www.opengroup.org/onlinepubs/007908799/xcu/nl.html")
("nl(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/nl.html")
("nm" . "http://www.opengroup.org/onlinepubs/007908799/xcu/nm.html")
("nm(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/nm.html")
("nohup" . "http://www.opengroup.org/onlinepubs/007908799/xcu/nohup.html")
("nohup(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/nohup.html")
("od" . "http://www.opengroup.org/onlinepubs/007908799/xcu/od.html")
("od(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/od.html")
("pack" . "http://www.opengroup.org/onlinepubs/007908799/xcu/pack.html")
("pack(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/pack.html")
("paste" . "http://www.opengroup.org/onlinepubs/007908799/xcu/paste.html")
("paste(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/paste.html")
("patch" . "http://www.opengroup.org/onlinepubs/007908799/xcu/patch.html")
("patch(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/patch.html")
("pathchk" . "http://www.opengroup.org/onlinepubs/007908799/xcu/pathchk.html")
("pathchk(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/pathchk.html")
("pax" . "http://www.opengroup.org/onlinepubs/007908799/xcu/pax.html")
("pax(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/pax.html")
("pcat" . "http://www.opengroup.org/onlinepubs/007908799/xcu/pcat.html")
("pcat(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/pcat.html")
("pg" . "http://www.opengroup.org/onlinepubs/007908799/xcu/pg.html")
("pg(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/pg.html")
("pr" . "http://www.opengroup.org/onlinepubs/007908799/xcu/pr.html")
("pr(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/pr.html")
("printf" . "http://www.opengroup.org/onlinepubs/007908799/xcu/printf.html")
("printf(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/printf.html")
("prs" . "http://www.opengroup.org/onlinepubs/007908799/xcu/prs.html")
("prs(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/prs.html")
("ps" . "http://www.opengroup.org/onlinepubs/007908799/xcu/ps.html")
("ps(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/ps.html")
("pwd" . "http://www.opengroup.org/onlinepubs/007908799/xcu/pwd.html")
("pwd(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/pwd.html")
("read" . "http://www.opengroup.org/onlinepubs/007908799/xcu/read.html")
("read(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/read.html")
("renice" . "http://www.opengroup.org/onlinepubs/007908799/xcu/renice.html")
("renice(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/renice.html")
("rmdel" . "http://www.opengroup.org/onlinepubs/007908799/xcu/rmdel.html")
("rmdel(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/rmdel.html")
("rmdir" . "http://www.opengroup.org/onlinepubs/007908799/xcu/rmdir.html")
("rmdir(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/rmdir.html")
("rm" . "http://www.opengroup.org/onlinepubs/007908799/xcu/rm.html")
("rm(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/rm.html")
("sact" . "http://www.opengroup.org/onlinepubs/007908799/xcu/sact.html")
("sact(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/sact.html")
("sccs" . "http://www.opengroup.org/onlinepubs/007908799/xcu/sccs.html")
("sccs(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/sccs.html")
("sed" . "http://www.opengroup.org/onlinepubs/007908799/xcu/sed.html")
("sed(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/sed.html")
("shellix" . "http://www.opengroup.org/onlinepubs/007908799/xcu/shellix.html")
("shellix(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/shellix.html")
("sh" . "http://www.opengroup.org/onlinepubs/007908799/xcu/sh.html")
("sh(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/sh.html")
("sleep" . "http://www.opengroup.org/onlinepubs/007908799/xcu/sleep.html")
("sleep(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/sleep.html")
("sort" . "http://www.opengroup.org/onlinepubs/007908799/xcu/sort.html")
("sort(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/sort.html")
("spell" . "http://www.opengroup.org/onlinepubs/007908799/xcu/spell.html")
("spell(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/spell.html")
("split" . "http://www.opengroup.org/onlinepubs/007908799/xcu/split.html")
("split(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/split.html")
("strings" . "http://www.opengroup.org/onlinepubs/007908799/xcu/strings.html")
("strings(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/strings.html")
("strip" . "http://www.opengroup.org/onlinepubs/007908799/xcu/strip.html")
("strip(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/strip.html")
("stty" . "http://www.opengroup.org/onlinepubs/007908799/xcu/stty.html")
("stty(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/stty.html")
("sum" . "http://www.opengroup.org/onlinepubs/007908799/xcu/sum.html")
("sum(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/sum.html")
("tabs" . "http://www.opengroup.org/onlinepubs/007908799/xcu/tabs.html")
("tabs(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/tabs.html")
("tail" . "http://www.opengroup.org/onlinepubs/007908799/xcu/tail.html")
("tail(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/tail.html")
("talk" . "http://www.opengroup.org/onlinepubs/007908799/xcu/talk.html")
("talk(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/talk.html")
("tar" . "http://www.opengroup.org/onlinepubs/007908799/xcu/tar.html")
("tar(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/tar.html")
("tee" . "http://www.opengroup.org/onlinepubs/007908799/xcu/tee.html")
("tee(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/tee.html")
("test" . "http://www.opengroup.org/onlinepubs/007908799/xcu/test.html")
("test(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/test.html")
("time" . "http://www.opengroup.org/onlinepubs/007908799/xcu/time.html")
("time(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/time.html")
("touch" . "http://www.opengroup.org/onlinepubs/007908799/xcu/touch.html")
("touch(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/touch.html")
("tput" . "http://www.opengroup.org/onlinepubs/007908799/xcu/tput.html")
("tput(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/tput.html")
("tr" . "http://www.opengroup.org/onlinepubs/007908799/xcu/tr.html")
("tr(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/tr.html")
("true" . "http://www.opengroup.org/onlinepubs/007908799/xcu/true.html")
("true(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/true.html")
("tsort" . "http://www.opengroup.org/onlinepubs/007908799/xcu/tsort.html")
("tsort(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/tsort.html")
("tty" . "http://www.opengroup.org/onlinepubs/007908799/xcu/tty.html")
("tty(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/tty.html")
("type" . "http://www.opengroup.org/onlinepubs/007908799/xcu/type.html")
("type(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/type.html")
("ulimit" . "http://www.opengroup.org/onlinepubs/007908799/xcu/ulimit.html")
("ulimit(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/ulimit.html")
("umask" . "http://www.opengroup.org/onlinepubs/007908799/xcu/umask.html")
("umask(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/umask.html")
("unalias" . "http://www.opengroup.org/onlinepubs/007908799/xcu/unalias.html")
("unalias(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/unalias.html")
("uname" . "http://www.opengroup.org/onlinepubs/007908799/xcu/uname.html")
("uname(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/uname.html")
("uncompress" . "http://www.opengroup.org/onlinepubs/007908799/xcu/uncompress.html")
("uncompress(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/uncompress.html")
("unexpand" . "http://www.opengroup.org/onlinepubs/007908799/xcu/unexpand.html")
("unexpand(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/unexpand.html")
("unget" . "http://www.opengroup.org/onlinepubs/007908799/xcu/unget.html")
("unget(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/unget.html")
("uniq" . "http://www.opengroup.org/onlinepubs/007908799/xcu/uniq.html")
("uniq(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/uniq.html")
("unlink" . "http://www.opengroup.org/onlinepubs/007908799/xcu/unlink.html")
("unlink(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/unlink.html")
("unpack" . "http://www.opengroup.org/onlinepubs/007908799/xcu/unpack.html")
("unpack(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/unpack.html")
("utildes" . "http://www.opengroup.org/onlinepubs/007908799/xcu/utildes.html")
("utildes(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/utildes.html")
("uucp" . "http://www.opengroup.org/onlinepubs/007908799/xcu/uucp.html")
("uucp(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/uucp.html")
("uudecode" . "http://www.opengroup.org/onlinepubs/007908799/xcu/uudecode.html")
("uudecode(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/uudecode.html")
("uuencode" . "http://www.opengroup.org/onlinepubs/007908799/xcu/uuencode.html")
("uuencode(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/uuencode.html")
("uulog" . "http://www.opengroup.org/onlinepubs/007908799/xcu/uulog.html")
("uulog(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/uulog.html")
("uuname" . "http://www.opengroup.org/onlinepubs/007908799/xcu/uuname.html")
("uuname(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/uuname.html")
("uupick" . "http://www.opengroup.org/onlinepubs/007908799/xcu/uupick.html")
("uupick(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/uupick.html")
("uustat" . "http://www.opengroup.org/onlinepubs/007908799/xcu/uustat.html")
("uustat(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/uustat.html")
("uuto" . "http://www.opengroup.org/onlinepubs/007908799/xcu/uuto.html")
("uuto(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/uuto.html")
("uux" . "http://www.opengroup.org/onlinepubs/007908799/xcu/uux.html")
("uux(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/uux.html")
("val" . "http://www.opengroup.org/onlinepubs/007908799/xcu/val.html")
("val(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/val.html")
("vi" . "http://www.opengroup.org/onlinepubs/007908799/xcu/vi.html")
("vi(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/vi.html")
("wait" . "http://www.opengroup.org/onlinepubs/007908799/xcu/wait.html")
("wait(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/wait.html")
("wc" . "http://www.opengroup.org/onlinepubs/007908799/xcu/wc.html")
("wc(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/wc.html")
("what" . "http://www.opengroup.org/onlinepubs/007908799/xcu/what.html")
("what(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/what.html")
("who" . "http://www.opengroup.org/onlinepubs/007908799/xcu/who.html")
("who(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/who.html")
("write" . "http://www.opengroup.org/onlinepubs/007908799/xcu/write.html")
("write(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/write.html")
("xargs" . "http://www.opengroup.org/onlinepubs/007908799/xcu/xargs.html")
("xargs(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/xargs.html")
("yacc" . "http://www.opengroup.org/onlinepubs/007908799/xcu/yacc.html")
("yacc(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/yacc.html")
("zcat" . "http://www.opengroup.org/onlinepubs/007908799/xcu/zcat.html")
("zcat(1)" . "http://www.opengroup.org/onlinepubs/007908799/xcu/zcat.html")
("addch" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/addch.html")
("addchnstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/addchnstr.html")
("addchstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/addchstr.html")
("addnstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/addnstr.html")
("addnwstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/addnwstr.html")
("addstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/addstr.html")
("add_wch" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/add_wch.html")
("add_wchnstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/add_wchnstr.html")
("add_wchstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/add_wchstr.html")
("addwstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/addwstr.html")
("attr_get" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/attr_get.html")
("attr_off" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/attr_off.html")
("attroff" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/attroff.html")
("attr_on" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/attr_on.html")
("attron" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/attron.html")
("attr_set" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/attr_set.html")
("attrset" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/attrset.html")
("baudrate" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/baudrate.html")
("beep" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/beep.html")
("bkgd" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/bkgd.html")
("bkgdset" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/bkgdset.html")
("bkgrnd" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/bkgrnd.html")
("bkgrndset" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/bkgrndset.html")
("border" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/border.html")
("border_set" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/border_set.html")
("box" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/box.html")
("box_set" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/box_set.html")
("can_change_color" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/can_change_color.html")
("cbreak" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/cbreak.html")
("chgat" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/chgat.html")
("clear" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/clear.html")
("clearok" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/clearok.html")
("clrtobot" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/clrtobot.html")
("clrtoeol" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/clrtoeol.html")
("color_content" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/color_content.html")
("COLOR_PAIR" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/COLOR_PAIR.html")
("COLOR_PAIRS" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/COLOR_PAIRS.html")
("color_set" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/color_set.html")
("COLS" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/COLS.html")
("copywin" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/copywin.html")
("curscr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/curscr.html")
("curses.h" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/curses.h.html")
("curs_set" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/curs_set.html")
("cur_term" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/cur_term.html")
("def_prog_mode" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/def_prog_mode.html")
("def_shell_mode" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/def_shell_mode.html")
("delay_output" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/delay_output.html")
("delch" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/delch.html")
("del_curterm" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/del_curterm.html")
("deleteln" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/deleteln.html")
("delscreen" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/delscreen.html")
("delwin" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/delwin.html")
("derwin" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/derwin.html")
("doupdate" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/doupdate.html")
("dupwin" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/dupwin.html")
("echochar" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/echochar.html")
("echo" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/echo.html")
("echo_wchar" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/echo_wchar.html")
("endwin" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/endwin.html")
("erasechar" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/erasechar.html")
("erase" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/erase.html")
("erasewchar" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/erasewchar.html")
("filter" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/filter.html")
("flash" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/flash.html")
("flushinp" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/flushinp.html")
("getbegyx" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/getbegyx.html")
("getbkgd" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/getbkgd.html")
("getbkgrnd" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/getbkgrnd.html")
("getcchar" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/getcchar.html")
("getch" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/getch.html")
("getmaxyx" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/getmaxyx.html")
("getnstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/getnstr.html")
("getn_wstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/getn_wstr.html")
("getparyx" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/getparyx.html")
("getstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/getstr.html")
("get_wch" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/get_wch.html")
("getwin" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/getwin.html")
("get_wstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/get_wstr.html")
("getyx" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/getyx.html")
("glossary" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/glossary.html")
("halfdelay" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/halfdelay.html")
("has_colors" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/has_colors.html")
("has_ic" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/has_ic.html")
("has_il" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/has_il.html")
("hline" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/hline.html")
("hline_set" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/hline_set.html")
("idcok" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/idcok.html")
("idlok" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/idlok.html")
("immedok" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/immedok.html")
("implement" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/implement.html")
("inch" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/inch.html")
("inchnstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/inchnstr.html")
("inchstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/inchstr.html")
("init_color" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/init_color.html")
("init_pair" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/init_pair.html")
("initscr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/initscr.html")
("innstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/innstr.html")
("innwstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/innwstr.html")
("insch" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/insch.html")
("insdelln" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/insdelln.html")
("insertln" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/insertln.html")
("insnstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/insnstr.html")
("ins_nwstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/ins_nwstr.html")
("insstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/insstr.html")
("instr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/instr.html")
("ins_wch" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/ins_wch.html")
("ins_wstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/ins_wstr.html")
("intov" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/intov.html")
("intovix" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/intovix.html")
("intrflush" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/intrflush.html")
("in_wch" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/in_wch.html")
("in_wchnstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/in_wchnstr.html")
("in_wchstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/in_wchstr.html")
("inwstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/inwstr.html")
("isendwin" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/isendwin.html")
("is_linetouched" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/is_linetouched.html")
("is_wintouched" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/is_wintouched.html")
("key_name" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/key_name.html")
("keyname" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/keyname.html")
("keypad" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/keypad.html")
("killchar" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/killchar.html")
("killwchar" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/killwchar.html")
("leaveok" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/leaveok.html")
("LINES" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/LINES.html")
("longname" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/longname.html")
("meta" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/meta.html")
("move" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/move.html")
("mvaddch" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvaddch.html")
("mvaddchnstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvaddchnstr.html")
("mvaddchstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvaddchstr.html")
("mvaddnstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvaddnstr.html")
("mvaddnwstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvaddnwstr.html")
("mvaddstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvaddstr.html")
("mvadd_wch" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvadd_wch.html")
("mvadd_wchnstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvadd_wchnstr.html")
("mvadd_wchstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvadd_wchstr.html")
("mvaddwstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvaddwstr.html")
("mvchgat" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvchgat.html")
("mvcur" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvcur.html")
("mvdelch" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvdelch.html")
("mvderwin" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvderwin.html")
("mvgetch" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvgetch.html")
("mvgetnstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvgetnstr.html")
("mvgetn_wstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvgetn_wstr.html")
("mvgetstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvgetstr.html")
("mvget_wch" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvget_wch.html")
("mvget_wstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvget_wstr.html")
("mvhline" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvhline.html")
("mvhline_set" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvhline_set.html")
("mv" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mv.html")
("mvinch" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvinch.html")
("mvinchnstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvinchnstr.html")
("mvinchstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvinchstr.html")
("mvinnstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvinnstr.html")
("mvinnwstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvinnwstr.html")
("mvinsch" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvinsch.html")
("mvinsnstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvinsnstr.html")
("mvins_nwstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvins_nwstr.html")
("mvinsstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvinsstr.html")
("mvinstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvinstr.html")
("mvins_wch" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvins_wch.html")
("mvins_wstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvins_wstr.html")
("mvin_wch" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvin_wch.html")
("mvin_wchnstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvin_wchnstr.html")
("mvin_wchstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvin_wchstr.html")
("mvinwstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvinwstr.html")
("mvprintw" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvprintw.html")
("mvscanw" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvscanw.html")
("mvvline" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvvline.html")
("mvvline_set" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvvline_set.html")
("mvwaddch" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvwaddch.html")
("mvwaddchnstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvwaddchnstr.html")
("mvwaddchstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvwaddchstr.html")
("mvwaddnstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvwaddnstr.html")
("mvwaddnwstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvwaddnwstr.html")
("mvwaddstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvwaddstr.html")
("mvwadd_wch" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvwadd_wch.html")
("mvwadd_wchnstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvwadd_wchnstr.html")
("mvwadd_wchstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvwadd_wchstr.html")
("mvwaddwstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvwaddwstr.html")
("mvwchgat" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvwchgat.html")
("mvwdelch" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvwdelch.html")
("mvwgetch" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvwgetch.html")
("mvwgetnstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvwgetnstr.html")
("mvwgetn_wstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvwgetn_wstr.html")
("mvwgetstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvwgetstr.html")
("mvwget_wch" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvwget_wch.html")
("mvwget_wstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvwget_wstr.html")
("mvwhline" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvwhline.html")
("mvwhline_set" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvwhline_set.html")
("mvwinch" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvwinch.html")
("mvwinchnstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvwinchnstr.html")
("mvwinchstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvwinchstr.html")
("mvwin" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvwin.html")
("mvwinnstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvwinnstr.html")
("mvwinnwstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvwinnwstr.html")
("mvwinsch" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvwinsch.html")
("mvwinsnstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvwinsnstr.html")
("mvwins_nwstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvwins_nwstr.html")
("mvwinsstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvwinsstr.html")
("mvwinstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvwinstr.html")
("mvwins_wch" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvwins_wch.html")
("mvwins_wstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvwins_wstr.html")
("mvwin_wch" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvwin_wch.html")
("mvwin_wchnstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvwin_wchnstr.html")
("mvwin_wchstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvwin_wchstr.html")
("mvwinwstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvwinwstr.html")
("mvwprintw" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvwprintw.html")
("mvwscanw" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvwscanw.html")
("mvwvline" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvwvline.html")
("mvwvline_set" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/mvwvline_set.html")
("napms" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/napms.html")
("newpad" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/newpad.html")
("newterm" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/newterm.html")
("newwin" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/newwin.html")
("nl" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/nl.html")
("nocbreak" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/nocbreak.html")
("nodelay" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/nodelay.html")
("noecho" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/noecho.html")
("no" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/no.html")
("nonl" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/nonl.html")
("noqiflush" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/noqiflush.html")
("noraw" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/noraw.html")
("notimeout" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/notimeout.html")
("overlay" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/overlay.html")
("overwrite" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/overwrite.html")
("pair_content" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/pair_content.html")
("PAIR_NUMBER" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/PAIR_NUMBER.html")
("pechochar" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/pechochar.html")
("pecho_wchar" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/pecho_wchar.html")
("pnoutrefresh" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/pnoutrefresh.html")
("prefresh" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/prefresh.html")
("printw" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/printw.html")
("putp" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/putp.html")
("putwin" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/putwin.html")
("qiflush" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/qiflush.html")
("raw" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/raw.html")
("redrawwin" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/redrawwin.html")
("refresh" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/refresh.html")
("reset_prog_mode" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/reset_prog_mode.html")
("reset_shell_mode" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/reset_shell_mode.html")
("resetty" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/resetty.html")
("restartterm" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/restartterm.html")
("ripoffline" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/ripoffline.html")
("savetty" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/savetty.html")
("scanw" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/scanw.html")
("scr_dump" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/scr_dump.html")
("scr_init" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/scr_init.html")
("scrl" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/scrl.html")
("scroll" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/scroll.html")
("scrollok" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/scrollok.html")
("scr_restore" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/scr_restore.html")
("scr_set" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/scr_set.html")
("setcchar" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/setcchar.html")
("set_curterm" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/set_curterm.html")
("setscrreg" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/setscrreg.html")
("set_term" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/set_term.html")
("setupterm" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/setupterm.html")
("slk_attr_off" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/slk_attr_off.html")
("slk_attroff" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/slk_attroff.html")
("slk_attr_on" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/slk_attr_on.html")
("slk_attron" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/slk_attron.html")
("slk_attr_set" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/slk_attr_set.html")
("slk_attrset" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/slk_attrset.html")
("slk_clear" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/slk_clear.html")
("slk_color" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/slk_color.html")
("slk_init" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/slk_init.html")
("slk_label" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/slk_label.html")
("slk_noutrefresh" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/slk_noutrefresh.html")
("slk_refresh" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/slk_refresh.html")
("slk_restore" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/slk_restore.html")
("slk_set" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/slk_set.html")
("slk_touch" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/slk_touch.html")
("slk_wset" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/slk_wset.html")
("standend" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/standend.html")
("standout" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/standout.html")
("start_color" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/start_color.html")
("stdscr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/stdscr.html")
("subpad" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/subpad.html")
("subwin" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/subwin.html")
("syncok" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/syncok.html")
("term_attrs" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/term_attrs.html")
("termattrs" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/termattrs.html")
("term.h" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/term.h.html")
("terminfo" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/terminfo.html")
("terminix" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/terminix.html")
("termname" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/termname.html")
("tgetent" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/tgetent.html")
("tgetflag" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/tgetflag.html")
("tgetnum" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/tgetnum.html")
("tgetstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/tgetstr.html")
("tgoto" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/tgoto.html")
("tigetflag" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/tigetflag.html")
("tigetnum" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/tigetnum.html")
("tigetstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/tigetstr.html")
("timeout" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/timeout.html")
("touchline" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/touchline.html")
("touchwin" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/touchwin.html")
("tparm" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/tparm.html")
("tputs" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/tputs.html")
("typeahead" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/typeahead.html")
("unctrl.h" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/unctrl.h.html")
("unctrl" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/unctrl.html")
("ungetch" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/ungetch.html")
("unget_wch" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/unget_wch.html")
("untouchwin" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/untouchwin.html")
("use_env" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/use_env.html")
("vid_attr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/vid_attr.html")
("vidattr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/vidattr.html")
("vid_puts" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/vid_puts.html")
("vidputs" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/vidputs.html")
("vline" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/vline.html")
("vline_set" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/vline_set.html")
("vw_printw" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/vw_printw.html")
("vwprintw" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/vwprintw.html")
("vw_scanw" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/vw_scanw.html")
("vwscanw" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/vwscanw.html")
("waddch" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/waddch.html")
("waddchnstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/waddchnstr.html")
("waddchstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/waddchstr.html")
("waddnstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/waddnstr.html")
("waddnwstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/waddnwstr.html")
("waddstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/waddstr.html")
("wadd_wch" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/wadd_wch.html")
("wadd_wchnstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/wadd_wchnstr.html")
("wadd_wchstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/wadd_wchstr.html")
("waddwstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/waddwstr.html")
("wattr_get" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/wattr_get.html")
("wattr_off" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/wattr_off.html")
("wattroff" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/wattroff.html")
("wattr_on" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/wattr_on.html")
("wattron" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/wattron.html")
("wattr_set" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/wattr_set.html")
("wattrset" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/wattrset.html")
("wbkgd" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/wbkgd.html")
("wbkgdset" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/wbkgdset.html")
("wbkgrnd" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/wbkgrnd.html")
("wbkgrndset" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/wbkgrndset.html")
("wborder" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/wborder.html")
("wborder_set" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/wborder_set.html")
("wchgat" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/wchgat.html")
("wclear" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/wclear.html")
("wclrtobot" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/wclrtobot.html")
("wclrtoeol" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/wclrtoeol.html")
("wcolor_set" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/wcolor_set.html")
("wcursyncup" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/wcursyncup.html")
("wdelch" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/wdelch.html")
("wdeleteln" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/wdeleteln.html")
("wechochar" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/wechochar.html")
("wecho_wchar" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/wecho_wchar.html")
("werase" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/werase.html")
("wgetbkgrnd" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/wgetbkgrnd.html")
("wgetch" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/wgetch.html")
("wgetnstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/wgetnstr.html")
("wgetn_wstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/wgetn_wstr.html")
("wgetstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/wgetstr.html")
("wget_wch" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/wget_wch.html")
("wget_wstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/wget_wstr.html")
("whline" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/whline.html")
("whline_set" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/whline_set.html")
("w" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/w.html")
("winch" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/winch.html")
("winchnstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/winchnstr.html")
("winchstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/winchstr.html")
("winnstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/winnstr.html")
("winnwstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/winnwstr.html")
("winsch" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/winsch.html")
("winsdelln" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/winsdelln.html")
("winsertln" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/winsertln.html")
("winsnstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/winsnstr.html")
("wins_nwstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/wins_nwstr.html")
("winsstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/winsstr.html")
("winstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/winstr.html")
("wins_wch" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/wins_wch.html")
("wins_wstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/wins_wstr.html")
("win_wch" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/win_wch.html")
("win_wchnstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/win_wchnstr.html")
("win_wchstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/win_wchstr.html")
("winwstr" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/winwstr.html")
("wmove" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/wmove.html")
("wnoutrefresh" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/wnoutrefresh.html")
("wprintw" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/wprintw.html")
("wredrawln" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/wredrawln.html")
("wrefresh" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/wrefresh.html")
("wscanw" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/wscanw.html")
("wscrl" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/wscrl.html")
("wsetscrreg" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/wsetscrreg.html")
("wstandend" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/wstandend.html")
("wstandout" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/wstandout.html")
("wsyncdown" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/wsyncdown.html")
("wsyncup" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/wsyncup.html")
("wtimeout" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/wtimeout.html")
("wtouchln" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/wtouchln.html")
("wunctrl" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/wunctrl.html")
("wvline" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/wvline.html")
("wvline_set" . "http://www.opengroup.org/onlinepubs/007908799/xcurses/wvline_set.html")
)
|