perl5.001 patch.1c
[p5sagit/p5-mst-13.2.git] / 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.3 1995/01/30 14:25:39 ram Exp $
15  */
16
17 /* Configuration time: Wed Apr  5 14:50:33 EDT 1995
18  * Configured by: andy
19  * Target system: crystal crystal 3.2 2 i386 
20  */
21
22 #ifndef _config_h_
23 #define _config_h_
24
25 /* MEM_ALIGNBYTES:
26  *      This symbol contains the number of bytes required to align a
27  *      double. Usual values are 2, 4 and 8.
28  */
29 #define MEM_ALIGNBYTES 4        /**/
30
31 /* ARCHLIB_EXP:
32  *      This symbol contains the ~name expanded version of ARCHLIB, to be used
33  *      in programs that are not prepared to deal with ~ expansion at run-time.
34  */
35 #define ARCHLIB_EXP "/usr/local/lib/perl5/i386-isc"             /**/
36
37 /* BIN:
38  *      This symbol holds the path of the bin directory where the package will
39  *      be installed. Program must be prepared to deal with ~name substitution.
40  */
41 #define BIN "/usr/local/bin"    /**/
42
43 /* BYTEORDER:
44  *      This symbol hold the hexadecimal constant defined in byteorder,
45  *      i.e. 0x1234 or 0x4321, etc...
46  */
47 #define BYTEORDER 0x1234        /* large digits for MSB */
48
49 /* CAT2:
50  *      This macro catenates 2 tokens together.
51  */
52 /* STRINGIFY:
53  *      This macro surrounds its token with double quotes.
54  */
55 #if 1 == 1
56 #define CAT2(a,b)a/**/b
57 #define CAT3(a,b,c)a/**/b/**/c
58 #define CAT4(a,b,c,d)a/**/b/**/c/**/d
59 #define CAT5(a,b,c,d,e)a/**/b/**/c/**/d/**/e
60 #define STRINGIFY(a)"a"
61                 /* If you can get stringification with catify, tell me how! */
62 #endif
63 #if 1 == 42
64 #define CAT2(a,b)a ## b
65 #define CAT3(a,b,c)a ## b ## c
66 #define CAT4(a,b,c,d)a ## b ## c ## d
67 #define CAT5(a,b,c,d,e)a ## b ## c ## d ## e
68 #define StGiFy(a)# a
69 #define STRINGIFY(a)StGiFy(a)
70 #define SCAT2(a,b)StGiFy(a) StGiFy(b)
71 #define SCAT3(a,b,c)StGiFy(a) StGiFy(b) StGiFy(c)
72 #define SCAT4(a,b,c,d)StGiFy(a) StGiFy(b) StGiFy(c) StGiFy(d)
73 #define SCAT5(a,b,c,d,e)StGiFy(a) StGiFy(b) StGiFy(c) StGiFy(d) StGiFy(e)
74 #endif
75 #ifndef CAT2
76 #include "Bletch: How does this C preprocessor catenate tokens?"
77 #endif
78
79 /* CPPSTDIN:
80  *      This symbol contains the first part of the string which will invoke
81  *      the C preprocessor on the standard input and produce to standard
82  *      output.  Typical value of "cc -E" or "/lib/cpp", but it can also
83  *      call a wrapper. See CPPRUN.
84  */
85 /* CPPMINUS:
86  *      This symbol contains the second part of the string which will invoke
87  *      the C preprocessor on the standard input and produce to standard
88  *      output.  This symbol will have the value "-" if CPPSTDIN needs a minus
89  *      to specify standard input, otherwise the value is "".
90  */
91 #define CPPSTDIN "cc -E"
92 #define CPPMINUS "-"
93
94 /* HAS_ALARM:
95  *      This symbol, if defined, indicates that the alarm routine is
96  *      available.
97  */
98 #define HAS_ALARM               /**/
99
100 /* HASATTRIBUTE:
101  *      This symbol indicates the C compiler can check for function attributes,
102  *      such as printf formats. This is normally only supported by GNU cc.
103  */
104 /*#define HASATTRIBUTE  /**/
105 #ifndef HASATTRIBUTE
106 #define __attribute__(_arg_)
107 #endif
108
109 /* HAS_BCMP:
110  *      This symbol is defined if the bcmp() routine is available to
111  *      compare blocks of memory.
112  */
113 #define HAS_BCMP        /**/
114
115 /* HAS_BCOPY:
116  *      This symbol is defined if the bcopy() routine is available to
117  *      copy blocks of memory.
118  */
119 #define HAS_BCOPY       /**/
120
121 /* HAS_BZERO:
122  *      This symbol is defined if the bzero() routine is available to
123  *      set a memory block to 0.
124  */
125 #define HAS_BZERO       /**/
126
127 /* CASTI32:
128  *      This symbol is defined if the C compiler can cast negative
129  *      or large floating point numbers to 32-bit ints.
130  */
131 /*#define       CASTI32         /**/
132
133 /* CASTNEGFLOAT:
134  *      This symbol is defined if the C compiler can cast negative
135  *      numbers to unsigned longs, ints and shorts.
136  */
137 /* CASTFLAGS:
138  *      This symbol contains flags that say what difficulties the compiler
139  *      has casting odd floating values to unsigned long:
140  *              0 = ok
141  *              1 = couldn't cast < 0
142  *              2 = couldn't cast >= 0x80000000
143  *              4 = couldn't cast in argument expression list
144  */
145 /*#define       CASTNEGFLOAT            /**/
146 #define CASTFLAGS 7             /**/
147
148 /* HAS_CHOWN:
149  *      This symbol, if defined, indicates that the chown routine is
150  *      available.
151  */
152 #define HAS_CHOWN               /**/
153
154 /* HAS_CHROOT:
155  *      This symbol, if defined, indicates that the chroot routine is
156  *      available.
157  */
158 #define HAS_CHROOT              /**/
159
160 /* HAS_CHSIZE:
161  *      This symbol, if defined, indicates that the chsize routine is available
162  *      to truncate files.  You might need a -lx to get this routine.
163  */
164 #define HAS_CHSIZE              /**/
165
166 /* VOID_CLOSEDIR:
167  *      This symbol, if defined, indicates that the closedir() routine
168  *      does not return a value.
169  */
170 /*#define VOID_CLOSEDIR         /**/
171
172 /* HASCONST:
173  *      This symbol, if defined, indicates that this C compiler knows about
174  *      the const type. There is no need to actually test for that symbol
175  *      within your programs. The mere use of the "const" keyword will
176  *      trigger the necessary tests.
177  */
178 /*#define HASCONST      /**/
179 #ifndef HASCONST
180 #define const
181 #endif
182
183 /* HAS_CRYPT:
184  *      This symbol, if defined, indicates that the crypt routine is available
185  *      to encrypt passwords and the like.
186  */
187 #define HAS_CRYPT               /**/
188
189 /* HAS_CUSERID:
190  *      This symbol, if defined, indicates that the cuserid routine is
191  *      available to get character login names.
192  */
193 #define HAS_CUSERID             /**/
194
195 /* HAS_DBL_DIG:
196  *      This symbol, if defined, indicates that this system's <float.h>
197  *      or <limits.h> defines the symbol DBL_DIG, which is the number
198  *      of significant digits in a double precision number.  If this
199  *      symbol is not defined, a guess of 15 is usually pretty good.
200  */
201 #define HAS_DBL_DIG     /* */
202
203 /* HAS_DIFFTIME:
204  *      This symbol, if defined, indicates that the difftime routine is
205  *      available.
206  */
207 #define HAS_DIFFTIME            /**/
208
209 /* HAS_DLERROR:
210  *      This symbol, if defined, indicates that the dlerror routine is
211  *      available to return a string describing the last error that
212  *      occurred from a call to dlopen(), dlclose() or dlsym().
213  */
214 /*#define HAS_DLERROR   /**/
215
216 /* SETUID_SCRIPTS_ARE_SECURE_NOW:
217  *      This symbol, if defined, indicates that the bug that prevents
218  *      setuid scripts from being secure is not present in this kernel.
219  */
220 /* DOSUID:
221  *      This symbol, if defined, indicates that the C program should
222  *      check the script that it is executing for setuid/setgid bits, and
223  *      attempt to emulate setuid/setgid on systems that have disabled
224  *      setuid #! scripts because the kernel can't do it securely.
225  *      It is up to the package designer to make sure that this emulation
226  *      is done securely.  Among other things, it should do an fstat on
227  *      the script it just opened to make sure it really is a setuid/setgid
228  *      script, it should make sure the arguments passed correspond exactly
229  *      to the argument on the #! line, and it should not trust any
230  *      subprocesses to which it must pass the filename rather than the
231  *      file descriptor of the script to be executed.
232  */
233 /*#define SETUID_SCRIPTS_ARE_SECURE_NOW /**/
234 /*#define DOSUID                /**/
235
236 /* HAS_DUP2:
237  *      This symbol, if defined, indicates that the dup2 routine is
238  *      available to duplicate file descriptors.
239  */
240 #define HAS_DUP2        /**/
241
242 /* HAS_FCHMOD:
243  *      This symbol, if defined, indicates that the fchmod routine is available
244  *      to change mode of opened files.  If unavailable, use chmod().
245  */
246 /*#define HAS_FCHMOD            /**/
247
248 /* HAS_FCHOWN:
249  *      This symbol, if defined, indicates that the fchown routine is available
250  *      to change ownership of opened files.  If unavailable, use chown().
251  */
252 /*#define HAS_FCHOWN            /**/
253
254 /* HAS_FCNTL:
255  *      This symbol, if defined, indicates to the C program that
256  *      the fcntl() function exists.
257  */
258 #define HAS_FCNTL               /**/
259
260 /* HAS_FGETPOS:
261  *      This symbol, if defined, indicates that the fgetpos routine is
262  *      available to get the file position indicator, similar to ftell().
263  */
264 /*#define HAS_FGETPOS   /**/
265
266 /* FLEXFILENAMES:
267  *      This symbol, if defined, indicates that the system supports filenames
268  *      longer than 14 characters.
269  */
270 /*#define       FLEXFILENAMES           /**/
271
272 /* HAS_FLOCK:
273  *      This symbol, if defined, indicates that the flock routine is
274  *      available to do file locking.
275  */
276 /*#define HAS_FLOCK             /**/
277
278 /* HAS_FORK:
279  *      This symbol, if defined, indicates that the fork routine is
280  *      available.
281  */
282 #define HAS_FORK                /**/
283
284 /* HAS_FSETPOS:
285  *      This symbol, if defined, indicates that the fsetpos routine is
286  *      available to set the file position indicator, similar to fseek().
287  */
288 /*#define HAS_FSETPOS   /**/
289
290 /* Gconvert:
291  *      This preprocessor macro is defined to convert a floating point
292  *      number to a string without a trailing decimal point.  This
293  *      emulates the behavior of sprintf("%g"), but is sometimes much more
294  *      efficient.  If gconvert() is not available, but gcvt() drops the
295  *      trailing decimal point, then gcvt() is used.  If all else fails,
296  *      a macro using sprintf("%g") is used. Arguments for the Gconvert
297  *      macro are: value, number of digits, whether trailing zeros should
298  *      be retained, and the output buffer.
299  */
300 #define Gconvert(x,n,t,b) sprintf((b),"%.*g",(n),(x))
301
302 /* HAS_GETGROUPS:
303  *      This symbol, if defined, indicates that the getgroups() routine is
304  *      available to get the list of process groups.  If unavailable, multiple
305  *      groups are probably not supported.
306  */
307 #define HAS_GETGROUPS           /**/
308
309 /* HAS_GETHOSTENT:
310  *      This symbol, if defined, indicates that the gethostent routine is
311  *      available to lookup host names in some data base or other.
312  */
313 /*#define HAS_GETHOSTENT                /**/
314
315 /* HAS_UNAME:
316  *      This symbol, if defined, indicates that the C program may use the
317  *      uname() routine to derive the host name.  See also HAS_GETHOSTNAME
318  *      and PHOSTNAME.
319  */
320 #define HAS_UNAME               /**/
321
322 /* HAS_GETLOGIN:
323  *      This symbol, if defined, indicates that the getlogin routine is
324  *      available to get the login name.
325  */
326 #define HAS_GETLOGIN            /**/
327
328 /* HAS_GETPGRP:
329  *      This symbol, if defined, indicates that the getpgrp routine is
330  *      available to get the current process group.
331  */
332 #define HAS_GETPGRP             /**/
333
334 /* HAS_GETPGRP2:
335  *      This symbol, if defined, indicates that the getpgrp2() (as in DG/UX)
336  *      routine is available to get the current process group.
337  */
338 /*#define HAS_GETPGRP2          /**/
339
340 /* HAS_GETPPID:
341  *      This symbol, if defined, indicates that the getppid routine is
342  *      available to get the parent process ID.
343  */
344 #define HAS_GETPPID             /**/
345
346 /* HAS_GETPRIORITY:
347  *      This symbol, if defined, indicates that the getpriority routine is
348  *      available to get a process's priority.
349  */
350 /*#define HAS_GETPRIORITY               /**/
351
352 /* HAS_HTONL:
353  *      This symbol, if defined, indicates that the htonl() routine (and
354  *      friends htons() ntohl() ntohs()) are available to do network
355  *      order byte swapping.
356  */
357 /* HAS_HTONS:
358  *      This symbol, if defined, indicates that the htons() routine (and
359  *      friends htonl() ntohl() ntohs()) are available to do network
360  *      order byte swapping.
361  */
362 /* HAS_NTOHL:
363  *      This symbol, if defined, indicates that the ntohl() routine (and
364  *      friends htonl() htons() ntohs()) are available to do network
365  *      order byte swapping.
366  */
367 /* HAS_NTOHS:
368  *      This symbol, if defined, indicates that the ntohs() routine (and
369  *      friends htonl() htons() ntohl()) are available to do network
370  *      order byte swapping.
371  */
372 #define HAS_HTONL               /**/
373 #define HAS_HTONS               /**/
374 #define HAS_NTOHL               /**/
375 #define HAS_NTOHS               /**/
376
377 /* HAS_ISASCII:
378  *      This manifest constant lets the C program know that isascii 
379  *      is available.
380  */
381 #define HAS_ISASCII             /**/
382
383 /* HAS_KILLPG:
384  *      This symbol, if defined, indicates that the killpg routine is available
385  *      to kill process groups.  If unavailable, you probably should use kill
386  *      with a negative process number.
387  */
388 /*#define HAS_KILLPG    /**/
389
390 /* HAS_LINK:
391  *      This symbol, if defined, indicates that the link routine is
392  *      available to create hard links.
393  */
394 #define HAS_LINK        /**/
395
396 /* USE_LINUX_STDIO:
397  *      This symbol is defined if this system has a FILE structure declaring
398  *      _IO_read_base, _IO_read_ptr, and _IO_read_end in stdio.h.
399  */
400 /*#define USE_LINUX_STDIO       /**/
401
402 /* HAS_LOCALECONV:
403  *      This symbol, if defined, indicates that the localeconv routine is
404  *      available for numeric and monetary formatting conventions.
405  */
406 #define HAS_LOCALECONV  /**/
407
408 /* HAS_LOCKF:
409  *      This symbol, if defined, indicates that the lockf routine is
410  *      available to do file locking.
411  */
412 #define HAS_LOCKF               /**/
413
414 /* HAS_LSTAT:
415  *      This symbol, if defined, indicates that the lstat routine is
416  *      available to do file stats on symbolic links.
417  */
418 #define HAS_LSTAT               /**/
419
420 /* HAS_MBLEN:
421  *      This symbol, if defined, indicates that the mblen routine is available
422  *      to find the number of bytes in a multibye character.
423  */
424 /*#define HAS_MBLEN             /**/
425
426 /* HAS_MBSTOWCS:
427  *      This symbol, if defined, indicates that the mbstowcs routine is
428  *      available to covert a multibyte string into a wide character string.
429  */
430 /*#define       HAS_MBSTOWCS            /**/
431
432 /* HAS_MBTOWC:
433  *      This symbol, if defined, indicates that the mbtowc routine is available
434  *      to covert a multibyte to a wide character.
435  */
436 /*#define HAS_MBTOWC            /**/
437
438 /* HAS_MEMCMP:
439  *      This symbol, if defined, indicates that the memcmp routine is available
440  *      to compare blocks of memory.
441  */
442 #define HAS_MEMCMP      /**/
443
444 /* HAS_MEMCPY:
445  *      This symbol, if defined, indicates that the memcpy routine is available
446  *      to copy blocks of memory.
447  */
448 #define HAS_MEMCPY      /**/
449
450 /* HAS_MEMMOVE:
451  *      This symbol, if defined, indicates that the memmove routine is available
452  *      to copy potentially overlapping blocks of memory. This should be used
453  *      only when HAS_SAFE_BCOPY is not defined. If neither is there, roll your
454  *      own version.
455  */
456 /*#define HAS_MEMMOVE   /**/
457
458 /* HAS_MEMSET:
459  *      This symbol, if defined, indicates that the memset routine is available
460  *      to set blocks of memory.
461  */
462 #define HAS_MEMSET      /**/
463
464 /* HAS_MKDIR:
465  *      This symbol, if defined, indicates that the mkdir routine is available
466  *      to create directories.  Otherwise you should fork off a new process to
467  *      exec /bin/mkdir.
468  */
469 #define HAS_MKDIR               /**/
470
471 /* HAS_MKFIFO:
472  *      This symbol, if defined, indicates that the mkfifo routine is
473  *      available to create FIFOs. Otherwise, mknod should be able to
474  *      do it for you. However, if mkfifo is there, mknod might require
475  *      super-user privileges which mkfifo will not.
476  */
477 #define HAS_MKFIFO              /**/
478
479 /* HAS_MKTIME:
480  *      This symbol, if defined, indicates that the mktime routine is
481  *      available.
482  */
483 #define HAS_MKTIME              /**/
484
485 /* HAS_MSG:
486  *      This symbol, if defined, indicates that the entire msg*(2) library is
487  *      supported (IPC mechanism based on message queues).
488  */
489 #define HAS_MSG         /**/
490
491 /* HAS_NICE:
492  *      This symbol, if defined, indicates that the nice routine is
493  *      available.
494  */
495 #define HAS_NICE                /**/
496
497 /* HAS_OPEN3:
498  *      This manifest constant lets the C program know that the three
499  *      argument form of open(2) is available.
500  */
501 #define HAS_OPEN3               /**/
502
503 /* HAS_PATHCONF:
504  *      This symbol, if defined, indicates that pathconf() is available
505  *      to determine file-system related limits and options associated
506  *      with a given filename.
507  */
508 /* HAS_FPATHCONF:
509  *      This symbol, if defined, indicates that pathconf() is available
510  *      to determine file-system related limits and options associated
511  *      with a given open file descriptor.
512  */
513 #define HAS_PATHCONF            /**/
514 #define HAS_FPATHCONF           /**/
515
516 /* HAS_PAUSE:
517  *      This symbol, if defined, indicates that the pause routine is
518  *      available to suspend a process until a signal is received.
519  */
520 #define HAS_PAUSE               /**/
521
522 /* HAS_PIPE:
523  *      This symbol, if defined, indicates that the pipe routine is
524  *      available to create an inter-process channel.
525  */
526 #define HAS_PIPE                /**/
527
528 /* HAS_READDIR:
529  *      This symbol, if defined, indicates that the readdir routine is
530  *      available to read directory entries. You may have to include
531  *      <dirent.h>. See I_DIRENT.
532  */
533 #define HAS_READDIR             /**/
534
535 /* HAS_SEEKDIR:
536  *      This symbol, if defined, indicates that the seekdir routine is
537  *      available. You may have to include <dirent.h>. See I_DIRENT.
538  */
539 #define HAS_SEEKDIR             /**/
540
541 /* HAS_TELLDIR:
542  *      This symbol, if defined, indicates that the telldir routine is
543  *      available. You may have to include <dirent.h>. See I_DIRENT.
544  */
545 #define HAS_TELLDIR             /**/
546
547 /* HAS_REWINDDIR:
548  *      This symbol, if defined, indicates that the rewinddir routine is
549  *      available. You may have to include <dirent.h>. See I_DIRENT.
550  */
551 #define HAS_REWINDDIR           /**/
552
553 /* HAS_READLINK:
554  *      This symbol, if defined, indicates that the readlink routine is
555  *      available to read the value of a symbolic link.
556  */
557 #define HAS_READLINK            /**/
558
559 /* HAS_RENAME:
560  *      This symbol, if defined, indicates that the rename routine is available
561  *      to rename files.  Otherwise you should do the unlink(), link(), unlink()
562  *      trick.
563  */
564 #define HAS_RENAME      /**/
565
566 /* HAS_RMDIR:
567  *      This symbol, if defined, indicates that the rmdir routine is
568  *      available to remove directories. Otherwise you should fork off a
569  *      new process to exec /bin/rmdir.
570  */
571 #define HAS_RMDIR               /**/
572
573 /* HAS_SAFE_BCOPY:
574  *      This symbol, if defined, indicates that the bcopy routine is available
575  *      to copy potentially overlapping memory blocks. Otherwise you should
576  *      probably use memmove() or memcpy(). If neither is defined, roll your
577  *      own version.
578  */
579 #define HAS_SAFE_BCOPY  /**/
580
581 /* HAS_SAFE_MEMCPY:
582  *      This symbol, if defined, indicates that the memcpy routine is available
583  *      to copy potentially overlapping memory blocks. Otherwise you should
584  *      probably use memmove() or memcpy(). If neither is defined, roll your
585  *      own version.
586  */
587 /*#define HAS_SAFE_MEMCPY       /**/
588
589 /* HAS_SELECT:
590  *      This symbol, if defined, indicates that the select routine is
591  *      available to select active file descriptors. If the timeout field
592  *      is used, <sys/time.h> may need to be included.
593  */
594 #define HAS_SELECT      /**/
595
596 /* HAS_SEM:
597  *      This symbol, if defined, indicates that the entire sem*(2) library is
598  *      supported.
599  */
600 #define HAS_SEM         /**/
601
602 /* HAS_SETEGID:
603  *      This symbol, if defined, indicates that the setegid routine is available
604  *      to change the effective gid of the current program.
605  */
606 #define HAS_SETEGID             /**/
607
608 /* HAS_SETEUID:
609  *      This symbol, if defined, indicates that the seteuid routine is available
610  *      to change the effective uid of the current program.
611  */
612 #define HAS_SETEUID             /**/
613
614 /* HAS_SETLINEBUF:
615  *      This symbol, if defined, indicates that the setlinebuf routine is
616  *      available to change stderr or stdout from block-buffered or unbuffered
617  *      to a line-buffered mode.
618  */
619 /*#define HAS_SETLINEBUF                /**/
620
621 /* HAS_SETLOCALE:
622  *      This symbol, if defined, indicates that the setlocale routine is
623  *      available to handle locale-specific ctype implementations.
624  */
625 #define HAS_SETLOCALE   /**/
626
627 /* HAS_SETPGID:
628  *      This symbol, if defined, indicates that the setpgid routine is
629  *      available to set process group ID.
630  */
631 #define HAS_SETPGID     /**/
632
633 /* HAS_SETPGRP:
634  *      This symbol, if defined, indicates that the setpgrp routine is
635  *      available to set the current process group.
636  */
637 /* USE_BSDPGRP:
638  *      This symbol, if defined, indicates that the BSD notion of process
639  *      group is to be used. For instance, you have to say setpgrp(pid, pgrp)
640  *      instead of the USG setpgrp().
641  */
642 #define HAS_SETPGRP             /**/
643 /*#define USE_BSDPGRP           /**/
644
645 /* HAS_SETPGRP2:
646  *      This symbol, if defined, indicates that the setpgrp2() (as in DG/UX)
647  *      routine is available to set the current process group.
648  */
649 /*#define HAS_SETPGRP2          /**/
650
651 /* HAS_SETPRIORITY:
652  *      This symbol, if defined, indicates that the setpriority routine is
653  *      available to set a process's priority.
654  */
655 /*#define HAS_SETPRIORITY               /**/
656
657 /* HAS_SETREGID:
658  *      This symbol, if defined, indicates that the setregid routine is
659  *      available to change the real and effective gid of the current
660  *      process.
661  */
662 /* HAS_SETRESGID:
663  *      This symbol, if defined, indicates that the setresgid routine is
664  *      available to change the real, effective and saved gid of the current
665  *      process.
666  */
667 #define HAS_SETREGID            /**/
668 /*#define HAS_SETRESGID         /**/
669
670 /* HAS_SETREUID:
671  *      This symbol, if defined, indicates that the setreuid routine is
672  *      available to change the real and effective uid of the current
673  *      process.
674  */
675 /* HAS_SETRESUID:
676  *      This symbol, if defined, indicates that the setresuid routine is
677  *      available to change the real, effective and saved uid of the current
678  *      process.
679  */
680 #define HAS_SETREUID            /**/
681 /*#define HAS_SETRESUID         /**/
682
683 /* HAS_SETRGID:
684  *      This symbol, if defined, indicates that the setrgid routine is available
685  *      to change the real gid of the current program.
686  */
687 /*#define HAS_SETRGID           /**/
688
689 /* HAS_SETRUID:
690  *      This symbol, if defined, indicates that the setruid routine is available
691  *      to change the real uid of the current program.
692  */
693 /*#define HAS_SETRUID           /**/
694
695 /* HAS_SETSID:
696  *      This symbol, if defined, indicates that the setsid routine is
697  *      available to set the process group ID.
698  */
699 #define HAS_SETSID      /**/
700
701 /* HAS_SHM:
702  *      This symbol, if defined, indicates that the entire shm*(2) library is
703  *      supported.
704  */
705 #define HAS_SHM         /**/
706
707 /* Shmat_t:
708  *      This symbol holds the return type of the shmat() system call.
709  *      Usually set to 'void *' or 'char *'.
710  */
711 /* HAS_SHMAT_PROTOTYPE:
712  *      This symbol, if defined, indicates that the sys/shm.h includes
713  *      a prototype for shmat().  Otherwise, it is up to the program to
714  *      guess one.  Shmat_t shmat _((int, Shmat_t, int)) is a good guess,
715  *      but not always right so it should be emitted by the program only
716  *      when HAS_SHMAT_PROTOTYPE is not defined to avoid conflicting defs.
717  */
718 #define Shmat_t char *  /**/
719 /*#define HAS_SHMAT_PROTOTYPE   /**/
720
721 /* HAS_SOCKET:
722  *      This symbol, if defined, indicates that the BSD socket interface is
723  *      supported.
724  */
725 /* HAS_SOCKETPAIR:
726  *      This symbol, if defined, indicates that the BSD socketpair() call is
727  *      supported.
728  */
729 #define HAS_SOCKET              /**/
730 /*#define HAS_SOCKETPAIR        /**/
731
732 /* USE_STAT_BLOCKS:
733  *      This symbol is defined if this system has a stat structure declaring
734  *      st_blksize and st_blocks.
735  */
736 /*#define USE_STAT_BLOCKS       /**/
737
738 /* USE_STD_STDIO:
739  *      This symbol is defined if this system has a FILE structure declaring
740  *      _ptr and _cnt in stdio.h.
741  */
742 #define USE_STD_STDIO   /**/
743
744 /* HAS_STRCHR:
745  *      This symbol is defined to indicate that the strchr()/strrchr()
746  *      functions are available for string searching. If not, try the
747  *      index()/rindex() pair.
748  */
749 /* HAS_INDEX:
750  *      This symbol is defined to indicate that the index()/rindex()
751  *      functions are available for string searching.
752  */
753 #define HAS_STRCHR      /**/
754 /*#define HAS_INDEX     /**/
755
756 /* HAS_STRCOLL:
757  *      This symbol, if defined, indicates that the strcoll routine is
758  *      available to compare strings using collating information.
759  */
760 #define HAS_STRCOLL     /**/
761
762 /* USE_STRUCT_COPY:
763  *      This symbol, if defined, indicates that this C compiler knows how
764  *      to copy structures.  If undefined, you'll need to use a block copy
765  *      routine of some sort instead.
766  */
767 #define USE_STRUCT_COPY /**/
768
769 /* HAS_STRERROR:
770  *      This symbol, if defined, indicates that the strerror routine is
771  *      available to translate error numbers to strings. See the writeup
772  *      of Strerror() in this file before you try to define your own.
773  */
774 /* HAS_SYS_ERRLIST:
775  *      This symbol, if defined, indicates that the sys_errlist array is
776  *      available to translate error numbers to strings. The extern int
777  *      sys_nerr gives the size of that table.
778  */
779 /* Strerror:
780  *      This preprocessor symbol is defined as a macro if strerror() is
781  *      not available to translate error numbers to strings but sys_errlist[]
782  *      array is there.
783  */
784 #define HAS_STRERROR            /**/
785 #define HAS_SYS_ERRLIST /**/
786 #define Strerror(e) strerror(e)
787
788 /* HAS_STRXFRM:
789  *      This symbol, if defined, indicates that the strxfrm() routine is
790  *      available to transform strings.
791  */
792 #define HAS_STRXFRM     /**/
793
794 /* HAS_SYMLINK:
795  *      This symbol, if defined, indicates that the symlink routine is available
796  *      to create symbolic links.
797  */
798 #define HAS_SYMLINK     /**/
799
800 /* HAS_SYSCALL:
801  *      This symbol, if defined, indicates that the syscall routine is
802  *      available to call arbitrary system calls. If undefined, that's tough.
803  */
804 #define HAS_SYSCALL     /**/
805
806 /* HAS_SYSCONF:
807  *      This symbol, if defined, indicates that sysconf() is available
808  *      to determine system related limits and options.
809  */
810 #define HAS_SYSCONF     /**/
811
812 /* HAS_SYSTEM:
813  *      This symbol, if defined, indicates that the system routine is
814  *      available to issue a shell command.
815  */
816 #define HAS_SYSTEM      /**/
817
818 /* HAS_TCGETPGRP:
819  *      This symbol, if defined, indicates that the tcgetpgrp routine is
820  *      available to get foreground process group ID.
821  */
822 #define HAS_TCGETPGRP           /**/
823
824 /* HAS_TCSETPGRP:
825  *      This symbol, if defined, indicates that the tcsetpgrp routine is
826  *      available to set foreground process group ID.
827  */
828 #define HAS_TCSETPGRP           /**/
829
830 /* Time_t:
831  *      This symbol holds the type returned by time(). It can be long,
832  *      or time_t on BSD sites (in which case <sys/types.h> should be
833  *      included).
834  */
835 #define Time_t time_t           /* Time type */
836
837 /* HAS_TIMES:
838  *      This symbol, if defined, indicates that the times() routine exists.
839  *      Note that this became obsolete on some systems (SUNOS), which now
840  * use getrusage(). It may be necessary to include <sys/times.h>.
841  */
842 #define HAS_TIMES               /**/
843
844 /* HAS_TRUNCATE:
845  *      This symbol, if defined, indicates that the truncate routine is
846  *      available to truncate files.
847  */
848 /*#define HAS_TRUNCATE  /**/
849
850 /* HAS_TZNAME:
851  *      This symbol, if defined, indicates that the tzname[] array is
852  *      available to access timezone names.
853  */
854 #define HAS_TZNAME              /**/
855
856 /* HAS_UMASK:
857  *      This symbol, if defined, indicates that the umask routine is
858  *      available to set and get the value of the file creation mask.
859  */
860 #define HAS_UMASK               /**/
861
862 /* HAS_VFORK:
863  *      This symbol, if defined, indicates that vfork() exists.
864  */
865 /*#define HAS_VFORK     /**/
866
867 /* Signal_t:
868  *      This symbol's value is either "void" or "int", corresponding to the
869  *      appropriate return type of a signal handler.  Thus, you can declare
870  *      a signal handler using "Signal_t (*handler)()", and define the
871  *      handler using "Signal_t handler(sig)".
872  */
873 #define Signal_t void   /* Signal handler's return type */
874
875 /* HASVOLATILE:
876  *      This symbol, if defined, indicates that this C compiler knows about
877  *      the volatile declaration.
878  */
879 /*#define       HASVOLATILE     /**/
880 #ifndef HASVOLATILE
881 #define volatile
882 #endif
883
884 /* HAS_VPRINTF:
885  *      This symbol, if defined, indicates that the vprintf routine is available
886  *      to printf with a pointer to an argument list.  If unavailable, you
887  *      may need to write your own, probably in terms of _doprnt().
888  */
889 /* USE_CHAR_VSPRINTF:
890  *      This symbol is defined if this system has vsprintf() returning type
891  *      (char*).  The trend seems to be to declare it as "int vsprintf()".  It
892  *      is up to the package author to declare vsprintf correctly based on the
893  *      symbol.
894  */
895 #define HAS_VPRINTF     /**/
896 /*#define USE_CHAR_VSPRINTF     /**/
897
898 /* HAS_WAIT4:
899  *      This symbol, if defined, indicates that wait4() exists.
900  */
901 /*#define HAS_WAIT4     /**/
902
903 /* HAS_WAITPID:
904  *      This symbol, if defined, indicates that the waitpid routine is
905  *      available to wait for child process.
906  */
907 #define HAS_WAITPID     /**/
908
909 /* HAS_WCSTOMBS:
910  *      This symbol, if defined, indicates that the wcstombs routine is
911  *      available to convert wide character strings to multibyte strings.
912  */
913 /*#define HAS_WCSTOMBS  /**/
914
915 /* HAS_WCTOMB:
916  *      This symbol, if defined, indicates that the wctomb routine is available
917  *      to covert a wide character to a multibyte.
918  */
919 /*#define HAS_WCTOMB            /**/
920
921 /* Fpos_t:
922  *      This symbol holds the type used to declare file positions in libc.
923  *      It can be fpos_t, long, uint, etc... It may be necessary to include
924  *      <sys/types.h> to get any typedef'ed information.
925  */
926 #define Fpos_t fpos_t           /* File position type */
927
928 /* Gid_t:
929  *      This symbol holds the return type of getgid() and the type of
930  *      argument to setrgid() and related functions.  Typically,
931  *      it is the type of group ids in the kernel. It can be int, ushort,
932  *      uid_t, etc... It may be necessary to include <sys/types.h> to get
933  *      any typedef'ed information.
934  */
935 #define Gid_t gid_t             /* Type for getgid(), etc... */
936
937 /* Groups_t:
938  *      This symbol holds the type used for the second argument to
939  *      getgroups().  Usually, this is the same of gidtype, but
940  *      sometimes it isn't.  It can be int, ushort, uid_t, etc... 
941  *      It may be necessary to include <sys/types.h> to get any 
942  *      typedef'ed information.  This is only required if you have
943  *      getgroups().
944  */
945 #ifdef HAS_GETGROUPS
946 #define Groups_t gid_t  /* Type for 2nd arg to getgroups() */
947 #endif
948
949 /* DB_Prefix_t:
950  *      This symbol contains the type of the prefix structure element
951  *      in the <db.h> header file.  In older versions of DB, it was
952  *      int, while in newer ones it is u_int32_t.
953  */
954 /* DB_Hash_t:
955  *      This symbol contains the type of the prefix structure element
956  *      in the <db.h> header file.  In older versions of DB, it was
957  *      int, while in newer ones it is size_t.
958  */
959 #define DB_Hash_t       int             /**/
960 #define DB_Prefix_t     int     /**/
961
962 /* I_DIRENT:
963  *      This symbol, if defined, indicates to the C program that it should
964  *      include <dirent.h>. Using this symbol also triggers the definition
965  *      of the Direntry_t define which ends up being 'struct dirent' or
966  *      'struct direct' depending on the availability of <dirent.h>.
967  */
968 /* DIRNAMLEN:
969  *      This symbol, if defined, indicates to the C program that the length
970  *      of directory entry names is provided by a d_namlen field.  Otherwise
971  *      you need to do strlen() on the d_name field.
972  */
973 /* Direntry_t:
974  *      This symbol is set to 'struct direct' or 'struct dirent' depending on
975  *      whether dirent is available or not. You should use this pseudo type to
976  *      portably declare your directory entries.
977  */
978 #define I_DIRENT                /**/
979 /*#define DIRNAMLEN     /**/
980 #define Direntry_t struct dirent
981
982 /* I_DLFCN:
983  *      This symbol, if defined, indicates that <dlfcn.h> exists and should
984  *      be included.
985  */
986 /*#define I_DLFCN               /**/
987
988 /* I_FCNTL:
989  *      This manifest constant tells the C program to include <fcntl.h>.
990  */
991 #define I_FCNTL /**/
992
993 /* I_FLOAT:
994  *      This symbol, if defined, indicates to the C program that it should
995  *      include <float.h> to get definition of symbols like DBL_MAX or
996  *      DBL_MIN, i.e. machine dependent floating point values.
997  */
998 #define I_FLOAT         /**/
999
1000 /* I_GRP:
1001  *      This symbol, if defined, indicates to the C program that it should
1002  *      include <grp.h>.
1003  */
1004 #define I_GRP           /**/
1005
1006 /* I_LIMITS:
1007  *      This symbol, if defined, indicates to the C program that it should
1008  *      include <limits.h> to get definition of symbols like WORD_BIT or
1009  *      LONG_MAX, i.e. machine dependant limitations.
1010  */
1011 #define I_LIMITS                /**/
1012
1013 /* I_MATH:
1014  *      This symbol, if defined, indicates to the C program that it should
1015  *      include <math.h>.
1016  */
1017 #define I_MATH          /**/
1018
1019 /* I_MEMORY:
1020  *      This symbol, if defined, indicates to the C program that it should
1021  *      include <memory.h>.
1022  */
1023 /*#define I_MEMORY              /**/
1024
1025 /* I_NDBM:
1026  *      This symbol, if defined, indicates that ndbm.h exists and should
1027  *      be included.
1028  */
1029 #define I_NDBM  /**/
1030
1031 /* I_NET_ERRNO:
1032  *      This symbol, if defined, indicates that <net/errno.h> exists and 
1033  *      should be included.
1034  */
1035 #define I_NET_ERRNO             /**/
1036
1037 /* I_NETINET_IN:
1038  *      This symbol, if defined, indicates to the C program that it should
1039  *      include <netinet/in.h>. Otherwise, you may try <sys/in.h>.
1040  */
1041 #define I_NETINET_IN    /**/
1042
1043 /* I_PWD:
1044  *      This symbol, if defined, indicates to the C program that it should
1045  *      include <pwd.h>.
1046  */
1047 /* PWQUOTA:
1048  *      This symbol, if defined, indicates to the C program that struct passwd
1049  *      contains pw_quota.
1050  */
1051 /* PWAGE:
1052  *      This symbol, if defined, indicates to the C program that struct passwd
1053  *      contains pw_age.
1054  */
1055 /* PWCHANGE:
1056  *      This symbol, if defined, indicates to the C program that struct passwd
1057  *      contains pw_change.
1058  */
1059 /* PWCLASS:
1060  *      This symbol, if defined, indicates to the C program that struct passwd
1061  *      contains pw_class.
1062  */
1063 /* PWEXPIRE:
1064  *      This symbol, if defined, indicates to the C program that struct passwd
1065  *      contains pw_expire.
1066  */
1067 /* PWCOMMENT:
1068  *      This symbol, if defined, indicates to the C program that struct passwd
1069  *      contains pw_comment.
1070  */
1071 #define I_PWD           /**/
1072 /*#define PWQUOTA       /**/
1073 #define PWAGE   /**/
1074 /*#define PWCHANGE      /**/
1075 /*#define PWCLASS       /**/
1076 /*#define PWEXPIRE      /**/
1077 #define PWCOMMENT       /**/
1078
1079 /* I_STDDEF:
1080  *      This symbol, if defined, indicates that <stddef.h> exists and should
1081  *      be included.
1082  */
1083 #define I_STDDEF        /**/
1084
1085 /* I_STDLIB:
1086  *      This symbol, if defined, indicates that <stdlib.h> exists and should
1087  *      be included.
1088  */
1089 #define I_STDLIB                /**/
1090
1091 /* I_STRING:
1092  *      This symbol, if defined, indicates to the C program that it should
1093  *      include <string.h> (USG systems) instead of <strings.h> (BSD systems).
1094  */
1095 #define I_STRING                /**/
1096
1097 /* I_SYS_DIR:
1098  *      This symbol, if defined, indicates to the C program that it should
1099  *      include <sys/dir.h>.
1100  */
1101 #define I_SYS_DIR               /**/
1102
1103 /* I_SYS_FILE:
1104  *      This symbol, if defined, indicates to the C program that it should
1105  *      include <sys/file.h> to get definition of R_OK and friends.
1106  */
1107 /*#define I_SYS_FILE            /**/
1108
1109 /* I_SYS_IOCTL:
1110  *      This symbol, if defined, indicates that <sys/ioctl.h> exists and should
1111  *      be included. Otherwise, include <sgtty.h> or <termio.h>.
1112  */
1113 #define I_SYS_IOCTL             /**/
1114
1115 /* I_SYS_NDIR:
1116  *      This symbol, if defined, indicates to the C program that it should
1117  *      include <sys/ndir.h>.
1118  */
1119 /*#define I_SYS_NDIR    /**/
1120
1121 /* I_SYS_PARAM:
1122  *      This symbol, if defined, indicates to the C program that it should
1123  *      include <sys/param.h>.
1124  */
1125 #define I_SYS_PARAM             /**/
1126
1127 /* I_SYS_SELECT:
1128  *      This symbol, if defined, indicates to the C program that it should
1129  *      include <sys/select.h> in order to get definition of struct timeval.
1130  */
1131 /*#define I_SYS_SELECT  /**/
1132
1133 /* I_SYS_TIMES:
1134  *      This symbol, if defined, indicates to the C program that it should
1135  *      include <sys/times.h>.
1136  */
1137 #define I_SYS_TIMES             /**/
1138
1139 /* I_SYS_TYPES:
1140  *      This symbol, if defined, indicates to the C program that it should
1141  *      include <sys/types.h>.
1142  */
1143 #define I_SYS_TYPES             /**/
1144
1145 /* I_TERMIO:
1146  *      This symbol, if defined, indicates that the program should include
1147  *      <termio.h> rather than <sgtty.h>.  There are also differences in
1148  *      the ioctl() calls that depend on the value of this symbol.
1149  */
1150 /* I_TERMIOS:
1151  *      This symbol, if defined, indicates that the program should include
1152  *      the POSIX termios.h rather than sgtty.h or termio.h.
1153  *      There are also differences in the ioctl() calls that depend on the
1154  *      value of this symbol.
1155  */
1156 /* I_SGTTY:
1157  *      This symbol, if defined, indicates that the program should include
1158  *      <sgtty.h> rather than <termio.h>.  There are also differences in
1159  *      the ioctl() calls that depend on the value of this symbol.
1160  */
1161 /*#define I_TERMIO              /**/
1162 #define I_TERMIOS               /**/
1163 /*#define I_SGTTY               /**/
1164
1165 /* I_TIME:
1166  *      This symbol, if defined, indicates to the C program that it should
1167  *      include <time.h>.
1168  */
1169 /* I_SYS_TIME:
1170  *      This symbol, if defined, indicates to the C program that it should
1171  *      include <sys/time.h>.
1172  */
1173 /* I_SYS_TIME_KERNEL:
1174  *      This symbol, if defined, indicates to the C program that it should
1175  *      include <sys/time.h> with KERNEL defined.
1176  */
1177 /*#define I_TIME                /**/
1178 #define I_SYS_TIME              /**/
1179 /*#define I_SYS_TIME_KERNEL             /**/
1180
1181 /* I_UNISTD:
1182  *      This symbol, if defined, indicates to the C program that it should
1183  *      include <unistd.h>.
1184  */
1185 #define I_UNISTD                /**/
1186
1187 /* I_UTIME:
1188  *      This symbol, if defined, indicates to the C program that it should
1189  *      include <utime.h>.
1190  */
1191 #define I_UTIME         /**/
1192
1193 /* I_STDARG:
1194  *      This symbol, if defined, indicates that <stdarg.h> exists and should
1195  *      be included.
1196  */
1197 /* I_VARARGS:
1198  *      This symbol, if defined, indicates to the C program that it should
1199  *      include <varargs.h>.
1200  */
1201 /*#define I_STDARG              /**/
1202 #define I_VARARGS       /**/
1203
1204 /* I_VFORK:
1205  *      This symbol, if defined, indicates to the C program that it should
1206  *      include vfork.h.
1207  */
1208 /*#define I_VFORK       /**/
1209
1210 /* INTSIZE:
1211  *      This symbol contains the size of an int, so that the C preprocessor
1212  *      can make decisions based on it.
1213  */
1214 #define INTSIZE 4               /**/
1215
1216 /* Off_t:
1217  *      This symbol holds the type used to declare offsets in the kernel.
1218  *      It can be int, long, off_t, etc... It may be necessary to include
1219  *      <sys/types.h> to get any typedef'ed information.
1220  */
1221 #define Off_t off_t             /* <offset> type */
1222
1223 /* Mode_t:
1224  *      This symbol holds the type used to declare file modes 
1225  *      for systems calls.  It is usually mode_t, but may be
1226  *      int or unsigned short.  It may be necessary to include <sys/types.h>
1227  *      to get any typedef'ed information.
1228  */
1229 #define Mode_t mode_t    /* file mode parameter for system calls */
1230
1231 /* PRIVLIB_EXP:
1232  *      This symbol contains the ~name expanded version of PRIVLIB, to be used
1233  *      in programs that are not prepared to deal with ~ expansion at run-time.
1234  */
1235 #define PRIVLIB_EXP "/usr/local/lib/perl5"              /**/
1236
1237 /* CAN_PROTOTYPE:
1238  *      If defined, this macro indicates that the C compiler can handle
1239  *      function prototypes.
1240  */
1241 /* _:
1242  *      This macro is used to declare function parameters for folks who want
1243  *      to make declarations with prototypes using a different style than
1244  *      the above macros.  Use double parentheses.  For example:
1245  *
1246  *              int main _((int argc, char *argv[]));
1247  */
1248 /*#define       CAN_PROTOTYPE   /**/
1249 #ifdef CAN_PROTOTYPE
1250 #define _(args) args
1251 #else
1252 #define _(args) ()
1253 #endif
1254
1255 /* RANDBITS:
1256  *      This symbol contains the number of bits of random number the rand()
1257  *      function produces.  Usual values are 15, 16, and 31.
1258  */
1259 #define RANDBITS 15             /**/
1260
1261 /* SCRIPTDIR:
1262  *      This symbol holds the name of the directory in which the user wants
1263  *      to put publicly executable scripts for the package in question.  It
1264  *      is often a directory that is mounted across diverse architectures.
1265  *      Programs must be prepared to deal with ~name expansion.
1266  */
1267 #define SCRIPTDIR "/usr/local/bin"      /**/
1268
1269 /* Select_fd_set_t:
1270  *      This symbol holds the type used for the 2nd, 3rd, and 4th
1271  *      arguments to select.  Usually, this is 'fd_set *', if HAS_FD_SET
1272  *      is defined, and 'int *' otherwise.  This is only useful if you 
1273  *      have select(), of course.
1274  */
1275 #define Select_fd_set_t         fd_set *        /**/
1276
1277 /* SIG_NAME:
1278  *      This symbol contains a list of signal names in order. This is intended
1279  *      to be used as a static array initialization, like this:
1280  *              char *sig_name[] = { SIG_NAME };
1281  *      The signals in the list are separated with commas, and each signal
1282  *      is surrounded by double quotes. There is no leading SIG in the signal
1283  *      name, i.e. SIGQUIT is known as "QUIT".
1284  */
1285 #define SIG_NAME "ZERO","HUP","INT","QUIT","ILL","TRAP","ABRT","EMT","FPE","KILL","BUS","SEGV","SYS","PIPE","ALRM","TERM","USR1","USR2","CLD","PWR","WINCH","21","POLL","CONT","STOP","TSTP","TTIN","TTOU"      /**/
1286
1287 /* Size_t:
1288  *      This symbol holds the type used to declare length parameters
1289  *      for string functions.  It is usually size_t, but may be
1290  *      unsigned long, int, etc.  It may be necessary to include
1291  *      <sys/types.h> to get any typedef'ed information.
1292  */
1293 #define Size_t size_t    /* length paramater for string functions */
1294
1295 /* SSize_t:
1296  *      This symbol holds the type used by functions that return
1297  *      a count of bytes or an error condition.  It must be a signed type.
1298  *      It is usually ssize_t, but may be long or int, etc.
1299  *      It may be necessary to include <sys/types.h> or <unistd.h>
1300  *      to get any typedef'ed information.
1301  *      We will pick a type such that sizeof(SSize_t) == sizeof(Size_t).
1302  */
1303 #define SSize_t int      /* signed count of bytes */
1304
1305 /* STDCHAR:
1306  *      This symbol is defined to be the type of char used in stdio.h.
1307  *      It has the values "unsigned char" or "char".
1308  */
1309 #define STDCHAR unsigned char   /**/
1310
1311 /* Uid_t:
1312  *      This symbol holds the type used to declare user ids in the kernel.
1313  *      It can be int, ushort, uid_t, etc... It may be necessary to include
1314  *      <sys/types.h> to get any typedef'ed information.
1315  */
1316 #define Uid_t uid_t             /* UID type */
1317
1318 /* VOIDFLAGS:
1319  *      This symbol indicates how much support of the void type is given by this
1320  *      compiler.  What various bits mean:
1321  *
1322  *          1 = supports declaration of void
1323  *          2 = supports arrays of pointers to functions returning void
1324  *          4 = supports comparisons between pointers to void functions and
1325  *                  addresses of void functions
1326  *          8 = suports declaration of generic void pointers
1327  *
1328  *      The package designer should define VOIDUSED to indicate the requirements
1329  *      of the package.  This can be done either by #defining VOIDUSED before
1330  *      including config.h, or by defining defvoidused in Myinit.U.  If the
1331  *      latter approach is taken, only those flags will be tested.  If the
1332  *      level of void support necessary is not present, defines void to int.
1333  */
1334 #ifndef VOIDUSED
1335 #define VOIDUSED 15
1336 #endif
1337 #define VOIDFLAGS 15
1338 #if (VOIDFLAGS & VOIDUSED) != VOIDUSED
1339 #define void int                /* is void to be avoided? */
1340 #define M_VOID                  /* Xenix strikes again */
1341 #endif
1342
1343 /* EUNICE:
1344  *      This symbol, if defined, indicates that the program is being compiled
1345  *      under the EUNICE package under VMS.  The program will need to handle
1346  *      things like files that don't go away the first time you unlink them,
1347  *      due to version numbering.  It will also need to compensate for lack
1348  *      of a respectable link() command.
1349  */
1350 /* VMS:
1351  *      This symbol, if defined, indicates that the program is running under
1352  *      VMS.  It is currently only set in conjunction with the EUNICE symbol.
1353  */
1354 /*#define EUNICE                /**/
1355 /*#define VMS           /**/
1356
1357 /* LOC_SED:
1358  *      This symbol holds the complete pathname to the sed program.
1359  */
1360 #define LOC_SED         "/bin/sed"      /**/
1361
1362 /* CSH:
1363  *      This symbol, if defined, indicates that the C-shell exists.
1364  *      If defined, contains the full pathname of csh.
1365  */
1366 #define CSH "/bin/csh"          /**/
1367
1368 /* DLSYM_NEEDS_UNDERSCORE:
1369  *      This symbol, if defined, indicates that we need to prepend an
1370  *      underscore to the symbol name before calling dlsym().  This only
1371  *      makes sense if you *have* dlsym, which we will presume is the
1372  *      case if you're using dl_dlopen.xs.
1373  */
1374 /*#define       DLSYM_NEEDS_UNDERSCORE  /* */
1375
1376 /* USE_DYNAMIC_LOADING:
1377  *      This symbol, if defined, indicates that dynamic loading of
1378  *      some sort is available.
1379  */
1380 /*#define USE_DYNAMIC_LOADING           /**/
1381
1382 /* I_SYS_STAT:
1383  *      This symbol, if defined, indicates to the C program that it should
1384  *      include <sys/stat.h>.
1385  */
1386 #define I_SYS_STAT              /**/
1387
1388 /* Free_t:
1389  *      This variable contains the return type of free().  It is usually
1390  * void, but occasionally int.
1391  */
1392 /* Malloc_t:
1393  *      This symbol is the type of pointer returned by malloc and realloc.
1394  */
1395 #define Malloc_t char *                 /**/
1396 #define Free_t void                     /**/
1397
1398 /* MYMALLOC:
1399  *      This symbol, if defined, indicates that we're using our own malloc.
1400  */
1401 #define MYMALLOC                        /**/
1402
1403 #endif