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