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