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