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