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