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