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