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