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