1/* 2 * This file is mangled by fndvers (and perhaps other scripts) to produce 3 * the config.h for Plan 9. It was handwritten because the standard 4 * configuration scripts were written in a shell dialect incomprehensible 5 * to Plan 9. 6 * config.h for Plan 9 7 * Version: 5.8.0 8 */ 9 10/* Configuration time: 21-Oct-1996 15:11 11 * Configured by: Luther Huffman, lutherh@stratcom.com 12 * Target system: Plan 9 13 */ 14 15/* 16 * Mangled by Jarkko Hietaniemi 2003-02-02 based on Russ Cox' 17 * blood, sweat, and tears. 18 * 19 */ 20 21#ifndef _config_h_ 22#define _config_h_ 23 24/* CAT2: 25 * This macro catenates 2 tokens together. 26 */ 27 28#define CAT2(a,b)a ## b 29#define CAT3(a,b,c)a ## b ## c 30#define CAT4(a,b,c,d)a ## b ## c ## d 31#define CAT5(a,b,c,d,e)a ## b ## c ## d ## e 32#define StGiFy(a)# a 33#define STRINGIFY(a)StGiFy(a) 34#define SCAT2(a,b)StGiFy(a) StGiFy(b) 35#define SCAT3(a,b,c)StGiFy(a) StGiFy(b) StGiFy(c) 36#define SCAT4(a,b,c,d)StGiFy(a) StGiFy(b) StGiFy(c) StGiFy(d) 37#define SCAT5(a,b,c,d,e)StGiFy(a) StGiFy(b) StGiFy(c) StGiFy(d) StGiFy(e) 38 39/* config-start */ 40 41/* MEM_ALIGNBYTES: 42 * This symbol contains the number of bytes required to align a 43 * double. Usual values are 2, 4 and 8. 44 */ 45#if (_P9P_OBJTYPE == 386) || (_P9P_OBJTYPE==power) 46# define MEM_ALIGNBYTES 4 /* config-skip */ 47#else 48# if _P9P_OBJTYPE == 68020 49# define MEM_ALIGNBYTES 2 /* config-skip */ 50# else 51# define MEM_ALIGNBYTES 8 /* config-skip */ 52# endif 53#endif 54 55/* BIN: 56 * This symbol holds the path of the bin directory where the package will 57 * be installed. Program must be prepared to deal with ~name substitution. 58 */ 59/* BIN_EXP: 60 * This symbol is the filename expanded version of the BIN symbol, for 61 * programs that do not want to deal with that at run-time. 62 */ 63#define BIN "/_P9P_OBJTYPE/bin" /* */ 64#define BIN_EXP "/_P9P_OBJTYPE/bin" /* */ 65 66/* LOC_SED: 67 * This symbol holds the complete pathname to the sed program. 68 */ 69#define LOC_SED "/bin/sed" /**/ 70 71/* HAS_AINTL: 72 * This symbol, if defined, indicates that the aintl routine is 73 * available. If copysignl is also present we can emulate modfl. 74 */ 75/*#define HAS_AINTL / **/ 76 77/* HAS_ALARM: 78 * This symbol, if defined, indicates that the alarm routine is 79 * available. 80 */ 81#define HAS_ALARM /**/ 82 83/* HASATTRIBUTE: 84 * This symbol indicates the C compiler can check for function attributes, 85 * such as printf formats. This is normally only supported by GNU cc. 86 */ 87/*#define HASATTRIBUTE /* config-skip */ 88#ifndef HASATTRIBUTE 89#ifdef __attribute__ 90#undef __attribute__ 91#endif 92#define __attribute__(_arg_) 93#endif 94 95/* HAS_BCMP: 96 * This symbol is defined if the bcmp() routine is available to 97 * compare blocks of memory. 98 */ 99#define HAS_BCMP /**/ 100 101/* HAS_BCOPY: 102 * This symbol is defined if the bcopy() routine is available to 103 * copy blocks of memory. 104 */ 105#define HAS_BCOPY /**/ 106 107/* HAS_BZERO: 108 * This symbol is defined if the bzero() routine is available to 109 * set a memory block to 0. 110 */ 111#define HAS_BZERO /**/ 112 113/* HAS_CHOWN: 114 * This symbol, if defined, indicates that the chown routine is 115 * available. 116 */ 117#define HAS_CHOWN /**/ 118 119/* HAS_CHROOT: 120 * This symbol, if defined, indicates that the chroot routine is 121 * available. 122 */ 123/*#define HAS_CHROOT / **/ 124 125/* HAS_CHSIZE: 126 * This symbol, if defined, indicates that the chsize routine is available 127 * to truncate files. You might need a -lx to get this routine. 128 */ 129/*#define HAS_CHSIZE / **/ 130 131/* HASCONST: 132 * This symbol, if defined, indicates that this C compiler knows about 133 * the const type. There is no need to actually test for that symbol 134 * within your programs. The mere use of the "const" keyword will 135 * trigger the necessary tests. 136 */ 137#define HASCONST /**/ 138#ifndef HASCONST 139#define const 140#endif 141 142/* HAS_CUSERID: 143 * This symbol, if defined, indicates that the cuserid routine is 144 * available to get character login names. 145 */ 146#define HAS_CUSERID /**/ 147 148/* HAS_DBL_DIG: 149 * This symbol, if defined, indicates that this system's <float.h> 150 * or <limits.h> defines the symbol DBL_DIG, which is the number 151 * of significant digits in a double precision number. If this 152 * symbol is not defined, a guess of 15 is usually pretty good. 153 */ 154#define HAS_DBL_DIG /* */ 155 156/* HAS_DIFFTIME: 157 * This symbol, if defined, indicates that the difftime routine is 158 * available. 159 */ 160#define HAS_DIFFTIME /**/ 161 162/* HAS_DLERROR: 163 * This symbol, if defined, indicates that the dlerror routine is 164 * available to return a string describing the last error that 165 * occurred from a call to dlopen(), dlclose() or dlsym(). 166 */ 167/*#define HAS_DLERROR / **/ 168 169/* HAS_DUP2: 170 * This symbol, if defined, indicates that the dup2 routine is 171 * available to duplicate file descriptors. 172 */ 173#define HAS_DUP2 /**/ 174 175/* HAS_FCHMOD: 176 * This symbol, if defined, indicates that the fchmod routine is available 177 * to change mode of opened files. If unavailable, use chmod(). 178 */ 179#define HAS_FCHMOD /**/ 180 181/* HAS_FCHOWN: 182 * This symbol, if defined, indicates that the fchown routine is available 183 * to change ownership of opened files. If unavailable, use chown(). 184 */ 185/*#define HAS_FCHOWN / **/ 186 187/* HAS_FCNTL: 188 * This symbol, if defined, indicates to the C program that 189 * the fcntl() function exists. 190 */ 191#define HAS_FCNTL /**/ 192 193/* HAS_FGETPOS: 194 * This symbol, if defined, indicates that the fgetpos routine is 195 * available to get the file position indicator, similar to ftell(). 196 */ 197#define HAS_FGETPOS /**/ 198 199/* HAS_FLOCK: 200 * This symbol, if defined, indicates that the flock routine is 201 * available to do file locking. 202 */ 203/*#define HAS_FLOCK / **/ 204 205/* HAS_FORK: 206 * This symbol, if defined, indicates that the fork routine is 207 * available. 208 */ 209#define HAS_FORK /**/ 210 211/* HAS_FSETPOS: 212 * This symbol, if defined, indicates that the fsetpos routine is 213 * available to set the file position indicator, similar to fseek(). 214 */ 215#define HAS_FSETPOS /**/ 216 217/* HAS_GETTIMEOFDAY: 218 * This symbol, if defined, indicates that the gettimeofday() system 219 * call is available for a sub-second accuracy clock. Usually, the file 220 * <sys/resource.h> needs to be included (see I_SYS_RESOURCE). 221 * The type "Timeval" should be used to refer to "struct timeval". 222 */ 223#define HAS_GETTIMEOFDAY /**/ 224#ifdef HAS_GETTIMEOFDAY 225#define Timeval struct timeval /* Structure used by gettimeofday() */ /* config-skip */ 226#endif 227 228/* HAS_GETGROUPS: 229 * This symbol, if defined, indicates that the getgroups() routine is 230 * available to get the list of process groups. If unavailable, multiple 231 * groups are probably not supported. 232 */ 233#define HAS_GETGROUPS /* config-skip */ 234 235/* HAS_GETLOGIN: 236 * This symbol, if defined, indicates that the getlogin routine is 237 * available to get the login name. 238 */ 239#define HAS_GETLOGIN /**/ 240 241/* HAS_GETPGID: 242 * This symbol, if defined, indicates to the C program that 243 * the getpgid(pid) function is available to get the 244 * process group id. 245 */ 246/*#define HAS_GETPGID / **/ 247 248/* HAS_GETPGRP2: 249 * This symbol, if defined, indicates that the getpgrp2() (as in DG/UX) 250 * routine is available to get the current process group. 251 */ 252/*#define HAS_GETPGRP2 / **/ 253 254/* HAS_GETPPID: 255 * This symbol, if defined, indicates that the getppid routine is 256 * available to get the parent process ID. 257 */ 258#define HAS_GETPPID /**/ 259 260/* HAS_GETPRIORITY: 261 * This symbol, if defined, indicates that the getpriority routine is 262 * available to get a process's priority. 263 */ 264/*#define HAS_GETPRIORITY / **/ 265 266/* HAS_INET_ATON: 267 * This symbol, if defined, indicates to the C program that the 268 * inet_aton() function is available to parse IP address "dotted-quad" 269 * strings. 270 */ 271/*#define HAS_INET_ATON / **/ 272 273/* HAS_KILLPG: 274 * This symbol, if defined, indicates that the killpg routine is available 275 * to kill process groups. If unavailable, you probably should use kill 276 * with a negative process number. 277 */ 278/*#define HAS_KILLPG / **/ 279 280/* HAS_LINK: 281 * This symbol, if defined, indicates that the link routine is 282 * available to create hard links. 283 */ 284/* #define HAS_LINK /**/ 285 286/* HAS_LOCALECONV: 287 * This symbol, if defined, indicates that the localeconv routine is 288 * available for numeric and monetary formatting conventions. 289 */ 290#define HAS_LOCALECONV /**/ 291 292/* HAS_LOCKF: 293 * This symbol, if defined, indicates that the lockf routine is 294 * available to do file locking. 295 */ 296/*#define HAS_LOCKF / **/ 297 298/* HAS_LSTAT: 299 * This symbol, if defined, indicates that the lstat routine is 300 * available to do file stats on symbolic links. 301 */ 302/*#define HAS_LSTAT /**/ 303 304/* HAS_MBLEN: 305 * This symbol, if defined, indicates that the mblen routine is available 306 * to find the number of bytes in a multibye character. 307 */ 308#define HAS_MBLEN /**/ 309 310/* HAS_MBSTOWCS: 311 * This symbol, if defined, indicates that the mbstowcs routine is 312 * available to covert a multibyte string into a wide character string. 313 */ 314#define HAS_MBSTOWCS /**/ 315 316/* HAS_MBTOWC: 317 * This symbol, if defined, indicates that the mbtowc routine is available 318 * to covert a multibyte to a wide character. 319 */ 320#define HAS_MBTOWC /**/ 321 322/* HAS_MEMCMP: 323 * This symbol, if defined, indicates that the memcmp routine is available 324 * to compare blocks of memory. 325 */ 326#define HAS_MEMCMP /**/ 327 328/* HAS_MEMCPY: 329 * This symbol, if defined, indicates that the memcpy routine is available 330 * to copy blocks of memory. 331 */ 332#define HAS_MEMCPY /**/ 333 334/* HAS_MEMMOVE: 335 * This symbol, if defined, indicates that the memmove routine is available 336 * to copy potentially overlapping blocks of memory. This should be used 337 * only when HAS_SAFE_BCOPY is not defined. If neither is there, roll your 338 * own version. 339 */ 340#define HAS_MEMMOVE /**/ 341 342/* HAS_MEMSET: 343 * This symbol, if defined, indicates that the memset routine is available 344 * to set blocks of memory. 345 */ 346#define HAS_MEMSET /**/ 347 348/* HAS_MKDIR: 349 * This symbol, if defined, indicates that the mkdir routine is available 350 * to create directories. Otherwise you should fork off a new process to 351 * exec /bin/mkdir. 352 */ 353#define HAS_MKDIR /**/ 354 355/* HAS_MKFIFO: 356 * This symbol, if defined, indicates that the mkfifo routine is 357 * available to create FIFOs. Otherwise, mknod should be able to 358 * do it for you. However, if mkfifo is there, mknod might require 359 * super-user privileges which mkfifo will not. 360 */ 361#define HAS_MKFIFO /**/ 362 363/* HAS_MKTIME: 364 * This symbol, if defined, indicates that the mktime routine is 365 * available. 366 */ 367#define HAS_MKTIME /**/ 368 369/* HAS_MSYNC: 370 * This symbol, if defined, indicates that the msync system call is 371 * available to synchronize a mapped file. 372 */ 373/*#define HAS_MSYNC / **/ 374 375/* HAS_MUNMAP: 376 * This symbol, if defined, indicates that the munmap system call is 377 * available to unmap a region, usually mapped by mmap(). 378 */ 379/*#define HAS_MUNMAP / **/ 380 381/* HAS_NICE: 382 * This symbol, if defined, indicates that the nice routine is 383 * available. 384 */ 385/*#define HAS_NICE / **/ 386 387/* HAS_PATHCONF: 388 * This symbol, if defined, indicates that pathconf() is available 389 * to determine file-system related limits and options associated 390 * with a given filename. 391 */ 392/* HAS_FPATHCONF: 393 * This symbol, if defined, indicates that pathconf() is available 394 * to determine file-system related limits and options associated 395 * with a given open file descriptor. 396 */ 397#define HAS_PATHCONF /**/ 398#define HAS_FPATHCONF /**/ 399 400/* HAS_PAUSE: 401 * This symbol, if defined, indicates that the pause routine is 402 * available to suspend a process until a signal is received. 403 */ 404#define HAS_PAUSE /**/ 405 406/* HAS_PIPE: 407 * This symbol, if defined, indicates that the pipe routine is 408 * available to create an inter-process channel. 409 */ 410#define HAS_PIPE /**/ 411 412/* HAS_POLL: 413 * This symbol, if defined, indicates that the poll routine is 414 * available to poll active file descriptors. You may safely 415 * include <poll.h> when this symbol is defined. 416 */ 417/*#define HAS_POLL / **/ 418 419/* HAS_READDIR: 420 * This symbol, if defined, indicates that the readdir routine is 421 * available to read directory entries. You may have to include 422 * <dirent.h>. See I_DIRENT. 423 */ 424#define HAS_READDIR /**/ 425 426/* HAS_SEEKDIR: 427 * This symbol, if defined, indicates that the seekdir routine is 428 * available. You may have to include <dirent.h>. See I_DIRENT. 429 */ 430/*#define HAS_SEEKDIR / **/ 431 432/* HAS_TELLDIR: 433 * This symbol, if defined, indicates that the telldir routine is 434 * available. You may have to include <dirent.h>. See I_DIRENT. 435 */ 436/*#define HAS_TELLDIR / **/ 437 438/* HAS_REWINDDIR: 439 * This symbol, if defined, indicates that the rewinddir routine is 440 * available. You may have to include <dirent.h>. See I_DIRENT. 441 */ 442#define HAS_REWINDDIR /**/ 443 444/* HAS_READLINK: 445 * This symbol, if defined, indicates that the readlink routine is 446 * available to read the value of a symbolic link. 447 */ 448/*#define HAS_READLINK /**/ 449 450/* HAS_RENAME: 451 * This symbol, if defined, indicates that the rename routine is available 452 * to rename files. Otherwise you should do the unlink(), link(), unlink() 453 * trick. 454 */ 455#define HAS_RENAME /**/ 456 457/* HAS_RMDIR: 458 * This symbol, if defined, indicates that the rmdir routine is 459 * available to remove directories. Otherwise you should fork off a 460 * new process to exec /bin/rmdir. 461 */ 462#define HAS_RMDIR /**/ 463 464/* HAS_SELECT: 465 * This symbol, if defined, indicates that the select routine is 466 * available to select active file descriptors. If the timeout field 467 * is used, <sys/time.h> may need to be included. 468 */ 469#define HAS_SELECT /* config-skip */ 470 471/* HAS_SETEGID: 472 * This symbol, if defined, indicates that the setegid routine is available 473 * to change the effective gid of the current program. 474 */ 475/*#define HAS_SETEGID / **/ 476 477/* HAS_SETEUID: 478 * This symbol, if defined, indicates that the seteuid routine is available 479 * to change the effective uid of the current program. 480 */ 481/*#define HAS_SETEUID / **/ 482 483/* HAS_SETLINEBUF: 484 * This symbol, if defined, indicates that the setlinebuf routine is 485 * available to change stderr or stdout from block-buffered or unbuffered 486 * to a line-buffered mode. 487 */ 488#define HAS_SETLINEBUF /**/ 489 490/* HAS_SETLOCALE: 491 * This symbol, if defined, indicates that the setlocale routine is 492 * available to handle locale-specific ctype implementations. 493 */ 494#define HAS_SETLOCALE /**/ 495 496/* HAS_SETPGID: 497 * This symbol, if defined, indicates that the setpgid(pid, gpid) 498 * routine is available to set process group ID. 499 */ 500#define HAS_SETPGID /**/ 501 502/* HAS_SETPGRP2: 503 * This symbol, if defined, indicates that the setpgrp2() (as in DG/UX) 504 * routine is available to set the current process group. 505 */ 506/*#define HAS_SETPGRP2 / **/ 507 508/* HAS_SETPRIORITY: 509 * This symbol, if defined, indicates that the setpriority routine is 510 * available to set a process's priority. 511 */ 512/*#define HAS_SETPRIORITY / **/ 513 514/* HAS_SETREGID: 515 * This symbol, if defined, indicates that the setregid routine is 516 * available to change the real and effective gid of the current 517 * process. 518 */ 519/* HAS_SETRESGID: 520 * This symbol, if defined, indicates that the setresgid routine is 521 * available to change the real, effective and saved gid of the current 522 * process. 523 */ 524/*#define HAS_SETREGID / **/ 525/*#define HAS_SETRESGID / **/ 526 527/* HAS_SETREUID: 528 * This symbol, if defined, indicates that the setreuid routine is 529 * available to change the real and effective uid of the current 530 * process. 531 */ 532/* HAS_SETRESUID: 533 * This symbol, if defined, indicates that the setresuid routine is 534 * available to change the real, effective and saved uid of the current 535 * process. 536 */ 537/*#define HAS_SETREUID / **/ 538/*#define HAS_SETRESUID / **/ 539 540/* HAS_SETRGID: 541 * This symbol, if defined, indicates that the setrgid routine is available 542 * to change the real gid of the current program. 543 */ 544/*#define HAS_SETRGID / **/ 545 546/* HAS_SETRUID: 547 * This symbol, if defined, indicates that the setruid routine is available 548 * to change the real uid of the current program. 549 */ 550/*#define HAS_SETRUID / **/ 551 552/* HAS_SETSID: 553 * This symbol, if defined, indicates that the setsid routine is 554 * available to set the process group ID. 555 */ 556#define HAS_SETSID /**/ 557 558/* HAS_STRCHR: 559 * This symbol is defined to indicate that the strchr()/strrchr() 560 * functions are available for string searching. If not, try the 561 * index()/rindex() pair. 562 */ 563/* HAS_INDEX: 564 * This symbol is defined to indicate that the index()/rindex() 565 * functions are available for string searching. 566 */ 567#define HAS_STRCHR /**/ 568/*#define HAS_INDEX / **/ 569 570/* HAS_STRCOLL: 571 * This symbol, if defined, indicates that the strcoll routine is 572 * available to compare strings using collating information. 573 */ 574#define HAS_STRCOLL /**/ 575 576/* USE_STRUCT_COPY: 577 * This symbol, if defined, indicates that this C compiler knows how 578 * to copy structures. If undefined, you'll need to use a block copy 579 * routine of some sort instead. 580 */ 581#define USE_STRUCT_COPY /**/ 582 583/* HAS_STRTOD: 584 * This symbol, if defined, indicates that the strtod routine is 585 * available to provide better numeric string conversion than atof(). 586 */ 587#define HAS_STRTOD /**/ 588 589/* HAS_STRTOL: 590 * This symbol, if defined, indicates that the strtol routine is available 591 * to provide better numeric string conversion than atoi() and friends. 592 */ 593#define HAS_STRTOL /**/ 594 595/* HAS_STRXFRM: 596 * This symbol, if defined, indicates that the strxfrm() routine is 597 * available to transform strings. 598 */ 599#define HAS_STRXFRM /**/ 600 601/* HAS_SYMLINK: 602 * This symbol, if defined, indicates that the symlink routine is available 603 * to create symbolic links. 604 */ 605/*#define HAS_SYMLINK /**/ 606 607/* HAS_SYSCALL: 608 * This symbol, if defined, indicates that the syscall routine is 609 * available to call arbitrary system calls. If undefined, that's tough. 610 */ 611/*#define HAS_SYSCALL / **/ 612 613/* HAS_SYSCONF: 614 * This symbol, if defined, indicates that sysconf() is available 615 * to determine system related limits and options. 616 */ 617#define HAS_SYSCONF /**/ 618 619/* HAS_SYSTEM: 620 * This symbol, if defined, indicates that the system routine is 621 * available to issue a shell command. 622 */ 623#define HAS_SYSTEM /**/ 624 625/* HAS_TCGETPGRP: 626 * This symbol, if defined, indicates that the tcgetpgrp routine is 627 * available to get foreground process group ID. 628 */ 629#define HAS_TCGETPGRP /**/ 630 631/* HAS_TCSETPGRP: 632 * This symbol, if defined, indicates that the tcsetpgrp routine is 633 * available to set foreground process group ID. 634 */ 635#define HAS_TCSETPGRP /**/ 636 637/* HAS_TRUNCATE: 638 * This symbol, if defined, indicates that the truncate routine is 639 * available to truncate files. 640 */ 641/*#define HAS_TRUNCATE / **/ 642 643/* HAS_TZNAME: 644 * This symbol, if defined, indicates that the tzname[] array is 645 * available to access timezone names. 646 */ 647#define HAS_TZNAME /**/ 648 649/* HAS_UMASK: 650 * This symbol, if defined, indicates that the umask routine is 651 * available to set and get the value of the file creation mask. 652 */ 653#define HAS_UMASK /**/ 654 655/* HAS_USLEEP: 656 * This symbol, if defined, indicates that the usleep routine is 657 * available to let the process sleep on a sub-second accuracy. 658 */ 659/*#define HAS_USLEEP / **/ 660 661/* HASVOLATILE: 662 * This symbol, if defined, indicates that this C compiler knows about 663 * the volatile declaration. 664 */ 665#define HASVOLATILE /**/ 666#ifndef HASVOLATILE 667#define volatile /* config-skip */ 668#endif 669 670/* HAS_WAIT4: 671 * This symbol, if defined, indicates that wait4() exists. 672 */ 673/*#define HAS_WAIT4 / **/ 674 675/* HAS_WAITPID: 676 * This symbol, if defined, indicates that the waitpid routine is 677 * available to wait for child process. 678 */ 679#define HAS_WAITPID /**/ 680 681/* HAS_WCSTOMBS: 682 * This symbol, if defined, indicates that the wcstombs routine is 683 * available to convert wide character strings to multibyte strings. 684 */ 685#define HAS_WCSTOMBS /**/ 686 687/* HAS_WCTOMB: 688 * This symbol, if defined, indicates that the wctomb routine is available 689 * to covert a wide character to a multibyte. 690 */ 691#define HAS_WCTOMB /**/ 692 693/* I_ARPA_INET: 694 * This symbol, if defined, indicates to the C program that it should 695 * include <arpa/inet.h> to get inet_addr and friends declarations. 696 */ 697#define I_ARPA_INET /**/ 698 699/* I_DBM: 700 * This symbol, if defined, indicates that <dbm.h> exists and should 701 * be included. 702 */ 703/* I_RPCSVC_DBM: 704 * This symbol, if defined, indicates that <rpcsvc/dbm.h> exists and 705 * should be included. 706 */ 707/*#define I_DBM / **/ 708/*#define I_RPCSVC_DBM / **/ 709 710/* I_DIRENT: 711 * This symbol, if defined, indicates to the C program that it should 712 * include <dirent.h>. Using this symbol also triggers the definition 713 * of the Direntry_t define which ends up being 'struct dirent' or 714 * 'struct direct' depending on the availability of <dirent.h>. 715 */ 716/* DIRNAMLEN: 717 * This symbol, if defined, indicates to the C program that the length 718 * of directory entry names is provided by a d_namlen field. Otherwise 719 * you need to do strlen() on the d_name field. 720 */ 721/* Direntry_t: 722 * This symbol is set to 'struct direct' or 'struct dirent' depending on 723 * whether dirent is available or not. You should use this pseudo type to 724 * portably declare your directory entries. 725 */ 726#define I_DIRENT /**/ 727/*#define DIRNAMLEN / **/ 728#define Direntry_t struct dirent 729 730/* I_DLFCN: 731 * This symbol, if defined, indicates that <dlfcn.h> exists and should 732 * be included. 733 */ 734/*#define I_DLFCN / **/ 735 736/* I_FCNTL: 737 * This manifest constant tells the C program to include <fcntl.h>. 738 */ 739#define I_FCNTL /**/ 740 741/* I_FLOAT: 742 * This symbol, if defined, indicates to the C program that it should 743 * include <float.h> to get definition of symbols like DBL_MAX or 744 * DBL_MIN, i.e. machine dependent floating point values. 745 */ 746#define I_FLOAT /**/ 747 748/* I_LIMITS: 749 * This symbol, if defined, indicates to the C program that it should 750 * include <limits.h> to get definition of symbols like WORD_BIT or 751 * LONG_MAX, i.e. machine dependant limitations. 752 */ 753#define I_LIMITS /**/ 754 755/* I_LOCALE: 756 * This symbol, if defined, indicates to the C program that it should 757 * include <locale.h>. 758 */ 759#define I_LOCALE /**/ 760 761/* I_MATH: 762 * This symbol, if defined, indicates to the C program that it should 763 * include <math.h>. 764 */ 765#define I_MATH /**/ 766 767/* I_MEMORY: 768 * This symbol, if defined, indicates to the C program that it should 769 * include <memory.h>. 770 */ 771/*#define I_MEMORY / **/ 772 773/* I_NET_ERRNO: 774 * This symbol, if defined, indicates that <net/errno.h> exists and 775 * should be included. 776 */ 777/*#define I_NET_ERRNO /* config-skip */ 778 779/* I_NETINET_IN: 780 * This symbol, if defined, indicates to the C program that it should 781 * include <netinet/in.h>. Otherwise, you may try <sys/in.h>. 782 */ 783#define I_NETINET_IN /* config-skip */ 784 785/* I_SFIO: 786 * This symbol, if defined, indicates to the C program that it should 787 * include <sfio.h>. 788 */ 789/*#define I_SFIO / **/ 790 791/* I_STDDEF: 792 * This symbol, if defined, indicates that <stddef.h> exists and should 793 * be included. 794 */ 795#define I_STDDEF /**/ 796 797/* I_STDLIB: 798 * This symbol, if defined, indicates that <stdlib.h> exists and should 799 * be included. 800 */ 801#define I_STDLIB /**/ 802 803/* I_STRING: 804 * This symbol, if defined, indicates to the C program that it should 805 * include <string.h> (USG systems) instead of <strings.h> (BSD systems). 806 */ 807#define I_STRING /**/ 808 809/* I_SYS_DIR: 810 * This symbol, if defined, indicates to the C program that it should 811 * include <sys/dir.h>. 812 */ 813/*#define I_SYS_DIR / **/ 814 815/* I_SYS_FILE: 816 * This symbol, if defined, indicates to the C program that it should 817 * include <sys/file.h> to get definition of R_OK and friends. 818 */ 819/*#define I_SYS_FILE / **/ 820 821/* I_SYS_IOCTL: 822 * This symbol, if defined, indicates that <sys/ioctl.h> exists and should 823 * be included. Otherwise, include <sgtty.h> or <termio.h>. 824 */ 825/* I_SYS_SOCKIO: 826 * This symbol, if defined, indicates the <sys/sockio.h> should be included 827 * to get socket ioctl options, like SIOCATMARK. 828 */ 829#define I_SYS_IOCTL /**/ 830/*#define I_SYS_SOCKIO / **/ 831 832/* I_SYS_NDIR: 833 * This symbol, if defined, indicates to the C program that it should 834 * include <sys/ndir.h>. 835 */ 836/*#define I_SYS_NDIR / **/ 837 838/* I_SYS_PARAM: 839 * This symbol, if defined, indicates to the C program that it should 840 * include <sys/param.h>. 841 */ 842#define I_SYS_PARAM /**/ 843 844/* I_SYS_RESOURCE: 845 * This symbol, if defined, indicates to the C program that it should 846 * include <sys/resource.h>. 847 */ 848#define I_SYS_RESOURCE /**/ 849 850/* Plan 9: file position in Plan 9 is <select.h> */ 851/* I_SYS_SELECT: 852 * This symbol, if defined, indicates to the C program that it should 853 * include <sys/select.h> in order to get definition of struct timeval. 854 */ 855#define I_SYS_SELECT /**/ 856 857/* I_SYS_STAT: 858 * This symbol, if defined, indicates to the C program that it should 859 * include <sys/stat.h>. 860 */ 861#define I_SYS_STAT /**/ 862 863/* I_SYS_TIMES: 864 * This symbol, if defined, indicates to the C program that it should 865 * include <sys/times.h>. 866 */ 867#define I_SYS_TIMES /**/ 868 869/* I_SYS_TYPES: 870 * This symbol, if defined, indicates to the C program that it should 871 * include <sys/types.h>. 872 */ 873#define I_SYS_TYPES /**/ 874 875/* I_SYS_UN: 876 * This symbol, if defined, indicates to the C program that it should 877 * include <sys/un.h> to get UNIX domain socket definitions. 878 */ 879#define I_SYS_UN /**/ 880 881/* I_SYS_WAIT: 882 * This symbol, if defined, indicates to the C program that it should 883 * include <sys/wait.h>. 884 */ 885#define I_SYS_WAIT /**/ 886 887/* I_TERMIO: 888 * This symbol, if defined, indicates that the program should include 889 * <termio.h> rather than <sgtty.h>. There are also differences in 890 * the ioctl() calls that depend on the value of this symbol. 891 */ 892/* I_TERMIOS: 893 * This symbol, if defined, indicates that the program should include 894 * the POSIX termios.h rather than sgtty.h or termio.h. 895 * There are also differences in the ioctl() calls that depend on the 896 * value of this symbol. 897 */ 898/* I_SGTTY: 899 * This symbol, if defined, indicates that the program should include 900 * <sgtty.h> rather than <termio.h>. There are also differences in 901 * the ioctl() calls that depend on the value of this symbol. 902 */ 903/*#define I_TERMIO / **/ 904#define I_TERMIOS /**/ 905/*#define I_SGTTY / **/ 906 907/* I_UNISTD: 908 * This symbol, if defined, indicates to the C program that it should 909 * include <unistd.h>. 910 */ 911#define I_UNISTD /**/ 912 913/* I_UTIME: 914 * This symbol, if defined, indicates to the C program that it should 915 * include <utime.h>. 916 */ 917#define I_UTIME /**/ 918 919/* I_VALUES: 920 * This symbol, if defined, indicates to the C program that it should 921 * include <values.h> to get definition of symbols like MINFLOAT or 922 * MAXLONG, i.e. machine dependant limitations. Probably, you 923 * should use <limits.h> instead, if it is available. 924 */ 925/*#define I_VALUES / **/ 926 927/* I_VFORK: 928 * This symbol, if defined, indicates to the C program that it should 929 * include vfork.h. 930 */ 931/*#define I_VFORK / **/ 932 933/* INTSIZE: 934 * This symbol contains the value of sizeof(int) so that the C 935 * preprocessor can make decisions based on it. 936 */ 937/* LONGSIZE: 938 * This symbol contains the value of sizeof(long) so that the C 939 * preprocessor can make decisions based on it. 940 */ 941/* SHORTSIZE: 942 * This symbol contains the value of sizeof(short) so that the C 943 * preprocessor can make decisions based on it. 944 */ 945#define INTSIZE 4 /**/ 946#define LONGSIZE 4 /**/ 947#define SHORTSIZE 2 /**/ 948 949/* MULTIARCH: 950 * This symbol, if defined, signifies that the build 951 * process will produce some binary files that are going to be 952 * used in a cross-platform environment. This is the case for 953 * example with the NeXT "fat" binaries that contain executables 954 * for several CPUs. 955 */ 956/*#define MULTIARCH / **/ 957 958/* HAS_QUAD: 959 * This symbol, if defined, tells that there's a 64-bit integer type, 960 * Quad_t, and its unsigned counterpart, Uquad_t. QUADKIND will be one 961 * of QUAD_IS_INT, QUAD_IS_LONG, QUAD_IS_LONG_LONG, or QUAD_IS_INT64_T. 962 */ 963#define HAS_QUAD /**/ 964#ifdef HAS_QUAD 965# define Quad_t long long /**/ 966# define Uquad_t unsigned long long /**/ 967# define QUADKIND 3 /**/ 968# define QUAD_IS_INT 1 969# define QUAD_IS_LONG 2 970# define QUAD_IS_LONG_LONG 3 971# define QUAD_IS_INT64_T 4 972#endif 973 974/* HAS_ACCESSX: 975 * This symbol, if defined, indicates that the accessx routine is 976 * available to do extended access checks. 977 */ 978/*#define HAS_ACCESSX / **/ 979 980/* HAS_EACCESS: 981 * This symbol, if defined, indicates that the eaccess routine is 982 * available to do extended access checks. 983 */ 984/*#define HAS_EACCESS / **/ 985 986/* I_SYS_ACCESS: 987 * This symbol, if defined, indicates to the C program that it should 988 * include <sys/access.h>. 989 */ 990/*#define I_SYS_ACCESS / **/ 991 992/* I_SYS_SECURITY: 993 * This symbol, if defined, indicates to the C program that it should 994 * include <sys/security.h>. 995 */ 996/*#define I_SYS_SECURITY / **/ 997 998/* OSNAME: 999 * This symbol contains the name of the operating system, as determined 1000 * by Configure. You shouldn't rely on it too much; the specific 1001 * feature tests from Configure are generally more reliable. 1002 */ 1003/* OSVERS: 1004 * This symbol contains the version of the operating system, as determined 1005 * by Configure. You shouldn't rely on it too much; the specific 1006 * feature tests from Configure are generally more reliable. 1007 */ 1008#define OSNAME "plan9" /**/ 1009#define OSVERS "1" /**/ 1010 1011/* PLAN9: 1012 * This symbol, if defined, indicates that the program is running under the 1013 * Plan 9 operating system. 1014 */ 1015#define PLAN9 /**/ 1016 1017/* MEM_ALIGNBYTES: 1018 * This symbol contains the number of bytes required to align a 1019 * double, or a long double when applicable. Usual values are 2, 1020 * 4 and 8. The default is eight, for safety. 1021 */ 1022#if defined(USE_CROSS_COMPILE) || defined(MULTIARCH) 1023# define MEM_ALIGNBYTES 8 1024#else 1025#define MEM_ALIGNBYTES 4 1026#endif 1027 1028/* ARCHLIB: 1029 * This variable, if defined, holds the name of the directory in 1030 * which the user wants to put architecture-dependent public 1031 * library files for perl. It is most often a local directory 1032 * such as /usr/local/lib. Programs using this variable must be 1033 * prepared to deal with filename expansion. If ARCHLIB is the 1034 * same as PRIVLIB, it is not defined, since presumably the 1035 * program already searches PRIVLIB. 1036 */ 1037/* ARCHLIB_EXP: 1038 * This symbol contains the ~name expanded version of ARCHLIB, to be used 1039 * in programs that are not prepared to deal with ~ expansion at run-time. 1040 */ 1041#define ARCHLIB_EXP "/_P9P_OBJTYPE/lib/perl/_P9P_VERSION" 1042#define ARCHLIB "/_P9P_OBJTYPE/lib/perl/_P9P_VERSION" 1043 1044/* ARCHNAME: 1045 * This symbol holds a string representing the architecture name. 1046 * It may be used to construct an architecture-dependant pathname 1047 * where library files may be held under a private library, for 1048 * instance. 1049 */ 1050#define ARCHNAME "plan9__P9P_OBJTYPE" /**/ 1051 1052/* HAS_ATOLF: 1053 * This symbol, if defined, indicates that the atolf routine is 1054 * available to convert strings into long doubles. 1055 */ 1056/*#define HAS_ATOLF / **/ 1057 1058/* HAS_ATOLL: 1059 * This symbol, if defined, indicates that the atoll routine is 1060 * available to convert strings into long longs. 1061 */ 1062#define HAS_ATOLL /**/ 1063 1064/* BIN: 1065 * This symbol holds the path of the bin directory where the package will 1066 * be installed. Program must be prepared to deal with ~name substitution. 1067 */ 1068/* BIN_EXP: 1069 * This symbol is the filename expanded version of the BIN symbol, for 1070 * programs that do not want to deal with that at run-time. 1071 */ 1072#define BIN "/usr/bin" /**/ 1073#define BIN_EXP "/usr/bin" /**/ 1074 1075/* BYTEORDER: 1076 * This symbol holds the hexadecimal constant defined in byteorder, 1077 * in a UV, i.e. 0x1234 or 0x4321 or 0x12345678, etc... 1078 * If the compiler supports cross-compiling or multiple-architecture 1079 * binaries (eg. on NeXT systems), use compiler-defined macros to 1080 * determine the byte order. 1081 * On NeXT 3.2 (and greater), you can build "Fat" Multiple Architecture 1082 * Binaries (MAB) on either big endian or little endian machines. 1083 * The endian-ness is available at compile-time. This only matters 1084 * for perl, where the config.h can be generated and installed on 1085 * one system, and used by a different architecture to build an 1086 * extension. Older versions of NeXT that might not have 1087 * defined either *_ENDIAN__ were all on Motorola 680x0 series, 1088 * so the default case (for NeXT) is big endian to catch them. 1089 * This might matter for NeXT 3.0. 1090 */ 1091#if defined(USE_CROSS_COMPILE) || defined(MULTIARCH) 1092# ifdef __LITTLE_ENDIAN__ 1093# if LONGSIZE == 4 1094# define BYTEORDER 0x1234 /* config-skip */ 1095# else 1096# if LONGSIZE == 8 1097# define BYTEORDER 0x12345678 /* config-skip */ 1098# endif 1099# endif 1100# else 1101# ifdef __BIG_ENDIAN__ 1102# if LONGSIZE == 4 1103# define BYTEORDER 0x4321 1104# else 1105# if LONGSIZE == 8 1106# define BYTEORDER 0x87654321 1107# endif 1108# endif 1109# endif 1110# endif 1111# if !defined(BYTEORDER) && (defined(NeXT) || defined(__NeXT__)) 1112# define BYTEORDER 0x4321 1113# endif 1114#else 1115#define BYTEORDER 0x1234 /* large digits for MSB */ 1116#endif /* NeXT */ 1117 1118/* CAT2: 1119 * This macro catenates 2 tokens together. 1120 */ 1121/* STRINGIFY: 1122 * This macro surrounds its token with double quotes. 1123 */ 1124#if 42 == 1 1125#define CAT2(a,b) a/**/b 1126#define STRINGIFY(a) "a" 1127 /* If you can get stringification with catify, tell me how! */ 1128#endif 1129#if 42 == 42 1130#define PeRl_CaTiFy(a, b) a ## b 1131#define PeRl_StGiFy(a) #a 1132/* the additional level of indirection enables these macros to be 1133 * used as arguments to other macros. See K&R 2nd ed., page 231. */ 1134#define CAT2(a,b) PeRl_CaTiFy(a,b) 1135#define StGiFy(a) PeRl_StGiFy(a) 1136#define STRINGIFY(a) PeRl_StGiFy(a) 1137#endif 1138#if 42 != 1 && 42 != 42 1139# include "Bletch: How does this C preprocessor concatenate tokens?" 1140#endif 1141 1142/* CPPSTDIN: 1143 * This symbol contains the first part of the string which will invoke 1144 * the C preprocessor on the standard input and produce to standard 1145 * output. Typical value of "cc -E" or "/lib/cpp", but it can also 1146 * call a wrapper. See CPPRUN. 1147 */ 1148/* CPPMINUS: 1149 * This symbol contains the second part of the string which will invoke 1150 * the C preprocessor on the standard input and produce to standard 1151 * output. This symbol will have the value "-" if CPPSTDIN needs a minus 1152 * to specify standard input, otherwise the value is "". 1153 */ 1154/* CPPRUN: 1155 * This symbol contains the string which will invoke a C preprocessor on 1156 * the standard input and produce to standard output. It needs to end 1157 * with CPPLAST, after all other preprocessor flags have been specified. 1158 * The main difference with CPPSTDIN is that this program will never be a 1159 * pointer to a shell wrapper, i.e. it will be empty if no preprocessor is 1160 * available directly to the user. Note that it may well be different from 1161 * the preprocessor used to compile the C program. 1162 */ 1163/* CPPLAST: 1164 * This symbol is intended to be used along with CPPRUN in the same manner 1165 * symbol CPPMINUS is used with CPPSTDIN. It contains either "-" or "". 1166 */ 1167#define CPPSTDIN "cppstdin" 1168#define CPPMINUS "" 1169#define CPPRUN "/bin/cpp" 1170#define CPPLAST "" 1171 1172/* HAS__FWALK: 1173 * This symbol, if defined, indicates that the _fwalk system call is 1174 * available to apply a function to all the file handles. 1175 */ 1176/*#define HAS__FWALK / **/ 1177 1178/* HAS_ACCESS: 1179 * This manifest constant lets the C program know that the access() 1180 * system call is available to check for accessibility using real UID/GID. 1181 * (always present on UNIX.) 1182 */ 1183#define HAS_ACCESS /**/ 1184 1185/* HAS_ASCTIME_R: 1186 * This symbol, if defined, indicates that the asctime_r routine 1187 * is available to asctime re-entrantly. 1188 */ 1189/* ASCTIME_R_PROTO: 1190 * This symbol encodes the prototype of asctime_r. 1191 * It is zero if d_asctime_r is undef, and one of the 1192 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_asctime_r 1193 * is defined. 1194 */ 1195/*#define HAS_ASCTIME_R / **/ 1196#define ASCTIME_R_PROTO 0 /**/ 1197 1198/* CASTI32: 1199 * This symbol is defined if the C compiler can cast negative 1200 * or large floating point numbers to 32-bit ints. 1201 */ 1202/*#define CASTI32 / **/ 1203 1204/* CASTNEGFLOAT: 1205 * This symbol is defined if the C compiler can cast negative 1206 * numbers to unsigned longs, ints and shorts. 1207 */ 1208/* CASTFLAGS: 1209 * This symbol contains flags that say what difficulties the compiler 1210 * has casting odd floating values to unsigned long: 1211 * 0 = ok 1212 * 1 = couldn't cast < 0 1213 * 2 = couldn't cast >= 0x80000000 1214 * 4 = couldn't cast in argument expression list 1215 */ 1216/*#define CASTNEGFLOAT /* config-skip */ 1217#if _P9P_OBJTYPE == 386 1218# define CASTFLAGS 3 /**/ /* config-skip */ 1219#else 1220# define CASTFLAGS 0 /**/ /* config-skip */ 1221#endif 1222 1223/* HAS_CLASS: 1224 * This symbol, if defined, indicates that the class routine is 1225 * available to classify doubles. Available for example in AIX. 1226 * The returned values are defined in <float.h> and are: 1227 * 1228 * FP_PLUS_NORM Positive normalized, nonzero 1229 * FP_MINUS_NORM Negative normalized, nonzero 1230 * FP_PLUS_DENORM Positive denormalized, nonzero 1231 * FP_MINUS_DENORM Negative denormalized, nonzero 1232 * FP_PLUS_ZERO +0.0 1233 * FP_MINUS_ZERO -0.0 1234 * FP_PLUS_INF +INF 1235 * FP_MINUS_INF -INF 1236 * FP_NANS Signaling Not a Number (NaNS) 1237 * FP_NANQ Quiet Not a Number (NaNQ) 1238 */ 1239/*#define HAS_CLASS / **/ 1240 1241/* VOID_CLOSEDIR: 1242 * This symbol, if defined, indicates that the closedir() routine 1243 * does not return a value. 1244 */ 1245/*#define VOID_CLOSEDIR / **/ 1246 1247/* HAS_STRUCT_CMSGHDR: 1248 * This symbol, if defined, indicates that the struct cmsghdr 1249 * is supported. 1250 */ 1251/*#define HAS_STRUCT_CMSGHDR / **/ 1252 1253/* HAS_CRYPT_R: 1254 * This symbol, if defined, indicates that the crypt_r routine 1255 * is available to crypt re-entrantly. 1256 */ 1257/* CRYPT_R_PROTO: 1258 * This symbol encodes the prototype of crypt_r. 1259 * It is zero if d_crypt_r is undef, and one of the 1260 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_crypt_r 1261 * is defined. 1262 */ 1263/*#define HAS_CRYPT_R / **/ 1264#define CRYPT_R_PROTO 0 /**/ 1265 1266/* HAS_CSH: 1267 * This symbol, if defined, indicates that the C-shell exists. 1268 */ 1269/* CSH: 1270 * This symbol, if defined, contains the full pathname of csh. 1271 */ 1272/*#define HAS_CSH / **/ 1273#ifdef HAS_CSH 1274#define CSH "csh" /**/ 1275#endif 1276 1277/* HAS_CTIME_R: 1278 * This symbol, if defined, indicates that the ctime_r routine 1279 * is available to ctime re-entrantly. 1280 */ 1281/* CTIME_R_PROTO: 1282 * This symbol encodes the prototype of ctime_r. 1283 * It is zero if d_ctime_r is undef, and one of the 1284 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_ctime_r 1285 * is defined. 1286 */ 1287/*#define HAS_CTIME_R / **/ 1288#define CTIME_R_PROTO 0 /**/ 1289 1290/* DLSYM_NEEDS_UNDERSCORE: 1291 * This symbol, if defined, indicates that we need to prepend an 1292 * underscore to the symbol name before calling dlsym(). This only 1293 * makes sense if you *have* dlsym, which we will presume is the 1294 * case if you're using dl_dlopen.xs. 1295 */ 1296/*#define DLSYM_NEEDS_UNDERSCORE / **/ 1297 1298/* HAS_DRAND48_R: 1299 * This symbol, if defined, indicates that the drand48_r routine 1300 * is available to drand48 re-entrantly. 1301 */ 1302/* DRAND48_R_PROTO: 1303 * This symbol encodes the prototype of drand48_r. 1304 * It is zero if d_drand48_r is undef, and one of the 1305 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_drand48_r 1306 * is defined. 1307 */ 1308/*#define HAS_DRAND48_R / **/ 1309#define DRAND48_R_PROTO 0 /**/ 1310 1311/* HAS_DRAND48_PROTO: 1312 * This symbol, if defined, indicates that the system provides 1313 * a prototype for the drand48() function. Otherwise, it is up 1314 * to the program to supply one. A good guess is 1315 * extern double drand48(void); 1316 */ 1317/*#define HAS_DRAND48_PROTO / **/ 1318 1319/* HAS_ENDGRENT: 1320 * This symbol, if defined, indicates that the getgrent routine is 1321 * available for finalizing sequential access of the group database. 1322 */ 1323#define HAS_ENDGRENT /**/ 1324 1325/* HAS_ENDGRENT_R: 1326 * This symbol, if defined, indicates that the endgrent_r routine 1327 * is available to endgrent re-entrantly. 1328 */ 1329/* ENDGRENT_R_PROTO: 1330 * This symbol encodes the prototype of endgrent_r. 1331 * It is zero if d_endgrent_r is undef, and one of the 1332 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_endgrent_r 1333 * is defined. 1334 */ 1335/*#define HAS_ENDGRENT_R / **/ 1336#define ENDGRENT_R_PROTO 0 /**/ 1337 1338/* HAS_ENDHOSTENT: 1339 * This symbol, if defined, indicates that the endhostent() routine is 1340 * available to close whatever was being used for host queries. 1341 */ 1342#define HAS_ENDHOSTENT /**/ 1343 1344/* HAS_ENDNETENT: 1345 * This symbol, if defined, indicates that the endnetent() routine is 1346 * available to close whatever was being used for network queries. 1347 */ 1348/*#define HAS_ENDNETENT / **/ 1349 1350/* HAS_ENDPROTOENT: 1351 * This symbol, if defined, indicates that the endprotoent() routine is 1352 * available to close whatever was being used for protocol queries. 1353 */ 1354/*#define HAS_ENDPROTOENT / **/ 1355 1356/* HAS_ENDPWENT: 1357 * This symbol, if defined, indicates that the getgrent routine is 1358 * available for finalizing sequential access of the passwd database. 1359 */ 1360#define HAS_ENDPWENT /**/ 1361 1362/* HAS_ENDPWENT_R: 1363 * This symbol, if defined, indicates that the endpwent_r routine 1364 * is available to endpwent re-entrantly. 1365 */ 1366/* ENDPWENT_R_PROTO: 1367 * This symbol encodes the prototype of endpwent_r. 1368 * It is zero if d_endpwent_r is undef, and one of the 1369 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_endpwent_r 1370 * is defined. 1371 */ 1372/*#define HAS_ENDPWENT_R / **/ 1373#define ENDPWENT_R_PROTO 0 /**/ 1374 1375/* HAS_ENDSERVENT: 1376 * This symbol, if defined, indicates that the endservent() routine is 1377 * available to close whatever was being used for service queries. 1378 */ 1379/*#define HAS_ENDSERVENT / **/ 1380 1381/* HAS_FAST_STDIO: 1382 * This symbol, if defined, indicates that the "fast stdio" 1383 * is available to manipulate the stdio buffers directly. 1384 */ 1385/*#define HAS_FAST_STDIO /**/ 1386 1387/* HAS_FCHDIR: 1388 * This symbol, if defined, indicates that the fchdir routine is 1389 * available to change directory using a file descriptor. 1390 */ 1391/*#define HAS_FCHDIR / **/ 1392 1393/* FCNTL_CAN_LOCK: 1394 * This symbol, if defined, indicates that fcntl() can be used 1395 * for file locking. Normally on Unix systems this is defined. 1396 * It may be undefined on VMS. 1397 */ 1398/*#define FCNTL_CAN_LOCK / **/ 1399 1400/* HAS_FD_SET: 1401 * This symbol, when defined, indicates presence of the fd_set typedef 1402 * in <sys/types.h> 1403 */ 1404/*#define HAS_FD_SET / **/ 1405 1406/* HAS_FINITE: 1407 * This symbol, if defined, indicates that the finite routine is 1408 * available to check whether a double is finite (non-infinity non-NaN). 1409 */ 1410/*#define HAS_FINITE / **/ 1411 1412/* HAS_FINITEL: 1413 * This symbol, if defined, indicates that the finitel routine is 1414 * available to check whether a long double is finite 1415 * (non-infinity non-NaN). 1416 */ 1417/*#define HAS_FINITEL / **/ 1418 1419/* FLEXFILENAMES: 1420 * This symbol, if defined, indicates that the system supports filenames 1421 * longer than 14 characters. 1422 */ 1423#define FLEXFILENAMES /**/ 1424 1425/* HAS_FP_CLASS: 1426 * This symbol, if defined, indicates that the fp_class routine is 1427 * available to classify doubles. Available for example in Digital UNIX. 1428 * The returned values are defined in <math.h> and are: 1429 * 1430 * FP_SNAN Signaling NaN (Not-a-Number) 1431 * FP_QNAN Quiet NaN (Not-a-Number) 1432 * FP_POS_INF +infinity 1433 * FP_NEG_INF -infinity 1434 * FP_POS_NORM Positive normalized 1435 * FP_NEG_NORM Negative normalized 1436 * FP_POS_DENORM Positive denormalized 1437 * FP_NEG_DENORM Negative denormalized 1438 * FP_POS_ZERO +0.0 (positive zero) 1439 * FP_NEG_ZERO -0.0 (negative zero) 1440 */ 1441/*#define HAS_FP_CLASS / **/ 1442 1443/* HAS_FPCLASS: 1444 * This symbol, if defined, indicates that the fpclass routine is 1445 * available to classify doubles. Available for example in Solaris/SVR4. 1446 * The returned values are defined in <ieeefp.h> and are: 1447 * 1448 * FP_SNAN signaling NaN 1449 * FP_QNAN quiet NaN 1450 * FP_NINF negative infinity 1451 * FP_PINF positive infinity 1452 * FP_NDENORM negative denormalized non-zero 1453 * FP_PDENORM positive denormalized non-zero 1454 * FP_NZERO negative zero 1455 * FP_PZERO positive zero 1456 * FP_NNORM negative normalized non-zero 1457 * FP_PNORM positive normalized non-zero 1458 */ 1459/*#define HAS_FPCLASS / **/ 1460 1461/* HAS_FPCLASSIFY: 1462 * This symbol, if defined, indicates that the fpclassify routine is 1463 * available to classify doubles. Available for example in HP-UX. 1464 * The returned values are defined in <math.h> and are 1465 * 1466 * FP_NORMAL Normalized 1467 * FP_ZERO Zero 1468 * FP_INFINITE Infinity 1469 * FP_SUBNORMAL Denormalized 1470 * FP_NAN NaN 1471 * 1472 */ 1473/*#define HAS_FPCLASSIFY / **/ 1474 1475/* HAS_FPOS64_T: 1476 * This symbol will be defined if the C compiler supports fpos64_t. 1477 */ 1478/*#define HAS_FPOS64_T / **/ 1479 1480/* HAS_FREXPL: 1481 * This symbol, if defined, indicates that the frexpl routine is 1482 * available to break a long double floating-point number into 1483 * a normalized fraction and an integral power of 2. 1484 */ 1485/*#define HAS_FREXPL / **/ 1486 1487/* HAS_STRUCT_FS_DATA: 1488 * This symbol, if defined, indicates that the struct fs_data 1489 * to do statfs() is supported. 1490 */ 1491/*#define HAS_STRUCT_FS_DATA / **/ 1492 1493/* HAS_FSEEKO: 1494 * This symbol, if defined, indicates that the fseeko routine is 1495 * available to fseek beyond 32 bits (useful for ILP32 hosts). 1496 */ 1497/*#define HAS_FSEEKO / **/ 1498 1499/* HAS_FSTATFS: 1500 * This symbol, if defined, indicates that the fstatfs routine is 1501 * available to stat filesystems by file descriptors. 1502 */ 1503/*#define HAS_FSTATFS / **/ 1504 1505/* HAS_FSYNC: 1506 * This symbol, if defined, indicates that the fsync routine is 1507 * available to write a file's modified data and attributes to 1508 * permanent storage. 1509 */ 1510#define HAS_FSYNC /**/ 1511 1512/* HAS_FTELLO: 1513 * This symbol, if defined, indicates that the ftello routine is 1514 * available to ftell beyond 32 bits (useful for ILP32 hosts). 1515 */ 1516/*#define HAS_FTELLO / **/ 1517 1518/* Gconvert: 1519 * This preprocessor macro is defined to convert a floating point 1520 * number to a string without a trailing decimal point. This 1521 * emulates the behavior of sprintf("%g"), but is sometimes much more 1522 * efficient. If gconvert() is not available, but gcvt() drops the 1523 * trailing decimal point, then gcvt() is used. If all else fails, 1524 * a macro using sprintf("%g") is used. Arguments for the Gconvert 1525 * macro are: value, number of digits, whether trailing zeros should 1526 * be retained, and the output buffer. 1527 * The usual values are: 1528 * d_Gconvert='gconvert((x),(n),(t),(b))' 1529 * d_Gconvert='gcvt((x),(n),(b))' 1530 * d_Gconvert='sprintf((b),"%.*g",(n),(x))' 1531 * The last two assume trailing zeros should not be kept. 1532 */ 1533#define Gconvert(x,n,t,b) sprintf((b),"%.*g",(n),(x)) 1534 1535/* HAS_GETCWD: 1536 * This symbol, if defined, indicates that the getcwd routine is 1537 * available to get the current working directory. 1538 */ 1539#define HAS_GETCWD /**/ 1540 1541/* HAS_GETESPWNAM: 1542 * This symbol, if defined, indicates that the getespwnam system call is 1543 * available to retrieve enhanced (shadow) password entries by name. 1544 */ 1545/*#define HAS_GETESPWNAM / **/ 1546 1547/* HAS_GETFSSTAT: 1548 * This symbol, if defined, indicates that the getfsstat routine is 1549 * available to stat filesystems in bulk. 1550 */ 1551/*#define HAS_GETFSSTAT / **/ 1552 1553/* HAS_GETGRENT: 1554 * This symbol, if defined, indicates that the getgrent routine is 1555 * available for sequential access of the group database. 1556 */ 1557#define HAS_GETGRENT /**/ 1558 1559/* HAS_GETGRENT_R: 1560 * This symbol, if defined, indicates that the getgrent_r routine 1561 * is available to getgrent re-entrantly. 1562 */ 1563/* GETGRENT_R_PROTO: 1564 * This symbol encodes the prototype of getgrent_r. 1565 * It is zero if d_getgrent_r is undef, and one of the 1566 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getgrent_r 1567 * is defined. 1568 */ 1569/*#define HAS_GETGRENT_R / **/ 1570#define GETGRENT_R_PROTO 0 /**/ 1571 1572/* HAS_GETGRGID_R: 1573 * This symbol, if defined, indicates that the getgrgid_r routine 1574 * is available to getgrgid re-entrantly. 1575 */ 1576/* GETGRGID_R_PROTO: 1577 * This symbol encodes the prototype of getgrgid_r. 1578 * It is zero if d_getgrgid_r is undef, and one of the 1579 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getgrgid_r 1580 * is defined. 1581 */ 1582/*#define HAS_GETGRGID_R / **/ 1583#define GETGRGID_R_PROTO 0 /**/ 1584 1585/* HAS_GETGRNAM_R: 1586 * This symbol, if defined, indicates that the getgrnam_r routine 1587 * is available to getgrnam re-entrantly. 1588 */ 1589/* GETGRNAM_R_PROTO: 1590 * This symbol encodes the prototype of getgrnam_r. 1591 * It is zero if d_getgrnam_r is undef, and one of the 1592 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getgrnam_r 1593 * is defined. 1594 */ 1595/*#define HAS_GETGRNAM_R / **/ 1596#define GETGRNAM_R_PROTO 0 /**/ 1597 1598/* HAS_GETHOSTBYADDR: 1599 * This symbol, if defined, indicates that the gethostbyaddr() routine is 1600 * available to look up hosts by their IP addresses. 1601 */ 1602#define HAS_GETHOSTBYADDR /**/ 1603 1604/* HAS_GETHOSTBYNAME: 1605 * This symbol, if defined, indicates that the gethostbyname() routine is 1606 * available to look up host names in some data base or other. 1607 */ 1608#define HAS_GETHOSTBYNAME /**/ 1609 1610/* HAS_GETHOSTENT: 1611 * This symbol, if defined, indicates that the gethostent() routine is 1612 * available to look up host names in some data base or another. 1613 */ 1614/*#define HAS_GETHOSTENT / **/ 1615 1616/* HAS_GETHOSTNAME: 1617 * This symbol, if defined, indicates that the C program may use the 1618 * gethostname() routine to derive the host name. See also HAS_UNAME 1619 * and PHOSTNAME. 1620 */ 1621/* HAS_UNAME: 1622 * This symbol, if defined, indicates that the C program may use the 1623 * uname() routine to derive the host name. See also HAS_GETHOSTNAME 1624 * and PHOSTNAME. 1625 */ 1626/* PHOSTNAME: 1627 * This symbol, if defined, indicates the command to feed to the 1628 * popen() routine to derive the host name. See also HAS_GETHOSTNAME 1629 * and HAS_UNAME. Note that the command uses a fully qualified path, 1630 * so that it is safe even if used by a process with super-user 1631 * privileges. 1632 */ 1633/* HAS_PHOSTNAME: 1634 * This symbol, if defined, indicates that the C program may use the 1635 * contents of PHOSTNAME as a command to feed to the popen() routine 1636 * to derive the host name. 1637 */ 1638#define HAS_GETHOSTNAME /**/ 1639#define HAS_UNAME /**/ 1640/*#define HAS_PHOSTNAME / **/ 1641#ifdef HAS_PHOSTNAME 1642#define PHOSTNAME "/bin/uname -n" /* How to get the host name */ 1643#endif 1644 1645/* HAS_GETHOST_PROTOS: 1646 * This symbol, if defined, indicates that <netdb.h> includes 1647 * prototypes for gethostent(), gethostbyname(), and 1648 * gethostbyaddr(). Otherwise, it is up to the program to guess 1649 * them. See netdbtype.U for probing for various Netdb_xxx_t types. 1650 */ 1651/*#define HAS_GETHOST_PROTOS / **/ 1652 1653/* HAS_GETITIMER: 1654 * This symbol, if defined, indicates that the getitimer routine is 1655 * available to return interval timers. 1656 */ 1657/*#define HAS_GETITIMER / **/ 1658 1659/* HAS_GETLOGIN_R: 1660 * This symbol, if defined, indicates that the getlogin_r routine 1661 * is available to getlogin re-entrantly. 1662 */ 1663/* GETLOGIN_R_PROTO: 1664 * This symbol encodes the prototype of getlogin_r. 1665 * It is zero if d_getlogin_r is undef, and one of the 1666 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getlogin_r 1667 * is defined. 1668 */ 1669/*#define HAS_GETLOGIN_R / **/ 1670#define GETLOGIN_R_PROTO 0 /**/ 1671 1672/* HAS_GETMNT: 1673 * This symbol, if defined, indicates that the getmnt routine is 1674 * available to get filesystem mount info by filename. 1675 */ 1676/*#define HAS_GETMNT / **/ 1677 1678/* HAS_GETMNTENT: 1679 * This symbol, if defined, indicates that the getmntent routine is 1680 * available to iterate through mounted file systems to get their info. 1681 */ 1682/*#define HAS_GETMNTENT / **/ 1683 1684/* HAS_GETNETBYADDR: 1685 * This symbol, if defined, indicates that the getnetbyaddr() routine is 1686 * available to look up networks by their IP addresses. 1687 */ 1688/*#define HAS_GETNETBYADDR / **/ 1689 1690/* HAS_GETNETBYNAME: 1691 * This symbol, if defined, indicates that the getnetbyname() routine is 1692 * available to look up networks by their names. 1693 */ 1694/*#define HAS_GETNETBYNAME / **/ 1695 1696/* HAS_GETNETENT: 1697 * This symbol, if defined, indicates that the getnetent() routine is 1698 * available to look up network names in some data base or another. 1699 */ 1700/*#define HAS_GETNETENT / **/ 1701 1702/* HAS_GETNET_PROTOS: 1703 * This symbol, if defined, indicates that <netdb.h> includes 1704 * prototypes for getnetent(), getnetbyname(), and 1705 * getnetbyaddr(). Otherwise, it is up to the program to guess 1706 * them. See netdbtype.U for probing for various Netdb_xxx_t types. 1707 */ 1708/*#define HAS_GETNET_PROTOS / **/ 1709 1710/* HAS_GETPAGESIZE: 1711 * This symbol, if defined, indicates that the getpagesize system call 1712 * is available to get system page size, which is the granularity of 1713 * many memory management calls. 1714 */ 1715/*#define HAS_GETPAGESIZE / **/ 1716 1717/* HAS_GETPROTOENT: 1718 * This symbol, if defined, indicates that the getprotoent() routine is 1719 * available to look up protocols in some data base or another. 1720 */ 1721/*#define HAS_GETPROTOENT / **/ 1722 1723/* HAS_GETPGRP: 1724 * This symbol, if defined, indicates that the getpgrp routine is 1725 * available to get the current process group. 1726 */ 1727/* USE_BSD_GETPGRP: 1728 * This symbol, if defined, indicates that getpgrp needs one 1729 * arguments whereas USG one needs none. 1730 */ 1731#define HAS_GETPGRP /**/ 1732/*#define USE_BSD_GETPGRP / **/ 1733 1734/* HAS_GETPROTOBYNAME: 1735 * This symbol, if defined, indicates that the getprotobyname() 1736 * routine is available to look up protocols by their name. 1737 */ 1738/* HAS_GETPROTOBYNUMBER: 1739 * This symbol, if defined, indicates that the getprotobynumber() 1740 * routine is available to look up protocols by their number. 1741 */ 1742#define HAS_GETPROTOBYNAME /**/ 1743/*#define HAS_GETPROTOBYNUMBER / **/ 1744 1745/* HAS_GETPROTO_PROTOS: 1746 * This symbol, if defined, indicates that <netdb.h> includes 1747 * prototypes for getprotoent(), getprotobyname(), and 1748 * getprotobyaddr(). Otherwise, it is up to the program to guess 1749 * them. See netdbtype.U for probing for various Netdb_xxx_t types. 1750 */ 1751/*#define HAS_GETPROTO_PROTOS / **/ 1752 1753/* HAS_GETPRPWNAM: 1754 * This symbol, if defined, indicates that the getprpwnam system call is 1755 * available to retrieve protected (shadow) password entries by name. 1756 */ 1757/*#define HAS_GETPRPWNAM / **/ 1758 1759/* HAS_GETPWENT: 1760 * This symbol, if defined, indicates that the getpwent routine is 1761 * available for sequential access of the passwd database. 1762 * If this is not available, the older getpw() function may be available. 1763 */ 1764#define HAS_GETPWENT /**/ 1765 1766/* HAS_GETPWENT_R: 1767 * This symbol, if defined, indicates that the getpwent_r routine 1768 * is available to getpwent re-entrantly. 1769 */ 1770/* GETPWENT_R_PROTO: 1771 * This symbol encodes the prototype of getpwent_r. 1772 * It is zero if d_getpwent_r is undef, and one of the 1773 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getpwent_r 1774 * is defined. 1775 */ 1776/*#define HAS_GETPWENT_R / **/ 1777#define GETPWENT_R_PROTO 0 /**/ 1778 1779/* HAS_GETPWNAM_R: 1780 * This symbol, if defined, indicates that the getpwnam_r routine 1781 * is available to getpwnam re-entrantly. 1782 */ 1783/* GETPWNAM_R_PROTO: 1784 * This symbol encodes the prototype of getpwnam_r. 1785 * It is zero if d_getpwnam_r is undef, and one of the 1786 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getpwnam_r 1787 * is defined. 1788 */ 1789/*#define HAS_GETPWNAM_R / **/ 1790#define GETPWNAM_R_PROTO 0 /**/ 1791 1792/* HAS_GETPWUID_R: 1793 * This symbol, if defined, indicates that the getpwuid_r routine 1794 * is available to getpwuid re-entrantly. 1795 */ 1796/* GETPWUID_R_PROTO: 1797 * This symbol encodes the prototype of getpwuid_r. 1798 * It is zero if d_getpwuid_r is undef, and one of the 1799 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getpwuid_r 1800 * is defined. 1801 */ 1802/*#define HAS_GETPWUID_R / **/ 1803#define GETPWUID_R_PROTO 0 /**/ 1804 1805/* HAS_GETSERVENT: 1806 * This symbol, if defined, indicates that the getservent() routine is 1807 * available to look up network services in some data base or another. 1808 */ 1809/*#define HAS_GETSERVENT / **/ 1810 1811/* HAS_GETSERV_PROTOS: 1812 * This symbol, if defined, indicates that <netdb.h> includes 1813 * prototypes for getservent(), getservbyname(), and 1814 * getservbyaddr(). Otherwise, it is up to the program to guess 1815 * them. See netdbtype.U for probing for various Netdb_xxx_t types. 1816 */ 1817/*#define HAS_GETSERV_PROTOS / **/ 1818 1819/* HAS_GETSPNAM: 1820 * This symbol, if defined, indicates that the getspnam system call is 1821 * available to retrieve SysV shadow password entries by name. 1822 */ 1823/*#define HAS_GETSPNAM / **/ 1824 1825/* HAS_GETSPNAM_R: 1826 * This symbol, if defined, indicates that the getspnam_r routine 1827 * is available to getspnam re-entrantly. 1828 */ 1829/* GETSPNAM_R_PROTO: 1830 * This symbol encodes the prototype of getspnam_r. 1831 * It is zero if d_getspnam_r is undef, and one of the 1832 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getspnam_r 1833 * is defined. 1834 */ 1835/*#define HAS_GETSPNAM_R / **/ 1836#define GETSPNAM_R_PROTO 0 /**/ 1837 1838/* HAS_GETSERVBYNAME: 1839 * This symbol, if defined, indicates that the getservbyname() 1840 * routine is available to look up services by their name. 1841 */ 1842/* HAS_GETSERVBYPORT: 1843 * This symbol, if defined, indicates that the getservbyport() 1844 * routine is available to look up services by their port. 1845 */ 1846#define HAS_GETSERVBYNAME /**/ 1847/*#define HAS_GETSERVBYPORT / **/ 1848 1849/* HAS_GMTIME_R: 1850 * This symbol, if defined, indicates that the gmtime_r routine 1851 * is available to gmtime re-entrantly. 1852 */ 1853/* GMTIME_R_PROTO: 1854 * This symbol encodes the prototype of gmtime_r. 1855 * It is zero if d_gmtime_r is undef, and one of the 1856 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_gmtime_r 1857 * is defined. 1858 */ 1859/*#define HAS_GMTIME_R / **/ 1860#define GMTIME_R_PROTO 0 /**/ 1861 1862/* HAS_GNULIBC: 1863 * This symbol, if defined, indicates to the C program that 1864 * the GNU C library is being used. A better check is to use 1865 * the __GLIBC__ and __GLIBC_MINOR__ symbols supplied with glibc. 1866 */ 1867/*#define HAS_GNULIBC / **/ 1868#if defined(HAS_GNULIBC) && !defined(_GNU_SOURCE) 1869# define _GNU_SOURCE 1870#endif 1871/* HAS_HASMNTOPT: 1872 * This symbol, if defined, indicates that the hasmntopt routine is 1873 * available to query the mount options of file systems. 1874 */ 1875/*#define HAS_HASMNTOPT / **/ 1876 1877/* HAS_HTONL: 1878 * This symbol, if defined, indicates that the htonl() routine (and 1879 * friends htons() ntohl() ntohs()) are available to do network 1880 * order byte swapping. 1881 */ 1882/* HAS_HTONS: 1883 * This symbol, if defined, indicates that the htons() routine (and 1884 * friends htonl() ntohl() ntohs()) are available to do network 1885 * order byte swapping. 1886 */ 1887/* HAS_NTOHL: 1888 * This symbol, if defined, indicates that the ntohl() routine (and 1889 * friends htonl() htons() ntohs()) are available to do network 1890 * order byte swapping. 1891 */ 1892/* HAS_NTOHS: 1893 * This symbol, if defined, indicates that the ntohs() routine (and 1894 * friends htonl() htons() ntohl()) are available to do network 1895 * order byte swapping. 1896 */ 1897#define HAS_HTONL /**/ 1898#define HAS_HTONS /**/ 1899#define HAS_NTOHL /**/ 1900#define HAS_NTOHS /**/ 1901 1902/* HAS_ILOGBL: 1903 * This symbol, if defined, indicates that the ilogbl routine is 1904 * available. If scalbnl is also present we can emulate frexpl. 1905 */ 1906/*#define HAS_ILOGBL /**/ 1907 1908/* HAS_INT64_T: 1909 * This symbol will defined if the C compiler supports int64_t. 1910 * Usually the <inttypes.h> needs to be included, but sometimes 1911 * <sys/types.h> is enough. 1912 */ 1913#define HAS_INT64_T /**/ 1914 1915/* HAS_ISASCII: 1916 * This manifest constant lets the C program know that isascii 1917 * is available. 1918 */ 1919/*#define HAS_ISASCII / **/ 1920 1921/* HAS_ISFINITE: 1922 * This symbol, if defined, indicates that the isfinite routine is 1923 * available to check whether a double is finite (non-infinity non-NaN). 1924 */ 1925/*#define HAS_ISFINITE / **/ 1926 1927/* HAS_ISINF: 1928 * This symbol, if defined, indicates that the isinf routine is 1929 * available to check whether a double is an infinity. 1930 */ 1931/*#define HAS_ISINF / **/ 1932 1933/* HAS_ISNAN: 1934 * This symbol, if defined, indicates that the isnan routine is 1935 * available to check whether a double is a NaN. 1936 */ 1937/*#define HAS_ISNAN / **/ 1938 1939/* HAS_ISNANL: 1940 * This symbol, if defined, indicates that the isnanl routine is 1941 * available to check whether a long double is a NaN. 1942 */ 1943/*#define HAS_ISNANL / **/ 1944 1945/* HAS_LCHOWN: 1946 * This symbol, if defined, indicates that the lchown routine is 1947 * available to operate on a symbolic link (instead of following the 1948 * link). 1949 */ 1950/*#define HAS_LCHOWN / **/ 1951 1952/* HAS_LDBL_DIG: 1953 * This symbol, if defined, indicates that this system's <float.h> 1954 * or <limits.h> defines the symbol LDBL_DIG, which is the number 1955 * of significant digits in a long double precision number. Unlike 1956 * for DBL_DIG, there's no good guess for LDBL_DIG if it is undefined. 1957 */ 1958#define HAS_LDBL_DIG /* */ 1959 1960/* HAS_LOCALTIME_R: 1961 * This symbol, if defined, indicates that the localtime_r routine 1962 * is available to localtime re-entrantly. 1963 */ 1964/* LOCALTIME_R_NEEDS_TZSET: 1965 * Many libc's localtime_r implementations do not call tzset, 1966 * making them differ from localtime(), and making timezone 1967 * changes using $ENV{TZ} without explicitly calling tzset 1968 * impossible. This symbol makes us call tzset before localtime_r 1969 */ 1970/* LOCALTIME_R_PROTO: 1971 * This symbol encodes the prototype of localtime_r. 1972 * It is zero if d_localtime_r is undef, and one of the 1973 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_localtime_r 1974 * is defined. 1975 */ 1976/*#define HAS_LOCALTIME_R / **/ 1977/*#define LOCALTIME_R_NEEDS_TZSET / **/ 1978#define LOCALTIME_R_PROTO 0 /**/ 1979 1980/* HAS_LONG_DOUBLE: 1981 * This symbol will be defined if the C compiler supports long 1982 * doubles. 1983 */ 1984/* LONG_DOUBLESIZE: 1985 * This symbol contains the size of a long double, so that the 1986 * C preprocessor can make decisions based on it. It is only 1987 * defined if the system supports long doubles. 1988 */ 1989#define HAS_LONG_DOUBLE /**/ 1990#ifdef HAS_LONG_DOUBLE 1991#define LONG_DOUBLESIZE 8 /**/ 1992#endif 1993 1994/* HAS_LONG_LONG: 1995 * This symbol will be defined if the C compiler supports long long. 1996 */ 1997/* LONGLONGSIZE: 1998 * This symbol contains the size of a long long, so that the 1999 * C preprocessor can make decisions based on it. It is only 2000 * defined if the system supports long long. 2001 */ 2002#define HAS_LONG_LONG /**/ 2003#ifdef HAS_LONG_LONG 2004#define LONGLONGSIZE 8 /**/ 2005#endif 2006 2007/* HAS_LSEEK_PROTO: 2008 * This symbol, if defined, indicates that the system provides 2009 * a prototype for the lseek() function. Otherwise, it is up 2010 * to the program to supply one. A good guess is 2011 * extern off_t lseek(int, off_t, int); 2012 */ 2013/*#define HAS_LSEEK_PROTO / **/ 2014 2015/* HAS_MADVISE: 2016 * This symbol, if defined, indicates that the madvise system call is 2017 * available to map a file into memory. 2018 */ 2019/*#define HAS_MADVISE / **/ 2020 2021/* HAS_MEMCHR: 2022 * This symbol, if defined, indicates that the memchr routine is available 2023 * to locate characters within a C string. 2024 */ 2025#define HAS_MEMCHR /**/ 2026 2027/* HAS_MKDTEMP: 2028 * This symbol, if defined, indicates that the mkdtemp routine is 2029 * available to exclusively create a uniquely named temporary directory. 2030 */ 2031/*#define HAS_MKDTEMP / **/ 2032 2033/* HAS_MKSTEMP: 2034 * This symbol, if defined, indicates that the mkstemp routine is 2035 * available to exclusively create and open a uniquely named 2036 * temporary file. 2037 */ 2038/*#define HAS_MKSTEMP / **/ 2039 2040/* HAS_MKSTEMPS: 2041 * This symbol, if defined, indicates that the mkstemps routine is 2042 * available to exclusively create and open a uniquely named 2043 * (with a suffix) temporary file. 2044 */ 2045/*#define HAS_MKSTEMPS / **/ 2046 2047/* HAS_MMAP: 2048 * This symbol, if defined, indicates that the mmap system call is 2049 * available to map a file into memory. 2050 */ 2051/* Mmap_t: 2052 * This symbol holds the return type of the mmap() system call 2053 * (and simultaneously the type of the first argument). 2054 * Usually set to 'void *' or 'cadd_t'. 2055 */ 2056/*#define HAS_MMAP / **/ 2057#define Mmap_t void * /**/ 2058 2059/* HAS_MODFL: 2060 * This symbol, if defined, indicates that the modfl routine is 2061 * available to split a long double x into a fractional part f and 2062 * an integer part i such that |f| < 1.0 and (f + i) = x. 2063 */ 2064/* HAS_MODFL_POW32_BUG: 2065 * This symbol, if defined, indicates that the modfl routine is 2066 * broken for long doubles >= pow(2, 32). 2067 * For example from 4294967303.150000 one would get 4294967302.000000 2068 * and 1.150000. The bug has been seen in certain versions of glibc, 2069 * release 2.2.2 is known to be okay. 2070 */ 2071/*#define HAS_MODFL / **/ 2072/*#define HAS_MODFL_POW32_BUG / **/ 2073 2074/* HAS_MPROTECT: 2075 * This symbol, if defined, indicates that the mprotect system call is 2076 * available to modify the access protection of a memory mapped file. 2077 */ 2078/*#define HAS_MPROTECT / **/ 2079 2080/* HAS_MSG: 2081 * This symbol, if defined, indicates that the entire msg*(2) library is 2082 * supported (IPC mechanism based on message queues). 2083 */ 2084/*#define HAS_MSG / **/ 2085 2086/* HAS_STRUCT_MSGHDR: 2087 * This symbol, if defined, indicates that the struct msghdr 2088 * is supported. 2089 */ 2090/*#define HAS_STRUCT_MSGHDR / **/ 2091 2092/* HAS_OFF64_T: 2093 * This symbol will be defined if the C compiler supports off64_t. 2094 */ 2095/*#define HAS_OFF64_T / **/ 2096 2097/* HAS_OPEN3: 2098 * This manifest constant lets the C program know that the three 2099 * argument form of open(2) is available. 2100 */ 2101#define HAS_OPEN3 /**/ 2102 2103/* OLD_PTHREAD_CREATE_JOINABLE: 2104 * This symbol, if defined, indicates how to create pthread 2105 * in joinable (aka undetached) state. NOTE: not defined 2106 * if pthread.h already has defined PTHREAD_CREATE_JOINABLE 2107 * (the new version of the constant). 2108 * If defined, known values are PTHREAD_CREATE_UNDETACHED 2109 * and __UNDETACHED. 2110 */ 2111/*#define OLD_PTHREAD_CREATE_JOINABLE / **/ 2112 2113/* HAS_PTHREAD_YIELD: 2114 * This symbol, if defined, indicates that the pthread_yield 2115 * routine is available to yield the execution of the current 2116 * thread. sched_yield is preferable to pthread_yield. 2117 */ 2118/* SCHED_YIELD: 2119 * This symbol defines the way to yield the execution of 2120 * the current thread. Known ways are sched_yield, 2121 * pthread_yield, and pthread_yield with NULL. 2122 */ 2123/* HAS_SCHED_YIELD: 2124 * This symbol, if defined, indicates that the sched_yield 2125 * routine is available to yield the execution of the current 2126 * thread. sched_yield is preferable to pthread_yield. 2127 */ 2128/*#define HAS_PTHREAD_YIELD / **/ 2129#define SCHED_YIELD undef /**/ 2130/*#define HAS_SCHED_YIELD / **/ 2131 2132/* HAS_RANDOM_R: 2133 * This symbol, if defined, indicates that the random_r routine 2134 * is available to random re-entrantly. 2135 */ 2136/* RANDOM_R_PROTO: 2137 * This symbol encodes the prototype of random_r. 2138 * It is zero if d_random_r is undef, and one of the 2139 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_random_r 2140 * is defined. 2141 */ 2142/*#define HAS_RANDOM_R / **/ 2143#define RANDOM_R_PROTO 0 /**/ 2144 2145/* HAS_READDIR_R: 2146 * This symbol, if defined, indicates that the readdir_r routine 2147 * is available to readdir re-entrantly. 2148 */ 2149/* READDIR_R_PROTO: 2150 * This symbol encodes the prototype of readdir_r. 2151 * It is zero if d_readdir_r is undef, and one of the 2152 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_readdir_r 2153 * is defined. 2154 */ 2155/*#define HAS_READDIR_R / **/ 2156#define READDIR_R_PROTO 0 /**/ 2157 2158/* HAS_READV: 2159 * This symbol, if defined, indicates that the readv routine is 2160 * available to do gather reads. You will also need <sys/uio.h> 2161 * and there I_SYSUIO. 2162 */ 2163#define HAS_READV /**/ 2164 2165/* HAS_RECVMSG: 2166 * This symbol, if defined, indicates that the recvmsg routine is 2167 * available to send structured socket messages. 2168 */ 2169/*#define HAS_RECVMSG / **/ 2170 2171/* HAS_SAFE_BCOPY: 2172 * This symbol, if defined, indicates that the bcopy routine is available 2173 * to copy potentially overlapping memory blocks. Normally, you should 2174 * probably use memmove() or memcpy(). If neither is defined, roll your 2175 * own version. 2176 */ 2177/*#define HAS_SAFE_BCOPY / **/ 2178 2179/* HAS_SAFE_MEMCPY: 2180 * This symbol, if defined, indicates that the memcpy routine is available 2181 * to copy potentially overlapping memory blocks. If you need to 2182 * copy overlapping memory blocks, you should check HAS_MEMMOVE and 2183 * use memmove() instead, if available. 2184 */ 2185/*#define HAS_SAFE_MEMCPY / **/ 2186 2187/* HAS_SANE_MEMCMP: 2188 * This symbol, if defined, indicates that the memcmp routine is available 2189 * and can be used to compare relative magnitudes of chars with their high 2190 * bits set. If it is not defined, roll your own version. 2191 */ 2192#define HAS_SANE_MEMCMP /**/ 2193 2194/* HAS_SBRK_PROTO: 2195 * This symbol, if defined, indicates that the system provides 2196 * a prototype for the sbrk() function. Otherwise, it is up 2197 * to the program to supply one. Good guesses are 2198 * extern void* sbrk(int); 2199 * extern void* sbrk(size_t); 2200 */ 2201/*#define HAS_SBRK_PROTO / **/ 2202 2203/* HAS_SEM: 2204 * This symbol, if defined, indicates that the entire sem*(2) library is 2205 * supported. 2206 */ 2207/*#define HAS_SEM / **/ 2208 2209/* HAS_SCALBNL: 2210 * This symbol, if defined, indicates that the scalbnl routine is 2211 * available. If ilogbl is also present we can emulate frexpl. 2212 */ 2213/*#define HAS_SCALBNL /**/ 2214 2215/* HAS_SENDMSG: 2216 * This symbol, if defined, indicates that the sendmsg routine is 2217 * available to send structured socket messages. 2218 */ 2219/*#define HAS_SENDMSG / **/ 2220 2221/* HAS_SETGRENT: 2222 * This symbol, if defined, indicates that the setgrent routine is 2223 * available for initializing sequential access of the group database. 2224 */ 2225#define HAS_SETGRENT /**/ 2226 2227/* HAS_SETGRENT_R: 2228 * This symbol, if defined, indicates that the setgrent_r routine 2229 * is available to setgrent re-entrantly. 2230 */ 2231/* SETGRENT_R_PROTO: 2232 * This symbol encodes the prototype of setgrent_r. 2233 * It is zero if d_setgrent_r is undef, and one of the 2234 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_setgrent_r 2235 * is defined. 2236 */ 2237/*#define HAS_SETGRENT_R / **/ 2238#define SETGRENT_R_PROTO 0 /**/ 2239 2240/* HAS_SETGROUPS: 2241 * This symbol, if defined, indicates that the setgroups() routine is 2242 * available to set the list of process groups. If unavailable, multiple 2243 * groups are probably not supported. 2244 */ 2245/*#define HAS_SETGROUPS /* config-skip */ 2246 2247/* HAS_SETHOSTENT: 2248 * This symbol, if defined, indicates that the sethostent() routine is 2249 * available. 2250 */ 2251/*#define HAS_SETHOSTENT / **/ 2252 2253/* HAS_SETITIMER: 2254 * This symbol, if defined, indicates that the setitimer routine is 2255 * available to set interval timers. 2256 */ 2257/*#define HAS_SETITIMER / **/ 2258 2259/* HAS_SETNETENT: 2260 * This symbol, if defined, indicates that the setnetent() routine is 2261 * available. 2262 */ 2263/*#define HAS_SETNETENT / **/ 2264 2265/* HAS_SETPROTOENT: 2266 * This symbol, if defined, indicates that the setprotoent() routine is 2267 * available. 2268 */ 2269/*#define HAS_SETPROTOENT / **/ 2270 2271/* HAS_SETPGRP: 2272 * This symbol, if defined, indicates that the setpgrp routine is 2273 * available to set the current process group. 2274 */ 2275/* USE_BSD_SETPGRP: 2276 * This symbol, if defined, indicates that setpgrp needs two 2277 * arguments whereas USG one needs none. See also HAS_SETPGID 2278 * for a POSIX interface. 2279 */ 2280/*#define HAS_SETPGRP / **/ 2281/*#define USE_BSD_SETPGRP / **/ 2282 2283/* HAS_SETPROCTITLE: 2284 * This symbol, if defined, indicates that the setproctitle routine is 2285 * available to set process title. 2286 */ 2287/*#define HAS_SETPROCTITLE / **/ 2288 2289/* HAS_SETPWENT: 2290 * This symbol, if defined, indicates that the setpwent routine is 2291 * available for initializing sequential access of the passwd database. 2292 */ 2293#define HAS_SETPWENT /**/ 2294 2295/* HAS_SETPWENT_R: 2296 * This symbol, if defined, indicates that the setpwent_r routine 2297 * is available to setpwent re-entrantly. 2298 */ 2299/* SETPWENT_R_PROTO: 2300 * This symbol encodes the prototype of setpwent_r. 2301 * It is zero if d_setpwent_r is undef, and one of the 2302 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_setpwent_r 2303 * is defined. 2304 */ 2305/*#define HAS_SETPWENT_R / **/ 2306#define SETPWENT_R_PROTO 0 /**/ 2307 2308/* HAS_SETSERVENT: 2309 * This symbol, if defined, indicates that the setservent() routine is 2310 * available. 2311 */ 2312/*#define HAS_SETSERVENT / **/ 2313 2314/* HAS_SETVBUF: 2315 * This symbol, if defined, indicates that the setvbuf routine is 2316 * available to change buffering on an open stdio stream. 2317 * to a line-buffered mode. 2318 */ 2319#define HAS_SETVBUF /**/ 2320 2321/* USE_SFIO: 2322 * This symbol, if defined, indicates that sfio should 2323 * be used. 2324 */ 2325/*#define USE_SFIO / **/ 2326 2327/* HAS_SHM: 2328 * This symbol, if defined, indicates that the entire shm*(2) library is 2329 * supported. 2330 */ 2331/*#define HAS_SHM / **/ 2332 2333/* HAS_SIGACTION: 2334 * This symbol, if defined, indicates that Vr4's sigaction() routine 2335 * is available. 2336 */ 2337#define HAS_SIGACTION /**/ 2338 2339/* HAS_SIGSETJMP: 2340 * This variable indicates to the C program that the sigsetjmp() 2341 * routine is available to save the calling process's registers 2342 * and stack environment for later use by siglongjmp(), and 2343 * to optionally save the process's signal mask. See 2344 * Sigjmp_buf, Sigsetjmp, and Siglongjmp. 2345 */ 2346/* Sigjmp_buf: 2347 * This is the buffer type to be used with Sigsetjmp and Siglongjmp. 2348 */ 2349/* Sigsetjmp: 2350 * This macro is used in the same way as sigsetjmp(), but will invoke 2351 * traditional setjmp() if sigsetjmp isn't available. 2352 * See HAS_SIGSETJMP. 2353 */ 2354/* Siglongjmp: 2355 * This macro is used in the same way as siglongjmp(), but will invoke 2356 * traditional longjmp() if siglongjmp isn't available. 2357 * See HAS_SIGSETJMP. 2358 */ 2359#define HAS_SIGSETJMP /* config-skip */ 2360#ifdef HAS_SIGSETJMP 2361#define Sigjmp_buf sigjmp_buf /* config-skip */ 2362#define Sigsetjmp(buf,save_mask) sigsetjmp((buf),(save_mask)) /* config-skip */ 2363#define Siglongjmp(buf,retval) siglongjmp((buf),(retval)) /* config-skip */ 2364#else 2365#define Sigjmp_buf jmp_buf 2366#define Sigsetjmp(buf,save_mask) setjmp((buf)) 2367#define Siglongjmp(buf,retval) longjmp((buf),(retval)) 2368#endif 2369 2370/* HAS_STATIC_INLINE: 2371 * This symbol, if defined, indicates that the C compiler supports 2372 * C99-style static inline. That is, the function can't be called 2373 * from another translation unit. 2374 */ 2375/* PERL_STATIC_INLINE: 2376 * This symbol gives the best-guess incantation to use for static 2377 * inline functions. If HAS_STATIC_INLINE is defined, this will 2378 * give C99-style inline. If HAS_STATIC_INLINE is not defined, 2379 * this will give a plain 'static'. It will always be defined 2380 * to something that gives static linkage. 2381 * Possibilities include 2382 * static inline (c99) 2383 * static __inline__ (gcc -ansi) 2384 * static __inline (MSVC) 2385 * static _inline (older MSVC) 2386 * static (c89 compilers) 2387 */ 2388/*#define HAS_STATIC_INLINE / **/ 2389#define PERL_STATIC_INLINE static /**/ 2390 2391/* HAS_SOCKET: 2392 * This symbol, if defined, indicates that the BSD socket interface is 2393 * supported. 2394 */ 2395/* HAS_SOCKETPAIR: 2396 * This symbol, if defined, indicates that the BSD socketpair() call is 2397 * supported. 2398 */ 2399/* HAS_MSG_CTRUNC: 2400 * This symbol, if defined, indicates that the MSG_CTRUNC is supported. 2401 * Checking just with #ifdef might not be enough because this symbol 2402 * has been known to be an enum. 2403 */ 2404/* HAS_MSG_DONTROUTE: 2405 * This symbol, if defined, indicates that the MSG_DONTROUTE is supported. 2406 * Checking just with #ifdef might not be enough because this symbol 2407 * has been known to be an enum. 2408 */ 2409/* HAS_MSG_OOB: 2410 * This symbol, if defined, indicates that the MSG_OOB is supported. 2411 * Checking just with #ifdef might not be enough because this symbol 2412 * has been known to be an enum. 2413 */ 2414/* HAS_MSG_PEEK: 2415 * This symbol, if defined, indicates that the MSG_PEEK is supported. 2416 * Checking just with #ifdef might not be enough because this symbol 2417 * has been known to be an enum. 2418 */ 2419/* HAS_MSG_PROXY: 2420 * This symbol, if defined, indicates that the MSG_PROXY is supported. 2421 * Checking just with #ifdef might not be enough because this symbol 2422 * has been known to be an enum. 2423 */ 2424/* HAS_SCM_RIGHTS: 2425 * This symbol, if defined, indicates that the SCM_RIGHTS is supported. 2426 * Checking just with #ifdef might not be enough because this symbol 2427 * has been known to be an enum. 2428 */ 2429#define HAS_SOCKET /**/ 2430#define HAS_SOCKETPAIR /**/ 2431/*#define HAS_MSG_CTRUNC / **/ 2432/*#define HAS_MSG_DONTROUTE / **/ 2433/*#define HAS_MSG_OOB / **/ 2434/*#define HAS_MSG_PEEK / **/ 2435/*#define HAS_MSG_PROXY / **/ 2436/*#define HAS_SCM_RIGHTS / **/ 2437 2438/* HAS_SOCKS5_INIT: 2439 * This symbol, if defined, indicates that the socks5_init routine is 2440 * available to initialize SOCKS 5. 2441 */ 2442/*#define HAS_SOCKS5_INIT / **/ 2443 2444/* HAS_SQRTL: 2445 * This symbol, if defined, indicates that the sqrtl routine is 2446 * available to do long double square roots. 2447 */ 2448/*#define HAS_SQRTL / **/ 2449 2450/* HAS_SRAND48_R: 2451 * This symbol, if defined, indicates that the srand48_r routine 2452 * is available to srand48 re-entrantly. 2453 */ 2454/* SRAND48_R_PROTO: 2455 * This symbol encodes the prototype of srand48_r. 2456 * It is zero if d_srand48_r is undef, and one of the 2457 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_srand48_r 2458 * is defined. 2459 */ 2460/*#define HAS_SRAND48_R / **/ 2461#define SRAND48_R_PROTO 0 /**/ 2462 2463/* HAS_SRANDOM_R: 2464 * This symbol, if defined, indicates that the srandom_r routine 2465 * is available to srandom re-entrantly. 2466 */ 2467/* SRANDOM_R_PROTO: 2468 * This symbol encodes the prototype of srandom_r. 2469 * It is zero if d_srandom_r is undef, and one of the 2470 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_srandom_r 2471 * is defined. 2472 */ 2473/*#define HAS_SRANDOM_R / **/ 2474#define SRANDOM_R_PROTO 0 /**/ 2475 2476/* USE_STAT_BLOCKS: 2477 * This symbol is defined if this system has a stat structure declaring 2478 * st_blksize and st_blocks. 2479 */ 2480#ifndef USE_STAT_BLOCKS 2481/*#define USE_STAT_BLOCKS / **/ 2482#endif 2483 2484/* HAS_STRUCT_STATFS_F_FLAGS: 2485 * This symbol, if defined, indicates that the struct statfs 2486 * does have the f_flags member containing the mount flags of 2487 * the filesystem containing the file. 2488 * This kind of struct statfs is coming from <sys/mount.h> (BSD 4.3), 2489 * not from <sys/statfs.h> (SYSV). Older BSDs (like Ultrix) do not 2490 * have statfs() and struct statfs, they have ustat() and getmnt() 2491 * with struct ustat and struct fs_data. 2492 */ 2493/*#define HAS_STRUCT_STATFS_F_FLAGS / **/ 2494 2495/* HAS_STRUCT_STATFS: 2496 * This symbol, if defined, indicates that the struct statfs 2497 * to do statfs() is supported. 2498 */ 2499/*#define HAS_STRUCT_STATFS / **/ 2500 2501/* HAS_FSTATVFS: 2502 * This symbol, if defined, indicates that the fstatvfs routine is 2503 * available to stat filesystems by file descriptors. 2504 */ 2505/*#define HAS_FSTATVFS / **/ 2506 2507/* USE_STDIO_PTR: 2508 * This symbol is defined if the _ptr and _cnt fields (or similar) 2509 * of the stdio FILE structure can be used to access the stdio buffer 2510 * for a file handle. If this is defined, then the FILE_ptr(fp) 2511 * and FILE_cnt(fp) macros will also be defined and should be used 2512 * to access these fields. 2513 */ 2514/* FILE_ptr: 2515 * This macro is used to access the _ptr field (or equivalent) of the 2516 * FILE structure pointed to by its argument. This macro will always be 2517 * defined if USE_STDIO_PTR is defined. 2518 */ 2519/* STDIO_PTR_LVALUE: 2520 * This symbol is defined if the FILE_ptr macro can be used as an 2521 * lvalue. 2522 */ 2523/* FILE_cnt: 2524 * This macro is used to access the _cnt field (or equivalent) of the 2525 * FILE structure pointed to by its argument. This macro will always be 2526 * defined if USE_STDIO_PTR is defined. 2527 */ 2528/* STDIO_CNT_LVALUE: 2529 * This symbol is defined if the FILE_cnt macro can be used as an 2530 * lvalue. 2531 */ 2532/* STDIO_PTR_LVAL_SETS_CNT: 2533 * This symbol is defined if using the FILE_ptr macro as an lvalue 2534 * to increase the pointer by n has the side effect of decreasing the 2535 * value of File_cnt(fp) by n. 2536 */ 2537/* STDIO_PTR_LVAL_NOCHANGE_CNT: 2538 * This symbol is defined if using the FILE_ptr macro as an lvalue 2539 * to increase the pointer by n leaves File_cnt(fp) unchanged. 2540 */ 2541/*#define USE_STDIO_PTR / **/ 2542#ifdef USE_STDIO_PTR 2543#define FILE_ptr(fp) ((fp)->_ptr) 2544/*#define STDIO_PTR_LVALUE / **/ 2545#define FILE_cnt(fp) ((fp)->_cnt) 2546/*#define STDIO_CNT_LVALUE / **/ 2547/*#define STDIO_PTR_LVAL_SETS_CNT / **/ 2548/*#define STDIO_PTR_LVAL_NOCHANGE_CNT / **/ 2549#endif 2550 2551/* USE_STDIO_BASE: 2552 * This symbol is defined if the _base field (or similar) of the 2553 * stdio FILE structure can be used to access the stdio buffer for 2554 * a file handle. If this is defined, then the FILE_base(fp) macro 2555 * will also be defined and should be used to access this field. 2556 * Also, the FILE_bufsiz(fp) macro will be defined and should be used 2557 * to determine the number of bytes in the buffer. USE_STDIO_BASE 2558 * will never be defined unless USE_STDIO_PTR is. 2559 */ 2560/* FILE_base: 2561 * This macro is used to access the _base field (or equivalent) of the 2562 * FILE structure pointed to by its argument. This macro will always be 2563 * defined if USE_STDIO_BASE is defined. 2564 */ 2565/* FILE_bufsiz: 2566 * This macro is used to determine the number of bytes in the I/O 2567 * buffer pointed to by _base field (or equivalent) of the FILE 2568 * structure pointed to its argument. This macro will always be defined 2569 * if USE_STDIO_BASE is defined. 2570 */ 2571/*#define USE_STDIO_BASE / **/ 2572#ifdef USE_STDIO_BASE 2573#define FILE_base(fp) ((fp)->_base) 2574#define FILE_bufsiz(fp) ((fp)->_cnt + (fp)->_ptr - (fp)->_base) 2575#endif 2576 2577/* HAS_STRERROR: 2578 * This symbol, if defined, indicates that the strerror routine is 2579 * available to translate error numbers to strings. See the writeup 2580 * of Strerror() in this file before you try to define your own. 2581 */ 2582/* HAS_SYS_ERRLIST: 2583 * This symbol, if defined, indicates that the sys_errlist array is 2584 * available to translate error numbers to strings. The extern int 2585 * sys_nerr gives the size of that table. 2586 */ 2587/* Strerror: 2588 * This preprocessor symbol is defined as a macro if strerror() is 2589 * not available to translate error numbers to strings but sys_errlist[] 2590 * array is there. 2591 */ 2592#define HAS_STRERROR /**/ 2593#define HAS_SYS_ERRLIST /**/ 2594#define Strerror(e) strerror(e) 2595 2596/* HAS_STRERROR_R: 2597 * This symbol, if defined, indicates that the strerror_r routine 2598 * is available to strerror re-entrantly. 2599 */ 2600/* STRERROR_R_PROTO: 2601 * This symbol encodes the prototype of strerror_r. 2602 * It is zero if d_strerror_r is undef, and one of the 2603 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_strerror_r 2604 * is defined. 2605 */ 2606/*#define HAS_STRERROR_R / **/ 2607#define STRERROR_R_PROTO 0 /**/ 2608 2609/* HAS_STRTOLD: 2610 * This symbol, if defined, indicates that the strtold routine is 2611 * available to convert strings to long doubles. 2612 */ 2613/*#define HAS_STRTOLD / **/ 2614 2615/* HAS_STRTOLL: 2616 * This symbol, if defined, indicates that the strtoll routine is 2617 * available to convert strings to long longs. 2618 */ 2619/*#define HAS_STRTOLL / **/ 2620 2621/* HAS_STRTOQ: 2622 * This symbol, if defined, indicates that the strtoq routine is 2623 * available to convert strings to long longs (quads). 2624 */ 2625/*#define HAS_STRTOQ / **/ 2626 2627/* HAS_STRTOUL: 2628 * This symbol, if defined, indicates that the strtoul routine is 2629 * available to provide conversion of strings to unsigned long. 2630 */ 2631#define HAS_STRTOUL /**/ 2632 2633/* HAS_STRTOULL: 2634 * This symbol, if defined, indicates that the strtoull routine is 2635 * available to convert strings to unsigned long longs. 2636 */ 2637/*#define HAS_STRTOULL / **/ 2638 2639/* HAS_STRTOUQ: 2640 * This symbol, if defined, indicates that the strtouq routine is 2641 * available to convert strings to unsigned long longs (quads). 2642 */ 2643/*#define HAS_STRTOUQ / **/ 2644 2645/* HAS_TELLDIR_PROTO: 2646 * This symbol, if defined, indicates that the system provides 2647 * a prototype for the telldir() function. Otherwise, it is up 2648 * to the program to supply one. A good guess is 2649 * extern long telldir(DIR*); 2650 */ 2651/*#define HAS_TELLDIR_PROTO / **/ 2652 2653/* HAS_TIME: 2654 * This symbol, if defined, indicates that the time() routine exists. 2655 */ 2656/* Time_t: 2657 * This symbol holds the type returned by time(). It can be long, 2658 * or time_t on BSD sites (in which case <sys/types.h> should be 2659 * included). 2660 */ 2661#define HAS_TIME /**/ 2662#define Time_t time_t /* Time type */ 2663 2664/* HAS_TIMES: 2665 * This symbol, if defined, indicates that the times() routine exists. 2666 * Note that this became obsolete on some systems (SUNOS), which now 2667 * use getrusage(). It may be necessary to include <sys/times.h>. 2668 */ 2669#define HAS_TIMES /**/ 2670 2671/* HAS_TMPNAM_R: 2672 * This symbol, if defined, indicates that the tmpnam_r routine 2673 * is available to tmpnam re-entrantly. 2674 */ 2675/* TMPNAM_R_PROTO: 2676 * This symbol encodes the prototype of tmpnam_r. 2677 * It is zero if d_tmpnam_r is undef, and one of the 2678 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_tmpnam_r 2679 * is defined. 2680 */ 2681/*#define HAS_TMPNAM_R / **/ 2682#define TMPNAM_R_PROTO 0 /**/ 2683 2684/* HAS_UALARM: 2685 * This symbol, if defined, indicates that the ualarm routine is 2686 * available to do alarms with microsecond granularity. 2687 */ 2688/*#define HAS_UALARM / **/ 2689 2690/* HAS_UNION_SEMUN: 2691 * This symbol, if defined, indicates that the union semun is 2692 * defined by including <sys/sem.h>. If not, the user code 2693 * probably needs to define it as: 2694 * union semun { 2695 * int val; 2696 * struct semid_ds *buf; 2697 * unsigned short *array; 2698 * } 2699 */ 2700/* USE_SEMCTL_SEMUN: 2701 * This symbol, if defined, indicates that union semun is 2702 * used for semctl IPC_STAT. 2703 */ 2704/* USE_SEMCTL_SEMID_DS: 2705 * This symbol, if defined, indicates that struct semid_ds * is 2706 * used for semctl IPC_STAT. 2707 */ 2708/*#define HAS_UNION_SEMUN / **/ 2709/*#define USE_SEMCTL_SEMUN / **/ 2710/*#define USE_SEMCTL_SEMID_DS / **/ 2711 2712/* HAS_UNORDERED: 2713 * This symbol, if defined, indicates that the unordered routine is 2714 * available to check whether two doubles are unordered 2715 * (effectively: whether either of them is NaN) 2716 */ 2717/*#define HAS_UNORDERED / **/ 2718 2719/* HAS_USTAT: 2720 * This symbol, if defined, indicates that the ustat system call is 2721 * available to query file system statistics by dev_t. 2722 */ 2723/*#define HAS_USTAT / **/ 2724 2725/* HAS_VFORK: 2726 * This symbol, if defined, indicates that vfork() exists. 2727 */ 2728/*#define HAS_VFORK / **/ 2729 2730/* Signal_t: 2731 * This symbol's value is either "void" or "int", corresponding to the 2732 * appropriate return type of a signal handler. Thus, you can declare 2733 * a signal handler using "Signal_t (*handler)()", and define the 2734 * handler using "Signal_t handler(sig)". 2735 */ 2736#define Signal_t void /* Signal handler's return type */ 2737 2738/* HAS_VPRINTF: 2739 * This symbol, if defined, indicates that the vprintf routine is available 2740 * to printf with a pointer to an argument list. If unavailable, you 2741 * may need to write your own, probably in terms of _doprnt(). 2742 */ 2743/* USE_CHAR_VSPRINTF: 2744 * This symbol is defined if this system has vsprintf() returning type 2745 * (char*). The trend seems to be to declare it as "int vsprintf()". It 2746 * is up to the package author to declare vsprintf correctly based on the 2747 * symbol. 2748 */ 2749#define HAS_VPRINTF /**/ 2750#define USE_CHAR_VSPRINTF /**/ 2751 2752/* HAS_WRITEV: 2753 * This symbol, if defined, indicates that the writev routine is 2754 * available to do scatter writes. 2755 */ 2756#define HAS_WRITEV /**/ 2757 2758/* USE_DYNAMIC_LOADING: 2759 * This symbol, if defined, indicates that dynamic loading of 2760 * some sort is available. 2761 */ 2762/*#define USE_DYNAMIC_LOADING / **/ 2763 2764/* DOUBLESIZE: 2765 * This symbol contains the size of a double, so that the C preprocessor 2766 * can make decisions based on it. 2767 */ 2768#define DOUBLESIZE 8 /**/ 2769 2770/* EBCDIC: 2771 * This symbol, if defined, indicates that this system uses 2772 * EBCDIC encoding. 2773 */ 2774/*#define EBCDIC / **/ 2775 2776/* FFLUSH_NULL: 2777 * This symbol, if defined, tells that fflush(NULL) does flush 2778 * all pending stdio output. 2779 */ 2780/* FFLUSH_ALL: 2781 * This symbol, if defined, tells that to flush 2782 * all pending stdio output one must loop through all 2783 * the stdio file handles stored in an array and fflush them. 2784 * Note that if fflushNULL is defined, fflushall will not 2785 * even be probed for and will be left undefined. 2786 */ 2787#define FFLUSH_NULL /**/ 2788/*#define FFLUSH_ALL / **/ 2789 2790/* Fpos_t: 2791 * This symbol holds the type used to declare file positions in libc. 2792 * It can be fpos_t, long, uint, etc... It may be necessary to include 2793 * <sys/types.h> to get any typedef'ed information. 2794 */ 2795#define Fpos_t fpos_t /* File position type */ 2796 2797/* Gid_t_f: 2798 * This symbol defines the format string used for printing a Gid_t. 2799 */ 2800#define Gid_t_f "hd" /**/ 2801 2802/* Gid_t_sign: 2803 * This symbol holds the signedess of a Gid_t. 2804 * 1 for unsigned, -1 for signed. 2805 */ 2806#define Gid_t_sign -1 /* GID sign */ 2807 2808/* Gid_t_size: 2809 * This symbol holds the size of a Gid_t in bytes. 2810 */ 2811#define Gid_t_size 2 /* GID size */ 2812 2813/* Gid_t: 2814 * This symbol holds the return type of getgid() and the type of 2815 * argument to setrgid() and related functions. Typically, 2816 * it is the type of group ids in the kernel. It can be int, ushort, 2817 * gid_t, etc... It may be necessary to include <sys/types.h> to get 2818 * any typedef'ed information. 2819 */ 2820#define Gid_t gid_t /* Type for getgid(), etc... */ /* config-skip */ 2821 2822/* Groups_t: 2823 * This symbol holds the type used for the second argument to 2824 * getgroups() and setgroups(). Usually, this is the same as 2825 * gidtype (gid_t) , but sometimes it isn't. 2826 * It can be int, ushort, gid_t, etc... 2827 * It may be necessary to include <sys/types.h> to get any 2828 * typedef'ed information. This is only required if you have 2829 * getgroups() or setgroups().. 2830 */ 2831#if defined(HAS_GETGROUPS) || defined(HAS_SETGROUPS) 2832#define Groups_t gid_t /* Type for 2nd arg to [sg]etgroups() */ 2833#endif 2834 2835/* DB_Prefix_t: 2836 * This symbol contains the type of the prefix structure element 2837 * in the <db.h> header file. In older versions of DB, it was 2838 * int, while in newer ones it is u_int32_t. 2839 */ 2840/* DB_Hash_t: 2841 * This symbol contains the type of the prefix structure element 2842 * in the <db.h> header file. In older versions of DB, it was 2843 * int, while in newer ones it is size_t. 2844 */ 2845/* DB_VERSION_MAJOR_CFG: 2846 * This symbol, if defined, defines the major version number of 2847 * Berkeley DB found in the <db.h> header when Perl was configured. 2848 */ 2849/* DB_VERSION_MINOR_CFG: 2850 * This symbol, if defined, defines the minor version number of 2851 * Berkeley DB found in the <db.h> header when Perl was configured. 2852 * For DB version 1 this is always 0. 2853 */ 2854/* DB_VERSION_PATCH_CFG: 2855 * This symbol, if defined, defines the patch version number of 2856 * Berkeley DB found in the <db.h> header when Perl was configured. 2857 * For DB version 1 this is always 0. 2858 */ 2859#define DB_Hash_t u_int32_t /**/ 2860#define DB_Prefix_t size_t /**/ 2861#define DB_VERSION_MAJOR_CFG /**/ 2862#define DB_VERSION_MINOR_CFG /**/ 2863#define DB_VERSION_PATCH_CFG /**/ 2864 2865/* I_FP_CLASS: 2866 * This symbol, if defined, indicates that <fp_class.h> exists and 2867 * should be included. 2868 */ 2869/*#define I_FP_CLASS / **/ 2870 2871/* I_GRP: 2872 * This symbol, if defined, indicates to the C program that it should 2873 * include <grp.h>. 2874 */ 2875/* GRPASSWD: 2876 * This symbol, if defined, indicates to the C program that struct group 2877 * in <grp.h> contains gr_passwd. 2878 */ 2879#define I_GRP /**/ 2880/*#define GRPASSWD / **/ 2881 2882/* I_IEEEFP: 2883 * This symbol, if defined, indicates that <ieeefp.h> exists and 2884 * should be included. 2885 */ 2886/*#define I_IEEEFP / **/ 2887 2888/* I_INTTYPES: 2889 * This symbol, if defined, indicates to the C program that it should 2890 * include <inttypes.h>. 2891 */ 2892#define I_INTTYPES /**/ 2893 2894/* I_LIBUTIL: 2895 * This symbol, if defined, indicates that <libutil.h> exists and 2896 * should be included. 2897 */ 2898/*#define I_LIBUTIL / **/ 2899 2900/* I_MACH_CTHREADS: 2901 * This symbol, if defined, indicates to the C program that it should 2902 * include <mach/cthreads.h>. 2903 */ 2904/*#define I_MACH_CTHREADS / **/ 2905 2906/* I_MNTENT: 2907 * This symbol, if defined, indicates that <mntent.h> exists and 2908 * should be included. 2909 */ 2910/*#define I_MNTENT / **/ 2911 2912/* I_NETDB: 2913 * This symbol, if defined, indicates that <netdb.h> exists and 2914 * should be included. 2915 */ 2916#define I_NETDB /**/ 2917 2918/* I_NETINET_TCP: 2919 * This symbol, if defined, indicates to the C program that it should 2920 * include <netinet/tcp.h>. 2921 */ 2922#define I_NETINET_TCP /**/ 2923 2924/* I_POLL: 2925 * This symbol, if defined, indicates that <poll.h> exists and 2926 * should be included. 2927 */ 2928/*#define I_POLL / **/ 2929 2930/* I_PROT: 2931 * This symbol, if defined, indicates that <prot.h> exists and 2932 * should be included. 2933 */ 2934/*#define I_PROT / **/ 2935 2936/* I_PTHREAD: 2937 * This symbol, if defined, indicates to the C program that it should 2938 * include <pthread.h>. 2939 */ 2940/*#define I_PTHREAD / **/ 2941 2942/* I_PWD: 2943 * This symbol, if defined, indicates to the C program that it should 2944 * include <pwd.h>. 2945 */ 2946/* PWQUOTA: 2947 * This symbol, if defined, indicates to the C program that struct passwd 2948 * contains pw_quota. 2949 */ 2950/* PWAGE: 2951 * This symbol, if defined, indicates to the C program that struct passwd 2952 * contains pw_age. 2953 */ 2954/* PWCHANGE: 2955 * This symbol, if defined, indicates to the C program that struct passwd 2956 * contains pw_change. 2957 */ 2958/* PWCLASS: 2959 * This symbol, if defined, indicates to the C program that struct passwd 2960 * contains pw_class. 2961 */ 2962/* PWEXPIRE: 2963 * This symbol, if defined, indicates to the C program that struct passwd 2964 * contains pw_expire. 2965 */ 2966/* PWCOMMENT: 2967 * This symbol, if defined, indicates to the C program that struct passwd 2968 * contains pw_comment. 2969 */ 2970/* PWGECOS: 2971 * This symbol, if defined, indicates to the C program that struct passwd 2972 * contains pw_gecos. 2973 */ 2974/* PWPASSWD: 2975 * This symbol, if defined, indicates to the C program that struct passwd 2976 * contains pw_passwd. 2977 */ 2978#define I_PWD /**/ 2979/*#define PWQUOTA / **/ 2980/*#define PWAGE / **/ 2981/*#define PWCHANGE / **/ 2982/*#define PWCLASS / **/ 2983/*#define PWEXPIRE / **/ 2984/*#define PWCOMMENT / **/ 2985/*#define PWGECOS / **/ 2986/*#define PWPASSWD / **/ 2987 2988/* I_SHADOW: 2989 * This symbol, if defined, indicates that <shadow.h> exists and 2990 * should be included. 2991 */ 2992/*#define I_SHADOW / **/ 2993 2994/* I_SOCKS: 2995 * This symbol, if defined, indicates that <socks.h> exists and 2996 * should be included. 2997 */ 2998/*#define I_SOCKS / **/ 2999 3000/* I_SUNMATH: 3001 * This symbol, if defined, indicates that <sunmath.h> exists and 3002 * should be included. 3003 */ 3004/*#define I_SUNMATH / **/ 3005 3006/* I_SYSLOG: 3007 * This symbol, if defined, indicates that <syslog.h> exists and 3008 * should be included. 3009 */ 3010/*#define I_SYSLOG / **/ 3011 3012/* I_SYSMODE: 3013 * This symbol, if defined, indicates that <sys/mode.h> exists and 3014 * should be included. 3015 */ 3016/*#define I_SYSMODE / **/ 3017 3018/* I_SYS_MOUNT: 3019 * This symbol, if defined, indicates that <sys/mount.h> exists and 3020 * should be included. 3021 */ 3022/*#define I_SYS_MOUNT / **/ 3023 3024/* I_SYS_STATFS: 3025 * This symbol, if defined, indicates that <sys/statfs.h> exists. 3026 */ 3027/*#define I_SYS_STATFS / **/ 3028 3029/* I_SYS_STATVFS: 3030 * This symbol, if defined, indicates that <sys/statvfs.h> exists and 3031 * should be included. 3032 */ 3033/*#define I_SYS_STATVFS / **/ 3034 3035/* I_SYSUIO: 3036 * This symbol, if defined, indicates that <sys/uio.h> exists and 3037 * should be included. 3038 */ 3039#define I_SYSUIO /**/ 3040 3041/* I_SYSUTSNAME: 3042 * This symbol, if defined, indicates that <sys/utsname.h> exists and 3043 * should be included. 3044 */ 3045#define I_SYSUTSNAME /**/ 3046 3047/* I_SYS_VFS: 3048 * This symbol, if defined, indicates that <sys/vfs.h> exists and 3049 * should be included. 3050 */ 3051/*#define I_SYS_VFS / **/ 3052 3053/* Plan 9: P9 has both <time.h> and <sys/time.h> */ 3054/* I_TIME: 3055 * This symbol, if defined, indicates to the C program that it should 3056 * include <time.h>. 3057 */ 3058/* I_SYS_TIME: 3059 * This symbol, if defined, indicates to the C program that it should 3060 * include <sys/time.h>. 3061 */ 3062#define I_SYS_TIME /**/ 3063 3064 3065/* I_SYS_TIME_KERNEL: 3066 * This symbol, if defined, indicates to the C program that it should 3067 * include <sys/time.h> with KERNEL defined. 3068 */ 3069/* HAS_TM_TM_ZONE: 3070 * This symbol, if defined, indicates to the C program that 3071 * the struct tm has a tm_zone field. 3072 */ 3073#define I_TIME /**/ 3074/*#define I_SYS_TIME / **/ 3075/*#define I_SYS_TIME_KERNEL / **/ 3076/*#define HAS_TM_TM_ZONE / **/ 3077 3078/* I_USTAT: 3079 * This symbol, if defined, indicates that <ustat.h> exists and 3080 * should be included. 3081 */ 3082/*#define I_USTAT / **/ 3083 3084/* PERL_INC_VERSION_LIST: 3085 * This variable specifies the list of subdirectories in over 3086 * which perl.c:incpush() and lib/lib.pm will automatically 3087 * search when adding directories to @INC, in a format suitable 3088 * for a C initialization string. See the inc_version_list entry 3089 * in Porting/Glossary for more details. 3090 */ 3091#define PERL_INC_VERSION_LIST 0 /**/ 3092 3093/* INSTALL_USR_BIN_PERL: 3094 * This symbol, if defined, indicates that Perl is to be installed 3095 * also as /usr/bin/perl. 3096 */ 3097/*#define INSTALL_USR_BIN_PERL / **/ 3098 3099/* PERL_PRIfldbl: 3100 * This symbol, if defined, contains the string used by stdio to 3101 * format long doubles (format 'f') for output. 3102 */ 3103/* PERL_PRIgldbl: 3104 * This symbol, if defined, contains the string used by stdio to 3105 * format long doubles (format 'g') for output. 3106 */ 3107/* PERL_PRIeldbl: 3108 * This symbol, if defined, contains the string used by stdio to 3109 * format long doubles (format 'e') for output. 3110 */ 3111/* PERL_SCNfldbl: 3112 * This symbol, if defined, contains the string used by stdio to 3113 * format long doubles (format 'f') for input. 3114 */ 3115#define PERL_PRIfldbl "f" /**/ 3116#define PERL_PRIgldbl "g" /**/ 3117#define PERL_PRIeldbl "e" /**/ 3118#define PERL_SCNfldbl "f" /**/ 3119 3120/* Off_t: 3121 * This symbol holds the type used to declare offsets in the kernel. 3122 * It can be int, long, off_t, etc... It may be necessary to include 3123 * <sys/types.h> to get any typedef'ed information. 3124 */ 3125/* LSEEKSIZE: 3126 * This symbol holds the number of bytes used by the Off_t. 3127 */ 3128/* Off_t_size: 3129 * This symbol holds the number of bytes used by the Off_t. 3130 */ 3131#define Off_t off_t /* <offset> type */ 3132#define LSEEKSIZE 8 /* <offset> size */ 3133#define Off_t_size 8 /* <offset> size */ 3134 3135/* Free_t: 3136 * This variable contains the return type of free(). It is usually 3137 * void, but occasionally int. 3138 */ 3139/* Malloc_t: 3140 * This symbol is the type of pointer returned by malloc and realloc. 3141 */ 3142#define Malloc_t void * /**/ 3143#define Free_t void /**/ 3144 3145/* MYMALLOC: 3146 * This symbol, if defined, indicates that we're using our own malloc. 3147 */ 3148#define MYMALLOC /**/ 3149 3150/* Mode_t: 3151 * This symbol holds the type used to declare file modes 3152 * for systems calls. It is usually mode_t, but may be 3153 * int or unsigned short. It may be necessary to include <sys/types.h> 3154 * to get any typedef'ed information. 3155 */ 3156#define Mode_t mode_t /* file mode parameter for system calls */ 3157 3158/* VAL_O_NONBLOCK: 3159 * This symbol is to be used during open() or fcntl(F_SETFL) to turn on 3160 * non-blocking I/O for the file descriptor. Note that there is no way 3161 * back, i.e. you cannot turn it blocking again this way. If you wish to 3162 * alternatively switch between blocking and non-blocking, use the 3163 * ioctl(FIOSNBIO) call instead, but that is not supported by all devices. 3164 */ 3165/* VAL_EAGAIN: 3166 * This symbol holds the errno error code set by read() when no data was 3167 * present on the non-blocking file descriptor. 3168 */ 3169/* RD_NODATA: 3170 * This symbol holds the return code from read() when no data is present 3171 * on the non-blocking file descriptor. Be careful! If EOF_NONBLOCK is 3172 * not defined, then you can't distinguish between no data and EOF by 3173 * issuing a read(). You'll have to find another way to tell for sure! 3174 */ 3175/* EOF_NONBLOCK: 3176 * This symbol, if defined, indicates to the C program that a read() on 3177 * a non-blocking file descriptor will return 0 on EOF, and not the value 3178 * held in RD_NODATA (-1 usually, in that case!). 3179 */ 3180#define VAL_O_NONBLOCK O_NONBLOCK 3181#define VAL_EAGAIN EAGAIN 3182#define RD_NODATA -1 3183#define EOF_NONBLOCK 3184 3185/* NEED_VA_COPY: 3186 * This symbol, if defined, indicates that the system stores 3187 * the variable argument list datatype, va_list, in a format 3188 * that cannot be copied by simple assignment, so that some 3189 * other means must be used when copying is required. 3190 * As such systems vary in their provision (or non-provision) 3191 * of copying mechanisms, handy.h defines a platform- 3192 * independent macro, Perl_va_copy(src, dst), to do the job. 3193 */ 3194/*#define NEED_VA_COPY / **/ 3195 3196/* Netdb_host_t: 3197 * This symbol holds the type used for the 1st argument 3198 * to gethostbyaddr(). 3199 */ 3200/* Netdb_hlen_t: 3201 * This symbol holds the type used for the 2nd argument 3202 * to gethostbyaddr(). 3203 */ 3204/* Netdb_name_t: 3205 * This symbol holds the type used for the argument to 3206 * gethostbyname(). 3207 */ 3208/* Netdb_net_t: 3209 * This symbol holds the type used for the 1st argument to 3210 * getnetbyaddr(). 3211 */ 3212#define Netdb_host_t char * /**/ 3213#define Netdb_hlen_t size_t /**/ 3214#define Netdb_name_t char * /**/ 3215#define Netdb_net_t long /**/ 3216 3217/* PERL_OTHERLIBDIRS: 3218 * This variable contains a colon-separated set of paths for the perl 3219 * binary to search for additional library files or modules. 3220 * These directories will be tacked to the end of @INC. 3221 * Perl will automatically search below each path for version- 3222 * and architecture-specific directories. See PERL_INC_VERSION_LIST 3223 * for more details. 3224 */ 3225/*#define PERL_OTHERLIBDIRS " " / **/ 3226 3227/* IVTYPE: 3228 * This symbol defines the C type used for Perl's IV. 3229 */ 3230/* UVTYPE: 3231 * This symbol defines the C type used for Perl's UV. 3232 */ 3233/* I8TYPE: 3234 * This symbol defines the C type used for Perl's I8. 3235 */ 3236/* U8TYPE: 3237 * This symbol defines the C type used for Perl's U8. 3238 */ 3239/* I16TYPE: 3240 * This symbol defines the C type used for Perl's I16. 3241 */ 3242/* U16TYPE: 3243 * This symbol defines the C type used for Perl's U16. 3244 */ 3245/* I32TYPE: 3246 * This symbol defines the C type used for Perl's I32. 3247 */ 3248/* U32TYPE: 3249 * This symbol defines the C type used for Perl's U32. 3250 */ 3251/* I64TYPE: 3252 * This symbol defines the C type used for Perl's I64. 3253 */ 3254/* U64TYPE: 3255 * This symbol defines the C type used for Perl's U64. 3256 */ 3257/* NVTYPE: 3258 * This symbol defines the C type used for Perl's NV. 3259 */ 3260/* IVSIZE: 3261 * This symbol contains the sizeof(IV). 3262 */ 3263/* UVSIZE: 3264 * This symbol contains the sizeof(UV). 3265 */ 3266/* I8SIZE: 3267 * This symbol contains the sizeof(I8). 3268 */ 3269/* U8SIZE: 3270 * This symbol contains the sizeof(U8). 3271 */ 3272/* I16SIZE: 3273 * This symbol contains the sizeof(I16). 3274 */ 3275/* U16SIZE: 3276 * This symbol contains the sizeof(U16). 3277 */ 3278/* I32SIZE: 3279 * This symbol contains the sizeof(I32). 3280 */ 3281/* U32SIZE: 3282 * This symbol contains the sizeof(U32). 3283 */ 3284/* I64SIZE: 3285 * This symbol contains the sizeof(I64). 3286 */ 3287/* U64SIZE: 3288 * This symbol contains the sizeof(U64). 3289 */ 3290/* NVSIZE: 3291 * This symbol contains the sizeof(NV). 3292 */ 3293/* NV_PRESERVES_UV: 3294 * This symbol, if defined, indicates that a variable of type NVTYPE 3295 * can preserve all the bits of a variable of type UVTYPE. 3296 */ 3297/* NV_PRESERVES_UV_BITS: 3298 * This symbol contains the number of bits a variable of type NVTYPE 3299 * can preserve of a variable of type UVTYPE. 3300 */ 3301#define IVTYPE long /**/ 3302#define UVTYPE unsigned long /**/ 3303#define I8TYPE char /**/ 3304#define U8TYPE unsigned char /**/ 3305#define I16TYPE short /**/ 3306#define U16TYPE unsigned short /**/ 3307#define I32TYPE long /**/ 3308#define U32TYPE unsigned long /**/ 3309#ifdef HAS_QUAD 3310#define I64TYPE long long /**/ 3311#define U64TYPE unsigned long long /**/ 3312#endif 3313#define NVTYPE double /**/ 3314#define IVSIZE 4 /**/ 3315#define UVSIZE 4 /**/ 3316#define I8SIZE 1 /**/ 3317#define U8SIZE 1 /**/ 3318#define I16SIZE 2 /**/ 3319#define U16SIZE 2 /**/ 3320#define I32SIZE 4 /**/ 3321#define U32SIZE 4 /**/ 3322#ifdef HAS_QUAD 3323#define I64SIZE 8 /**/ 3324#define U64SIZE 8 /**/ 3325#endif 3326#define NVSIZE 8 /**/ 3327/*#define NV_PRESERVES_UV 3328#define NV_PRESERVES_UV_BITS 31 3329 3330/* IVdf: 3331 * This symbol defines the format string used for printing a Perl IV 3332 * as a signed decimal integer. 3333 */ 3334/* UVuf: 3335 * This symbol defines the format string used for printing a Perl UV 3336 * as an unsigned decimal integer. 3337 */ 3338/* UVof: 3339 * This symbol defines the format string used for printing a Perl UV 3340 * as an unsigned octal integer. 3341 */ 3342/* UVxf: 3343 * This symbol defines the format string used for printing a Perl UV 3344 * as an unsigned hexadecimal integer in lowercase abcdef. 3345 */ 3346/* UVXf: 3347 * This symbol defines the format string used for printing a Perl UV 3348 * as an unsigned hexadecimal integer in uppercase ABCDEF. 3349 */ 3350/* NVef: 3351 * This symbol defines the format string used for printing a Perl NV 3352 * using %e-ish floating point format. 3353 */ 3354/* NVff: 3355 * This symbol defines the format string used for printing a Perl NV 3356 * using %f-ish floating point format. 3357 */ 3358/* NVgf: 3359 * This symbol defines the format string used for printing a Perl NV 3360 * using %g-ish floating point format. 3361 */ 3362#define IVdf "ld" /**/ 3363#define UVuf "lu" /**/ 3364#define UVof "lo" /**/ 3365#define UVxf "lx" /**/ 3366#define UVXf "lX" /**/ 3367#define NVef "e" /**/ 3368#define NVff "f" /**/ 3369#define NVgf "g" /**/ 3370 3371/* Pid_t: 3372 * This symbol holds the type used to declare process ids in the kernel. 3373 * It can be int, uint, pid_t, etc... It may be necessary to include 3374 * <sys/types.h> to get any typedef'ed information. 3375 */ 3376#define Pid_t pid_t /* PID type */ 3377 3378/* PRIVLIB: 3379 * This symbol contains the name of the private library for this package. 3380 * The library is private in the sense that it needn't be in anyone's 3381 * execution path, but it should be accessible by the world. The program 3382 * should be prepared to do ~ expansion. 3383 */ 3384/* PRIVLIB_EXP: 3385 * This symbol contains the ~name expanded version of PRIVLIB, to be used 3386 * in programs that are not prepared to deal with ~ expansion at run-time. 3387 */ 3388#define PRIVLIB "/sys/lib/perl/5.16.3" /**/ 3389#define PRIVLIB_EXP "/sys/lib/perl/5.16.3" /**/ 3390 3391/* PTRSIZE: 3392 * This symbol contains the size of a pointer, so that the C preprocessor 3393 * can make decisions based on it. It will be sizeof(void *) if 3394 * the compiler supports (void *); otherwise it will be 3395 * sizeof(char *). 3396 */ 3397#define PTRSIZE 4 /**/ 3398 3399/* Drand01: 3400 * This macro is to be used to generate uniformly distributed 3401 * random numbers over the range [0., 1.[. You may have to supply 3402 * an 'extern double drand48();' in your program since SunOS 4.1.3 3403 * doesn't provide you with anything relevant in its headers. 3404 * See HAS_DRAND48_PROTO. 3405 */ 3406/* Rand_seed_t: 3407 * This symbol defines the type of the argument of the 3408 * random seed function. 3409 */ 3410/* seedDrand01: 3411 * This symbol defines the macro to be used in seeding the 3412 * random number generator (see Drand01). 3413 */ 3414/* RANDBITS: 3415 * This symbol indicates how many bits are produced by the 3416 * function used to generate normalized random numbers. 3417 * Values include 15, 16, 31, and 48. 3418 */ 3419#define Drand01() (rand() / (double) ((unsigned long)1 << 15)) /**/ 3420#define Rand_seed_t unsigned /**/ 3421#define seedDrand01(x) srand((Rand_seed_t)x) /**/ 3422#define RANDBITS 15 /**/ 3423 3424/* SELECT_MIN_BITS: 3425 * This symbol holds the minimum number of bits operated by select. 3426 * That is, if you do select(n, ...), how many bits at least will be 3427 * cleared in the masks if some activity is detected. Usually this 3428 * is either n or 32*ceil(n/32), especially many little-endians do 3429 * the latter. This is only useful if you have select(), naturally. 3430 */ 3431#define SELECT_MIN_BITS 32 /**/ 3432 3433/* Select_fd_set_t: 3434 * This symbol holds the type used for the 2nd, 3rd, and 4th 3435 * arguments to select. Usually, this is 'fd_set *', if HAS_FD_SET 3436 * is defined, and 'int *' otherwise. This is only useful if you 3437 * have select(), of course. 3438 */ 3439#define Select_fd_set_t fd_set* /**/ 3440 3441/* SIG_NAME: 3442 * This symbol contains a list of signal names in order of 3443 * signal number. This is intended 3444 * to be used as a static array initialization, like this: 3445 * char *sig_name[] = { SIG_NAME }; 3446 * The signals in the list are separated with commas, and each signal 3447 * is surrounded by double quotes. There is no leading SIG in the signal 3448 * name, i.e. SIGQUIT is known as "QUIT". 3449 * Gaps in the signal numbers (up to NSIG) are filled in with NUMnn, 3450 * etc., where nn is the actual signal number (e.g. NUM37). 3451 * The signal number for sig_name[i] is stored in sig_num[i]. 3452 * The last element is 0 to terminate the list with a NULL. This 3453 * corresponds to the 0 at the end of the sig_num list. 3454 */ 3455/* SIG_NUM: 3456 * This symbol contains a list of signal numbers, in the same order as the 3457 * SIG_NAME list. It is suitable for static array initialization, as in: 3458 * int sig_num[] = { SIG_NUM }; 3459 * The signals in the list are separated with commas, and the indices 3460 * within that list and the SIG_NAME list match, so it's easy to compute 3461 * the signal name from a number or vice versa at the price of a small 3462 * dynamic linear lookup. 3463 * Duplicates are allowed, but are moved to the end of the list. 3464 * The signal number corresponding to sig_name[i] is sig_number[i]. 3465 * if (i < NSIG) then sig_number[i] == i. 3466 * The last element is 0, corresponding to the 0 at the end of 3467 * the sig_name list. 3468 */ 3469/* SIG_SIZE: 3470 * This variable contains the number of elements of the SIG_NAME 3471 * and SIG_NUM arrays, excluding the final NULL entry. 3472 */ 3473#define SIG_NAME "ZERO", "HUP", "INT", "QUIT", "ILL", "ABRT", "FPE", "KILL", "SEGV", "PIPE", "ALRM", "TERM", "USR1", "USR2", "BUS", "CHLD", "CONT", "STOP", "TSTP", "TTIN", "TTOU", "NUM21", "NUM22", "NUM23", "NUM24", "NUM25", "NUM26", "NUM27", "NUM28", "NUM29", "NUM30", "NUM31", "NUM32", "NUM33", "NUM34", "NUM35", "NUM36", "NUM37", "NUM38", "NUM39", "NUM40", "NUM41", "NUM42", "NUM43", "NUM44", "NUM45", "NUM46", "NUM47", "NUM48", "NUM49", 0 /**/ 3474#define SIG_NUM 0, 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, 0 /**/ 3475#define SIG_SIZE 50 /**/ 3476 3477/* SITEARCH: 3478 * This symbol contains the name of the private library for this package. 3479 * The library is private in the sense that it needn't be in anyone's 3480 * execution path, but it should be accessible by the world. The program 3481 * should be prepared to do ~ expansion. 3482 * The standard distribution will put nothing in this directory. 3483 * After perl has been installed, users may install their own local 3484 * architecture-dependent modules in this directory with 3485 * MakeMaker Makefile.PL 3486 * or equivalent. See INSTALL for details. 3487 */ 3488/* SITEARCH_EXP: 3489 * This symbol contains the ~name expanded version of SITEARCH, to be used 3490 * in programs that are not prepared to deal with ~ expansion at run-time. 3491 */ 3492#define SITEARCH_EXP "/_P9P_OBJTYPE/lib/perl/_P9P_VERSION/site_perl" /* */ 3493#define SITEARCH "/_P9P_OBJTYPE/lib/perl/_P9P_VERSION/site_perl" /* */ 3494 3495 3496/* SITELIB: 3497 * This symbol contains the name of the private library for this package. 3498 * The library is private in the sense that it needn't be in anyone's 3499 * execution path, but it should be accessible by the world. The program 3500 * should be prepared to do ~ expansion. 3501 * The standard distribution will put nothing in this directory. 3502 * After perl has been installed, users may install their own local 3503 * architecture-independent modules in this directory with 3504 * MakeMaker Makefile.PL 3505 * or equivalent. See INSTALL for details. 3506 */ 3507/* SITELIB_EXP: 3508 * This symbol contains the ~name expanded version of SITELIB, to be used 3509 * in programs that are not prepared to deal with ~ expansion at run-time. 3510 */ 3511/* SITELIB_STEM: 3512 * This define is SITELIB_EXP with any trailing version-specific component 3513 * removed. The elements in inc_version_list (inc_version_list.U) can 3514 * be tacked onto this variable to generate a list of directories to search. 3515 */ 3516#define SITELIB "/sys/lib/perl/5.16.3/site_perl" /**/ 3517#define SITELIB_EXP "/sys/lib/perl/5.16.3/site_perl" /**/ 3518#define SITELIB_STEM "/sys/lib/perl/5.16.3/site_perl" /**/ 3519 3520/* Size_t_size: 3521 * This symbol holds the size of a Size_t in bytes. 3522 */ 3523#define Size_t_size 4 /* */ 3524 3525/* Size_t: 3526 * This symbol holds the type used to declare length parameters 3527 * for string functions. It is usually size_t, but may be 3528 * unsigned long, int, etc. It may be necessary to include 3529 * <sys/types.h> to get any typedef'ed information. 3530 */ 3531#define Size_t size_t /* length parameter for string functions */ 3532 3533/* Sock_size_t: 3534 * This symbol holds the type used for the size argument of 3535 * various socket calls (just the base type, not the pointer-to). 3536 */ 3537#define Sock_size_t int /**/ 3538 3539/* SSize_t: 3540 * This symbol holds the type used by functions that return 3541 * a count of bytes or an error condition. It must be a signed type. 3542 * It is usually ssize_t, but may be long or int, etc. 3543 * It may be necessary to include <sys/types.h> or <unistd.h> 3544 * to get any typedef'ed information. 3545 * We will pick a type such that sizeof(SSize_t) == sizeof(Size_t). 3546 */ 3547#define SSize_t ssize_t /* signed count of bytes */ 3548 3549/* STARTPERL: 3550 * This variable contains the string to put in front of a perl 3551 * script to make sure (one hopes) that it runs with perl and not 3552 * some shell. 3553 */ 3554#define STARTPERL "#!/bin/perl" /**/ 3555 3556/* STDCHAR: 3557 * This symbol is defined to be the type of char used in stdio.h. 3558 * It has the values "unsigned char" or "char". 3559 */ 3560#define STDCHAR char /**/ 3561 3562/* HAS_STDIO_STREAM_ARRAY: 3563 * This symbol, if defined, tells that there is an array 3564 * holding the stdio streams. 3565 */ 3566/* STDIO_STREAM_ARRAY: 3567 * This symbol tells the name of the array holding the stdio streams. 3568 * Usual values include _iob, __iob, and __sF. 3569 */ 3570/*#define HAS_STDIO_STREAM_ARRAY / **/ 3571#define STDIO_STREAM_ARRAY 3572 3573/* Uid_t_f: 3574 * This symbol defines the format string used for printing a Uid_t. 3575 */ 3576#define Uid_t_f "hd" /**/ 3577 3578/* Uid_t_sign: 3579 * This symbol holds the signedess of a Uid_t. 3580 * 1 for unsigned, -1 for signed. 3581 */ 3582#define Uid_t_sign -1 /* UID sign */ 3583 3584/* Uid_t_size: 3585 * This symbol holds the size of a Uid_t in bytes. 3586 */ 3587#define Uid_t_size 2 /* UID size */ 3588 3589/* Uid_t: 3590 * This symbol holds the type used to declare user ids in the kernel. 3591 * It can be int, ushort, uid_t, etc... It may be necessary to include 3592 * <sys/types.h> to get any typedef'ed information. 3593 */ 3594#define Uid_t uid_t /* UID type */ 3595 3596/* USE_64_BIT_INT: 3597 * This symbol, if defined, indicates that 64-bit integers should 3598 * be used when available. If not defined, the native integers 3599 * will be employed (be they 32 or 64 bits). The minimal possible 3600 * 64-bitness is used, just enough to get 64-bit integers into Perl. 3601 * This may mean using for example "long longs", while your memory 3602 * may still be limited to 2 gigabytes. 3603 */ 3604/* USE_64_BIT_ALL: 3605 * This symbol, if defined, indicates that 64-bit integers should 3606 * be used when available. If not defined, the native integers 3607 * will be used (be they 32 or 64 bits). The maximal possible 3608 * 64-bitness is employed: LP64 or ILP64, meaning that you will 3609 * be able to use more than 2 gigabytes of memory. This mode is 3610 * even more binary incompatible than USE_64_BIT_INT. You may not 3611 * be able to run the resulting executable in a 32-bit CPU at all or 3612 * you may need at least to reboot your OS to 64-bit mode. 3613 */ 3614#ifndef USE_64_BIT_INT 3615/*#define USE_64_BIT_INT / **/ 3616#endif 3617 3618#ifndef USE_64_BIT_ALL 3619/*#define USE_64_BIT_ALL / **/ 3620#endif 3621 3622/* USE_FAST_STDIO: 3623 * This symbol, if defined, indicates that Perl should 3624 * be built to use 'fast stdio'. 3625 * Defaults to define in Perls 5.8 and earlier, to undef later. 3626 */ 3627#ifndef USE_FAST_STDIO 3628/*#define USE_FAST_STDIO / **/ 3629#endif 3630 3631/* USE_LARGE_FILES: 3632 * This symbol, if defined, indicates that large file support 3633 * should be used when available. 3634 */ 3635#ifndef USE_LARGE_FILES 3636#define USE_LARGE_FILES /**/ 3637#endif 3638 3639/* USE_LONG_DOUBLE: 3640 * This symbol, if defined, indicates that long doubles should 3641 * be used when available. 3642 */ 3643#ifndef USE_LONG_DOUBLE 3644/*#define USE_LONG_DOUBLE / **/ 3645#endif 3646 3647/* USE_MORE_BITS: 3648 * This symbol, if defined, indicates that 64-bit interfaces and 3649 * long doubles should be used when available. 3650 */ 3651#ifndef USE_MORE_BITS 3652/*#define USE_MORE_BITS / **/ 3653#endif 3654 3655/* MULTIPLICITY: 3656 * This symbol, if defined, indicates that Perl should 3657 * be built to use multiplicity. 3658 */ 3659#ifndef MULTIPLICITY 3660/*#define MULTIPLICITY / **/ 3661#endif 3662 3663/* USE_PERLIO: 3664 * This symbol, if defined, indicates that the PerlIO abstraction should 3665 * be used throughout. If not defined, stdio should be 3666 * used in a fully backward compatible manner. 3667 */ 3668#ifndef USE_PERLIO 3669#define USE_PERLIO /**/ 3670#endif 3671 3672/* USE_SOCKS: 3673 * This symbol, if defined, indicates that Perl should 3674 * be built to use socks. 3675 */ 3676#ifndef USE_SOCKS 3677/*#define USE_SOCKS / **/ 3678#endif 3679 3680/* USE_ITHREADS: 3681 * This symbol, if defined, indicates that Perl should be built to 3682 * use the interpreter-based threading implementation. 3683 */ 3684/* USE_5005THREADS: 3685 * This symbol, if defined, indicates that Perl should be built to 3686 * use the 5.005-based threading implementation. 3687 */ 3688/* OLD_PTHREADS_API: 3689 * This symbol, if defined, indicates that Perl should 3690 * be built to use the old draft POSIX threads API. 3691 */ 3692/* USE_REENTRANT_API: 3693 * This symbol, if defined, indicates that Perl should 3694 * try to use the various _r versions of library functions. 3695 * This is extremely experimental. 3696 */ 3697/*#define USE_5005THREADS / **/ 3698/*#define USE_ITHREADS / **/ 3699#if defined(USE_5005THREADS) && !defined(USE_ITHREADS) 3700#define USE_THREADS /* until src is revised*/ 3701#endif 3702/*#define OLD_PTHREADS_API / **/ 3703/*#define USE_REENTRANT_API / **/ 3704 3705/* PERL_VENDORARCH: 3706 * If defined, this symbol contains the name of a private library. 3707 * The library is private in the sense that it needn't be in anyone's 3708 * execution path, but it should be accessible by the world. 3709 * It may have a ~ on the front. 3710 * The standard distribution will put nothing in this directory. 3711 * Vendors who distribute perl may wish to place their own 3712 * architecture-dependent modules and extensions in this directory with 3713 * MakeMaker Makefile.PL INSTALLDIRS=vendor 3714 * or equivalent. See INSTALL for details. 3715 */ 3716/* PERL_VENDORARCH_EXP: 3717 * This symbol contains the ~name expanded version of PERL_VENDORARCH, to be used 3718 * in programs that are not prepared to deal with ~ expansion at run-time. 3719 */ 3720/*#define PERL_VENDORARCH "" / **/ 3721/*#define PERL_VENDORARCH_EXP "" / **/ 3722 3723/* PERL_VENDORLIB_EXP: 3724 * This symbol contains the ~name expanded version of VENDORLIB, to be used 3725 * in programs that are not prepared to deal with ~ expansion at run-time. 3726 */ 3727/* PERL_VENDORLIB_STEM: 3728 * This define is PERL_VENDORLIB_EXP with any trailing version-specific component 3729 * removed. The elements in inc_version_list (inc_version_list.U) can 3730 * be tacked onto this variable to generate a list of directories to search. 3731 */ 3732/*#define PERL_VENDORLIB_EXP "" / **/ 3733/*#define PERL_VENDORLIB_STEM "" / **/ 3734 3735/* VOIDFLAGS: 3736 * This symbol indicates how much support of the void type is given by this 3737 * compiler. What various bits mean: 3738 * 3739 * 1 = supports declaration of void 3740 * 2 = supports arrays of pointers to functions returning void 3741 * 4 = supports comparisons between pointers to void functions and 3742 * addresses of void functions 3743 * 8 = supports declaration of generic void pointers 3744 * 3745 * The package designer should define VOIDUSED to indicate the requirements 3746 * of the package. This can be done either by #defining VOIDUSED before 3747 * including config.h, or by defining defvoidused in Myinit.U. If the 3748 * latter approach is taken, only those flags will be tested. If the 3749 * level of void support necessary is not present, defines void to int. 3750 */ 3751#ifndef VOIDUSED 3752#define VOIDUSED 15 3753#endif 3754#define VOIDFLAGS 15 3755#if (VOIDFLAGS & VOIDUSED) != VOIDUSED 3756#define void int /* is void to be avoided? */ 3757#define M_VOID /* Xenix strikes again */ 3758#endif 3759 3760/* HAS_CRYPT: 3761 * This symbol, if defined, indicates that the crypt routine is available 3762 * to encrypt passwords and the like. 3763 */ 3764/*#define HAS_CRYPT / **/ 3765 3766/* SETUID_SCRIPTS_ARE_SECURE_NOW: 3767 * This symbol, if defined, indicates that the bug that prevents 3768 * setuid scripts from being secure is not present in this kernel. 3769 */ 3770/* DOSUID: 3771 * This symbol, if defined, indicates that the C program should 3772 * check the script that it is executing for setuid/setgid bits, and 3773 * attempt to emulate setuid/setgid on systems that have disabled 3774 * setuid #! scripts because the kernel can't do it securely. 3775 * It is up to the package designer to make sure that this emulation 3776 * is done securely. Among other things, it should do an fstat on 3777 * the script it just opened to make sure it really is a setuid/setgid 3778 * script, it should make sure the arguments passed correspond exactly 3779 * to the argument on the #! line, and it should not trust any 3780 * subprocesses to which it must pass the filename rather than the 3781 * file descriptor of the script to be executed. 3782 */ 3783/*#define SETUID_SCRIPTS_ARE_SECURE_NOW / **/ 3784/*#define DOSUID / **/ 3785 3786/* Shmat_t: 3787 * This symbol holds the return type of the shmat() system call. 3788 * Usually set to 'void *' or 'char *'. 3789 */ 3790/* HAS_SHMAT_PROTOTYPE: 3791 * This symbol, if defined, indicates that the sys/shm.h includes 3792 * a prototype for shmat(). Otherwise, it is up to the program to 3793 * guess one. Shmat_t shmat(int, Shmat_t, int) is a good guess, 3794 * but not always right so it should be emitted by the program only 3795 * when HAS_SHMAT_PROTOTYPE is not defined to avoid conflicting defs. 3796 */ 3797#define Shmat_t /* config-skip */ 3798/*#define HAS_SHMAT_PROTOTYPE / **/ 3799 3800/* I_NDBM: 3801 * This symbol, if defined, indicates that <ndbm.h> exists and should 3802 * be included. 3803 */ 3804/*#define I_NDBM / **/ 3805 3806/* I_STDARG: 3807 * This symbol, if defined, indicates that <stdarg.h> exists and should 3808 * be included. 3809 */ 3810/* I_VARARGS: 3811 * This symbol, if defined, indicates to the C program that it should 3812 * include <varargs.h>. 3813 */ 3814#define I_STDARG /**/ 3815/*#define I_VARARGS / **/ 3816 3817/* CAN_PROTOTYPE: 3818 * If defined, this macro indicates that the C compiler can handle 3819 * function prototypes. 3820 */ 3821/* _: 3822 * This macro is used to declare function parameters for folks who want 3823 * to make declarations with prototypes using a different style than 3824 * the above macros. Use double parentheses. For example: 3825 * 3826 * int main _((int argc, char *argv[])); 3827 */ 3828#define CAN_PROTOTYPE /**/ 3829#ifdef CAN_PROTOTYPE 3830#define _(args) args 3831#else 3832#define _(args) () 3833#endif 3834 3835/* SH_PATH: 3836 * This symbol contains the full pathname to the shell used on this 3837 * on this system to execute Bourne shell scripts. Usually, this will be 3838 * /bin/sh, though it's possible that some systems will have /bin/ksh, 3839 * /bin/pdksh, /bin/ash, /bin/bash, or even something such as 3840 * D:/bin/sh.exe. 3841 */ 3842#define SH_PATH "/bin/sh" /* config-skip */ 3843 3844/* USE_CROSS_COMPILE: 3845 * This symbol, if defined, indicates that Perl is being cross-compiled. 3846 */ 3847/* PERL_TARGETARCH: 3848 * This symbol, if defined, indicates the target architecture 3849 * Perl has been cross-compiled to. Undefined if not a cross-compile. 3850 */ 3851#ifndef USE_CROSS_COMPILE 3852/*#define USE_CROSS_COMPILE / **/ 3853#define PERL_TARGETARCH "" /**/ 3854#endif 3855 3856/* HAS_COPYSIGNL: 3857 * This symbol, if defined, indicates that the copysignl routine is 3858 * available. If aintl is also present we can emulate modfl. 3859 */ 3860/*#define HAS_COPYSIGNL /**/ 3861 3862/* USE_CPLUSPLUS: 3863 * This symbol, if defined, indicates that a C++ compiler was 3864 * used to compiled Perl and will be used to compile extensions. 3865 */ 3866/*#define USE_CPLUSPLUS /**/ 3867 3868/* HAS_DBMINIT_PROTO: 3869 * This symbol, if defined, indicates that the system provides 3870 * a prototype for the dbminit() function. Otherwise, it is up 3871 * to the program to supply one. A good guess is 3872 * extern int dbminit(char *); 3873 */ 3874/*#define HAS_DBMINIT_PROTO / **/ 3875 3876/* HAS_DIRFD: 3877 * This manifest constant lets the C program know that dirfd 3878 * is available. 3879 */ 3880/*#define HAS_DIRFD / **/ 3881 3882/* HAS_FLOCK_PROTO: 3883 * This symbol, if defined, indicates that the system provides 3884 * a prototype for the flock() function. Otherwise, it is up 3885 * to the program to supply one. A good guess is 3886 * extern int flock(int, int); 3887 */ 3888/*#define HAS_FLOCK_PROTO / **/ 3889 3890/* HAS_FPCLASSL: 3891 * This symbol, if defined, indicates that the fpclassl routine is 3892 * available to classify long doubles. Available for example in IRIX. 3893 * The returned values are defined in <ieeefp.h> and are: 3894 * 3895 * FP_SNAN signaling NaN 3896 * FP_QNAN quiet NaN 3897 * FP_NINF negative infinity 3898 * FP_PINF positive infinity 3899 * FP_NDENORM negative denormalized non-zero 3900 * FP_PDENORM positive denormalized non-zero 3901 * FP_NZERO negative zero 3902 * FP_PZERO positive zero 3903 * FP_NNORM negative normalized non-zero 3904 * FP_PNORM positive normalized non-zero 3905 */ 3906/*#define HAS_FPCLASSL / **/ 3907 3908/* HAS_NL_LANGINFO: 3909 * This symbol, if defined, indicates that the nl_langinfo routine is 3910 * available to return local data. You will also need <langinfo.h> 3911 * and therefore I_LANGINFO. 3912 */ 3913/*#define HAS_NL_LANGINFO / **/ 3914 3915/* HAS_PROCSELFEXE: 3916 * This symbol is defined if PROCSELFEXE_PATH is a symlink 3917 * to the absolute pathname of the executing program. 3918 */ 3919/* PROCSELFEXE_PATH: 3920 * If HAS_PROCSELFEXE is defined this symbol is the filename 3921 * of the symbolic link pointing to the absolute pathname of 3922 * the executing program. 3923 */ 3924/*#define HAS_PROCSELFEXE / **/ 3925#if defined(HAS_PROCSELFEXE) && !defined(PROCSELFEXE_PATH) 3926#define PROCSELFEXE_PATH /**/ 3927#endif 3928 3929/* HAS_PTHREAD_ATTR_SETSCOPE: 3930 * This symbol, if defined, indicates that the pthread_attr_setscope 3931 * system call is available to set the contention scope attribute of 3932 * a thread attribute object. 3933 */ 3934/*#define HAS_PTHREAD_ATTR_SETSCOPE / **/ 3935 3936/* HAS_SIGPROCMASK: 3937 * This symbol, if defined, indicates that the sigprocmask 3938 * system call is available to examine or change the signal mask 3939 * of the calling process. 3940 */ 3941#define HAS_SIGPROCMASK /**/ 3942 3943/* HAS_SOCKATMARK: 3944 * This symbol, if defined, indicates that the sockatmark routine is 3945 * available to test whether a socket is at the out-of-band mark. 3946 */ 3947/*#define HAS_SOCKATMARK / **/ 3948 3949/* HAS_SOCKATMARK_PROTO: 3950 * This symbol, if defined, indicates that the system provides 3951 * a prototype for the sockatmark() function. Otherwise, it is up 3952 * to the program to supply one. A good guess is 3953 * extern int sockatmark(int); 3954 */ 3955/*#define HAS_SOCKATMARK_PROTO / **/ 3956 3957/* HAS_SETRESGID_PROTO: 3958 * This symbol, if defined, indicates that the system provides 3959 * a prototype for the setresgid() function. Otherwise, it is up 3960 * to the program to supply one. Good guesses are 3961 * extern int setresgid(uid_t ruid, uid_t euid, uid_t suid); 3962 */ 3963/*#define HAS_SETRESGID_PROTO / **/ 3964 3965/* HAS_SETRESUID_PROTO: 3966 * This symbol, if defined, indicates that the system provides 3967 * a prototype for the setresuid() function. Otherwise, it is up 3968 * to the program to supply one. Good guesses are 3969 * extern int setresuid(uid_t ruid, uid_t euid, uid_t suid); 3970 */ 3971/*#define HAS_SETRESUID_PROTO / **/ 3972 3973/* HAS_STRFTIME: 3974 * This symbol, if defined, indicates that the strftime routine is 3975 * available to do time formatting. 3976 */ 3977#define HAS_STRFTIME /**/ 3978 3979/* HAS_SYSCALL_PROTO: 3980 * This symbol, if defined, indicates that the system provides 3981 * a prototype for the syscall() function. Otherwise, it is up 3982 * to the program to supply one. Good guesses are 3983 * extern int syscall(int, ...); 3984 * extern int syscall(long, ...); 3985 */ 3986/*#define HAS_SYSCALL_PROTO / **/ 3987 3988/* U32_ALIGNMENT_REQUIRED: 3989 * This symbol, if defined, indicates that you must access 3990 * character data through U32-aligned pointers. 3991 */ 3992#ifndef U32_ALIGNMENT_REQUIRED 3993#define U32_ALIGNMENT_REQUIRED /**/ 3994#endif 3995 3996/* HAS_USLEEP_PROTO: 3997 * This symbol, if defined, indicates that the system provides 3998 * a prototype for the usleep() function. Otherwise, it is up 3999 * to the program to supply one. A good guess is 4000 * extern int usleep(useconds_t); 4001 */ 4002/*#define HAS_USLEEP_PROTO / **/ 4003 4004/* I_CRYPT: 4005 * This symbol, if defined, indicates that <crypt.h> exists and 4006 * should be included. 4007 */ 4008/*#define I_CRYPT / **/ 4009 4010/* I_FP: 4011 * This symbol, if defined, indicates that <fp.h> exists and 4012 * should be included. 4013 */ 4014/*#define I_FP / **/ 4015 4016/* I_LANGINFO: 4017 * This symbol, if defined, indicates that <langinfo.h> exists and 4018 * should be included. 4019 */ 4020/*#define I_LANGINFO / **/ 4021 4022/* HAS_CTERMID_R: 4023 * This symbol, if defined, indicates that the ctermid_r routine 4024 * is available to ctermid re-entrantly. 4025 */ 4026/* CTERMID_R_PROTO: 4027 * This symbol encodes the prototype of ctermid_r. 4028 * It is zero if d_ctermid_r is undef, and one of the 4029 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_ctermid_r 4030 * is defined. 4031 */ 4032/*#define HAS_CTERMID_R / **/ 4033#define CTERMID_R_PROTO 0 /**/ 4034 4035/* HAS_ENDHOSTENT_R: 4036 * This symbol, if defined, indicates that the endhostent_r routine 4037 * is available to endhostent re-entrantly. 4038 */ 4039/* ENDHOSTENT_R_PROTO: 4040 * This symbol encodes the prototype of endhostent_r. 4041 * It is zero if d_endhostent_r is undef, and one of the 4042 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_endhostent_r 4043 * is defined. 4044 */ 4045/*#define HAS_ENDHOSTENT_R / **/ 4046#define ENDHOSTENT_R_PROTO 0 /**/ 4047 4048/* HAS_ENDNETENT_R: 4049 * This symbol, if defined, indicates that the endnetent_r routine 4050 * is available to endnetent re-entrantly. 4051 */ 4052/* ENDNETENT_R_PROTO: 4053 * This symbol encodes the prototype of endnetent_r. 4054 * It is zero if d_endnetent_r is undef, and one of the 4055 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_endnetent_r 4056 * is defined. 4057 */ 4058/*#define HAS_ENDNETENT_R / **/ 4059#define ENDNETENT_R_PROTO 0 /**/ 4060 4061/* HAS_ENDPROTOENT_R: 4062 * This symbol, if defined, indicates that the endprotoent_r routine 4063 * is available to endprotoent re-entrantly. 4064 */ 4065/* ENDPROTOENT_R_PROTO: 4066 * This symbol encodes the prototype of endprotoent_r. 4067 * It is zero if d_endprotoent_r is undef, and one of the 4068 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_endprotoent_r 4069 * is defined. 4070 */ 4071/*#define HAS_ENDPROTOENT_R / **/ 4072#define ENDPROTOENT_R_PROTO 0 /**/ 4073 4074/* HAS_ENDSERVENT_R: 4075 * This symbol, if defined, indicates that the endservent_r routine 4076 * is available to endservent re-entrantly. 4077 */ 4078/* ENDSERVENT_R_PROTO: 4079 * This symbol encodes the prototype of endservent_r. 4080 * It is zero if d_endservent_r is undef, and one of the 4081 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_endservent_r 4082 * is defined. 4083 */ 4084/*#define HAS_ENDSERVENT_R / **/ 4085#define ENDSERVENT_R_PROTO 0 /**/ 4086 4087/* HAS_GETHOSTBYADDR_R: 4088 * This symbol, if defined, indicates that the gethostbyaddr_r routine 4089 * is available to gethostbyaddr re-entrantly. 4090 */ 4091/* GETHOSTBYADDR_R_PROTO: 4092 * This symbol encodes the prototype of gethostbyaddr_r. 4093 * It is zero if d_gethostbyaddr_r is undef, and one of the 4094 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_gethostbyaddr_r 4095 * is defined. 4096 */ 4097/*#define HAS_GETHOSTBYADDR_R / **/ 4098#define GETHOSTBYADDR_R_PROTO 0 /**/ 4099 4100/* HAS_GETHOSTBYNAME_R: 4101 * This symbol, if defined, indicates that the gethostbyname_r routine 4102 * is available to gethostbyname re-entrantly. 4103 */ 4104/* GETHOSTBYNAME_R_PROTO: 4105 * This symbol encodes the prototype of gethostbyname_r. 4106 * It is zero if d_gethostbyname_r is undef, and one of the 4107 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_gethostbyname_r 4108 * is defined. 4109 */ 4110/*#define HAS_GETHOSTBYNAME_R / **/ 4111#define GETHOSTBYNAME_R_PROTO 0 /**/ 4112 4113/* HAS_GETHOSTENT_R: 4114 * This symbol, if defined, indicates that the gethostent_r routine 4115 * is available to gethostent re-entrantly. 4116 */ 4117/* GETHOSTENT_R_PROTO: 4118 * This symbol encodes the prototype of gethostent_r. 4119 * It is zero if d_gethostent_r is undef, and one of the 4120 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_gethostent_r 4121 * is defined. 4122 */ 4123/*#define HAS_GETHOSTENT_R /* config-skip */ 4124#define GETHOSTENT_R_PROTO 0 /**/ 4125 4126/* HAS_GETNETBYADDR_R: 4127 * This symbol, if defined, indicates that the getnetbyaddr_r routine 4128 * is available to getnetbyaddr re-entrantly. 4129 */ 4130/* GETNETBYADDR_R_PROTO: 4131 * This symbol encodes the prototype of getnetbyaddr_r. 4132 * It is zero if d_getnetbyaddr_r is undef, and one of the 4133 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getnetbyaddr_r 4134 * is defined. 4135 */ 4136/*#define HAS_GETNETBYADDR_R / **/ 4137#define GETNETBYADDR_R_PROTO 0 /**/ 4138 4139/* HAS_GETNETBYNAME_R: 4140 * This symbol, if defined, indicates that the getnetbyname_r routine 4141 * is available to getnetbyname re-entrantly. 4142 */ 4143/* GETNETBYNAME_R_PROTO: 4144 * This symbol encodes the prototype of getnetbyname_r. 4145 * It is zero if d_getnetbyname_r is undef, and one of the 4146 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getnetbyname_r 4147 * is defined. 4148 */ 4149/*#define HAS_GETNETBYNAME_R / **/ 4150#define GETNETBYNAME_R_PROTO 0 /**/ 4151 4152/* HAS_GETNETENT_R: 4153 * This symbol, if defined, indicates that the getnetent_r routine 4154 * is available to getnetent re-entrantly. 4155 */ 4156/* GETNETENT_R_PROTO: 4157 * This symbol encodes the prototype of getnetent_r. 4158 * It is zero if d_getnetent_r is undef, and one of the 4159 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getnetent_r 4160 * is defined. 4161 */ 4162/*#define HAS_GETNETENT_R / **/ 4163#define GETNETENT_R_PROTO 0 /**/ 4164 4165/* HAS_GETPROTOBYNAME_R: 4166 * This symbol, if defined, indicates that the getprotobyname_r routine 4167 * is available to getprotobyname re-entrantly. 4168 */ 4169/* GETPROTOBYNAME_R_PROTO: 4170 * This symbol encodes the prototype of getprotobyname_r. 4171 * It is zero if d_getprotobyname_r is undef, and one of the 4172 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getprotobyname_r 4173 * is defined. 4174 */ 4175/*#define HAS_GETPROTOBYNAME_R / **/ 4176#define GETPROTOBYNAME_R_PROTO 0 /**/ 4177 4178/* HAS_GETPROTOBYNUMBER_R: 4179 * This symbol, if defined, indicates that the getprotobynumber_r routine 4180 * is available to getprotobynumber re-entrantly. 4181 */ 4182/* GETPROTOBYNUMBER_R_PROTO: 4183 * This symbol encodes the prototype of getprotobynumber_r. 4184 * It is zero if d_getprotobynumber_r is undef, and one of the 4185 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getprotobynumber_r 4186 * is defined. 4187 */ 4188/*#define HAS_GETPROTOBYNUMBER_R / **/ 4189#define GETPROTOBYNUMBER_R_PROTO 0 /**/ 4190 4191/* HAS_GETPROTOENT_R: 4192 * This symbol, if defined, indicates that the getprotoent_r routine 4193 * is available to getprotoent re-entrantly. 4194 */ 4195/* GETPROTOENT_R_PROTO: 4196 * This symbol encodes the prototype of getprotoent_r. 4197 * It is zero if d_getprotoent_r is undef, and one of the 4198 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getprotoent_r 4199 * is defined. 4200 */ 4201/*#define HAS_GETPROTOENT_R / **/ 4202#define GETPROTOENT_R_PROTO 0 /**/ 4203 4204/* HAS_GETSERVBYNAME_R: 4205 * This symbol, if defined, indicates that the getservbyname_r routine 4206 * is available to getservbyname re-entrantly. 4207 */ 4208/* GETSERVBYNAME_R_PROTO: 4209 * This symbol encodes the prototype of getservbyname_r. 4210 * It is zero if d_getservbyname_r is undef, and one of the 4211 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getservbyname_r 4212 * is defined. 4213 */ 4214/*#define HAS_GETSERVBYNAME_R / **/ 4215#define GETSERVBYNAME_R_PROTO 0 /**/ 4216 4217/* HAS_GETSERVBYPORT_R: 4218 * This symbol, if defined, indicates that the getservbyport_r routine 4219 * is available to getservbyport re-entrantly. 4220 */ 4221/* GETSERVBYPORT_R_PROTO: 4222 * This symbol encodes the prototype of getservbyport_r. 4223 * It is zero if d_getservbyport_r is undef, and one of the 4224 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getservbyport_r 4225 * is defined. 4226 */ 4227/*#define HAS_GETSERVBYPORT_R / **/ 4228#define GETSERVBYPORT_R_PROTO 0 /**/ 4229 4230/* HAS_GETSERVENT_R: 4231 * This symbol, if defined, indicates that the getservent_r routine 4232 * is available to getservent re-entrantly. 4233 */ 4234/* GETSERVENT_R_PROTO: 4235 * This symbol encodes the prototype of getservent_r. 4236 * It is zero if d_getservent_r is undef, and one of the 4237 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getservent_r 4238 * is defined. 4239 */ 4240/*#define HAS_GETSERVENT_R / **/ 4241#define GETSERVENT_R_PROTO 0 /**/ 4242 4243/* HAS_PTHREAD_ATFORK: 4244 * This symbol, if defined, indicates that the pthread_atfork routine 4245 * is available to setup fork handlers. 4246 */ 4247/*#define HAS_PTHREAD_ATFORK / **/ 4248 4249/* HAS_READDIR64_R: 4250 * This symbol, if defined, indicates that the readdir64_r routine 4251 * is available to readdir64 re-entrantly. 4252 */ 4253/* READDIR64_R_PROTO: 4254 * This symbol encodes the prototype of readdir64_r. 4255 * It is zero if d_readdir64_r is undef, and one of the 4256 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_readdir64_r 4257 * is defined. 4258 */ 4259/*#define HAS_READDIR64_R / **/ 4260#define READDIR64_R_PROTO 0 /**/ 4261 4262/* HAS_SETHOSTENT_R: 4263 * This symbol, if defined, indicates that the sethostent_r routine 4264 * is available to sethostent re-entrantly. 4265 */ 4266/* SETHOSTENT_R_PROTO: 4267 * This symbol encodes the prototype of sethostent_r. 4268 * It is zero if d_sethostent_r is undef, and one of the 4269 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_sethostent_r 4270 * is defined. 4271 */ 4272/*#define HAS_SETHOSTENT_R / **/ 4273#define SETHOSTENT_R_PROTO 0 /**/ 4274 4275/* HAS_SETLOCALE_R: 4276 * This symbol, if defined, indicates that the setlocale_r routine 4277 * is available to setlocale re-entrantly. 4278 */ 4279/* SETLOCALE_R_PROTO: 4280 * This symbol encodes the prototype of setlocale_r. 4281 * It is zero if d_setlocale_r is undef, and one of the 4282 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_setlocale_r 4283 * is defined. 4284 */ 4285/*#define HAS_SETLOCALE_R / **/ 4286#define SETLOCALE_R_PROTO 0 /**/ 4287 4288/* HAS_SETNETENT_R: 4289 * This symbol, if defined, indicates that the setnetent_r routine 4290 * is available to setnetent re-entrantly. 4291 */ 4292/* SETNETENT_R_PROTO: 4293 * This symbol encodes the prototype of setnetent_r. 4294 * It is zero if d_setnetent_r is undef, and one of the 4295 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_setnetent_r 4296 * is defined. 4297 */ 4298/*#define HAS_SETNETENT_R / **/ 4299#define SETNETENT_R_PROTO 0 /**/ 4300 4301/* HAS_SETPROTOENT_R: 4302 * This symbol, if defined, indicates that the setprotoent_r routine 4303 * is available to setprotoent re-entrantly. 4304 */ 4305/* SETPROTOENT_R_PROTO: 4306 * This symbol encodes the prototype of setprotoent_r. 4307 * It is zero if d_setprotoent_r is undef, and one of the 4308 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_setprotoent_r 4309 * is defined. 4310 */ 4311/*#define HAS_SETPROTOENT_R / **/ 4312#define SETPROTOENT_R_PROTO 0 /**/ 4313 4314/* HAS_SETSERVENT_R: 4315 * This symbol, if defined, indicates that the setservent_r routine 4316 * is available to setservent re-entrantly. 4317 */ 4318/* SETSERVENT_R_PROTO: 4319 * This symbol encodes the prototype of setservent_r. 4320 * It is zero if d_setservent_r is undef, and one of the 4321 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_setservent_r 4322 * is defined. 4323 */ 4324/*#define HAS_SETSERVENT_R / **/ 4325#define SETSERVENT_R_PROTO 0 /**/ 4326 4327/* HAS_TTYNAME_R: 4328 * This symbol, if defined, indicates that the ttyname_r routine 4329 * is available to ttyname re-entrantly. 4330 */ 4331/* TTYNAME_R_PROTO: 4332 * This symbol encodes the prototype of ttyname_r. 4333 * It is zero if d_ttyname_r is undef, and one of the 4334 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_ttyname_r 4335 * is defined. 4336 */ 4337/*#define HAS_TTYNAME_R / **/ 4338#define TTYNAME_R_PROTO 0 /**/ 4339 4340#endif 4341