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