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