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