This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
pp_modulo comment tweak from Ilya
[perl5.git] / perl.h
CommitLineData
a0d0e21e 1/* perl.h
a687059c 2 *
9607fc9c 3 * Copyright (c) 1987-1997, Larry Wall
a687059c 4 *
352d5a3a
LW
5 * You may distribute under the terms of either the GNU General Public
6 * License or the Artistic License, as specified in the README file.
8d063cd8 7 *
8d063cd8 8 */
85e6fe83
LW
9#ifndef H_PERL
10#define H_PERL 1
8d063cd8 11
760ac839
LW
12#ifdef PERL_FOR_X2P
13/*
14 * This file is being used for x2p stuff.
15 * Above symbol is defined via -D in 'x2p/Makefile.SH'
16 * Decouple x2p stuff from some of perls more extreme eccentricities.
17 */
55497cff 18#undef MULTIPLICITY
760ac839
LW
19#undef USE_STDIO
20#define USE_STDIO
21#endif /* PERL_FOR_X2P */
22
76e3520e 23#ifdef PERL_OBJECT
3dfd1da1
GS
24
25/* PERL_OBJECT explained - DickH and DougL @ ActiveState.com
26
27Defining PERL_OBJECT turns on creation of a C++ object that
28contains all writable core perl global variables and functions.
29Stated another way, all necessary global variables and functions
30are members of a big C++ object. This object's class is CPerlObj.
31This allows a Perl Host to have multiple, independent perl
32interpreters in the same process space. This is very important on
33Win32 systems as the overhead of process creation is quite high --
34this could be even higher than the script compile and execute time
35for small scripts.
36
37The perl executable implementation on Win32 is composed of perl.exe
38(the Perl Host) and perlX.dll. (the Perl Core). This allows the
39same Perl Core to easily be embedded in other applications that use
40the perl interpreter.
41
42+-----------+
43| Perl Host |
44+-----------+
45 ^
46 |
47 v
48+-----------+ +-----------+
49| Perl Core |<->| Extension |
50+-----------+ +-----------+ ...
51
52Defining PERL_OBJECT has the following effects:
53
54PERL CORE
551. CPerlObj is defined (this is the PERL_OBJECT)
562. all static functions that needed to access either global
57variables or functions needed are made member functions
583. all writable static variables are made member variables
594. all global variables and functions are defined as:
22c35a8c 60 #define var CPerlObj::PL_var
3dfd1da1 61 #define func CPerlObj::Perl_func
22c35a8c 62 * these are in embed.h
3dfd1da1
GS
63This necessitated renaming some local variables and functions that
64had the same name as a global variable or function. This was
65probably a _good_ thing anyway.
66
67
68EXTENSIONS
691. Access to global variables and perl functions is through a
70pointer to the PERL_OBJECT. This pointer type is CPerlObj*. This is
71made transparent to extension developers by the following macros:
22c35a8c 72 #define var pPerl->PL_var
3dfd1da1 73 #define func pPerl->Perl_func
6de196ee 74 * these are done in objXSUB.h
3dfd1da1
GS
75This requires that the extension be compiled as C++, which means
76that the code must be ANSI C and not K&R C. For K&R extensions,
77please see the C API notes located in Win32/GenCAPI.pl. This script
6de196ee 78creates a perlCAPI.lib that provides a K & R compatible C interface
3dfd1da1
GS
79to the PERL_OBJECT.
802. Local variables and functions cannot have the same name as perl's
81variables or functions since the macros will redefine these. Look for
82this if you get some strange error message and it does not look like
83the code that you had written. This often happens with variables that
84are local to a function.
85
86PERL HOST
871. The perl host is linked with perlX.lib to get perl_alloc. This
88function will return a pointer to CPerlObj (the PERL_OBJECT). It
0f4eea8f
DL
89takes pointers to the various PerlXXX_YYY interfaces (see iperlsys.h
90for more information on this).
3dfd1da1
GS
912. The perl host calls the same functions as normally would be
92called in setting up and running a perl script, except that the
93functions are now member functions of the PERL_OBJECT.
94
95*/
96
97
76e3520e
GS
98class CPerlObj;
99
100#define STATIC
101#define CPERLscope(x) CPerlObj::x
102#define CPERLproto CPerlObj *
e3b8966e 103#define _CPERLproto ,CPERLproto
76e3520e
GS
104#define CPERLarg CPerlObj *pPerl
105#define CPERLarg_ CPERLarg,
e3b8966e 106#define _CPERLarg ,CPERLarg
1d583055
GS
107#define PERL_OBJECT_THIS this
108#define _PERL_OBJECT_THIS ,this
109#define PERL_OBJECT_THIS_ this,
4c2891ed
GS
110#define CALLRUNOPS (this->*PL_runops)
111#define CALLREGCOMP (this->*PL_regcompp)
112#define CALLREGEXEC (this->*PL_regexecp)
76e3520e
GS
113
114#else /* !PERL_OBJECT */
115
116#define STATIC static
117#define CPERLscope(x) x
118#define CPERLproto
e3b8966e 119#define _CPERLproto
565764a8 120#define CPERLarg void
76e3520e 121#define CPERLarg_
e3b8966e 122#define _CPERLarg
1d583055
GS
123#define PERL_OBJECT_THIS
124#define _PERL_OBJECT_THIS
125#define PERL_OBJECT_THIS_
22c35a8c 126#define CALLRUNOPS (*PL_runops)
3280af22
NIS
127#define CALLREGCOMP (*PL_regcompp)
128#define CALLREGEXEC (*PL_regexecp)
76e3520e
GS
129
130#endif /* PERL_OBJECT */
131
71be2cbc 132#define VOIDUSED 1
133#include "config.h"
134
22c35a8c
GS
135#if !defined(PERL_FOR_X2P)
136# include "embed.h"
137#endif
71be2cbc 138
326b05e3
GS
139#undef START_EXTERN_C
140#undef END_EXTERN_C
141#undef EXTERN_C
32f822de
GS
142#ifdef __cplusplus
143# define START_EXTERN_C extern "C" {
144# define END_EXTERN_C }
145# define EXTERN_C extern "C"
146#else
147# define START_EXTERN_C
148# define END_EXTERN_C
149# define EXTERN_C
150#endif
151
462e5cf6
MB
152#ifdef OP_IN_REGISTER
153# ifdef __GNUC__
154# define stringify_immed(s) #s
155# define stringify(s) stringify_immed(s)
d1ca3daa 156register struct op *Perl_op asm(stringify(OP_IN_REGISTER));
462e5cf6
MB
157# endif
158#endif
159
728e2803 160/*
161 * STMT_START { statements; } STMT_END;
162 * can be used as a single statement, as in
163 * if (x) STMT_START { ... } STMT_END; else ...
164 *
165 * Trying to select a version that gives no warnings...
166 */
167#if !(defined(STMT_START) && defined(STMT_END))
169d69b2 168# if defined(__GNUC__) && !defined(__STRICT_ANSI__) && !defined(__cplusplus)
728e2803 169# define STMT_START (void)( /* gcc supports ``({ STATEMENTS; })'' */
170# define STMT_END )
171# else
172 /* Now which other defined()s do we need here ??? */
173# if (VOIDFLAGS) && (defined(sun) || defined(__sun__))
174# define STMT_START if (1)
175# define STMT_END else (void)0
176# else
177# define STMT_START do
178# define STMT_END while (0)
179# endif
180# endif
181#endif
182
462e5cf6
MB
183#define NOOP (void)0
184
61bb5906 185#define WITH_THR(s) STMT_START { dTHR; s; } STMT_END
ea0efc06 186
55497cff 187/*
188 * SOFT_CAST can be used for args to prototyped functions to retain some
189 * type checking; it only casts if the compiler does not know prototypes.
190 */
191#if defined(CAN_PROTOTYPE) && defined(DEBUGGING_COMPILE)
192#define SOFT_CAST(type)
193#else
194#define SOFT_CAST(type) (type)
195#endif
79072805 196
6ee623d5 197#ifndef BYTEORDER /* Should never happen -- byteorder is in config.h */
79072805
LW
198# define BYTEORDER 0x1234
199#endif
200
201/* Overall memory policy? */
202#ifndef CONSERVATIVE
203# define LIBERAL 1
204#endif
205
8ada0baa
JH
206#if 'A' == 65 && 'I' == 73 && 'J' == 74 && 'Z' == 90
207#define ASCIIish
208#else
209#undef ASCIIish
210#endif
211
79072805
LW
212/*
213 * The following contortions are brought to you on behalf of all the
214 * standards, semi-standards, de facto standards, not-so-de-facto standards
215 * of the world, as well as all the other botches anyone ever thought of.
216 * The basic theory is that if we work hard enough here, the rest of the
217 * code can be a lot prettier. Well, so much for theory. Sorry, Henry...
218 */
ac58e20f 219
ee0007ab 220/* define this once if either system, instead of cluttering up the src */
8736538c 221#if defined(MSDOS) || defined(atarist) || defined(WIN32) || defined(CYGWIN32)
ee0007ab
LW
222#define DOSISH 1
223#endif
224
a0d0e21e 225#if defined(__STDC__) || defined(vax11c) || defined(_AIX) || defined(__stdc__) || defined(__cplusplus)
352d5a3a
LW
226# define STANDARD_C 1
227#endif
228
09b7f37c 229#if defined(__cplusplus) || defined(WIN32) || defined(__sgi) || defined(OS2) || defined(__DGUX)
68dc0745 230# define DONT_DECLARE_STD 1
231#endif
232
352d5a3a 233#if defined(HASVOLATILE) || defined(STANDARD_C)
79072805
LW
234# ifdef __cplusplus
235# define VOL // to temporarily suppress warnings
236# else
237# define VOL volatile
238# endif
663a0e37 239#else
79072805 240# define VOL
663a0e37
LW
241#endif
242
3280af22
NIS
243#define TAINT (PL_tainted = TRUE)
244#define TAINT_NOT (PL_tainted = FALSE)
245#define TAINT_IF(c) if (c) { PL_tainted = TRUE; }
246#define TAINT_ENV() if (PL_tainting) { taint_env(); }
22c35a8c 247#define TAINT_PROPER(s) if (PL_tainting) { taint_proper(Nullch, s); }
a687059c 248
a6e633de 249/* XXX All process group stuff is handled in pp_sys.c. Should these
250 defines move there? If so, I could simplify this a lot. --AD 9/96.
251*/
252/* Process group stuff changed from traditional BSD to POSIX.
253 perlfunc.pod documents the traditional BSD-style syntax, so we'll
254 try to preserve that, if possible.
255*/
256#ifdef HAS_SETPGID
257# define BSD_SETPGRP(pid, pgrp) setpgid((pid), (pgrp))
c07a80fd 258#else
a6e633de 259# if defined(HAS_SETPGRP) && defined(USE_BSD_SETPGRP)
260# define BSD_SETPGRP(pid, pgrp) setpgrp((pid), (pgrp))
261# else
262# ifdef HAS_SETPGRP2 /* DG/UX */
263# define BSD_SETPGRP(pid, pgrp) setpgrp2((pid), (pgrp))
264# endif
265# endif
266#endif
267#if defined(BSD_SETPGRP) && !defined(HAS_SETPGRP)
268# define HAS_SETPGRP /* Well, effectively it does . . . */
269#endif
270
271/* getpgid isn't POSIX, but at least Solaris and Linux have it, and it makes
272 our life easier :-) so we'll try it.
273*/
274#ifdef HAS_GETPGID
275# define BSD_GETPGRP(pid) getpgid((pid))
276#else
277# if defined(HAS_GETPGRP) && defined(USE_BSD_GETPGRP)
278# define BSD_GETPGRP(pid) getpgrp((pid))
279# else
280# ifdef HAS_GETPGRP2 /* DG/UX */
281# define BSD_GETPGRP(pid) getpgrp2((pid))
282# endif
283# endif
284#endif
285#if defined(BSD_GETPGRP) && !defined(HAS_GETPGRP)
286# define HAS_GETPGRP /* Well, effectively it does . . . */
287#endif
288
289/* These are not exact synonyms, since setpgrp() and getpgrp() may
290 have different behaviors, but perl.h used to define USE_BSDPGRP
291 (prior to 5.003_05) so some extension might depend on it.
292*/
293#if defined(USE_BSD_SETPGRP) || defined(USE_BSD_GETPGRP)
294# ifndef USE_BSDPGRP
295# define USE_BSDPGRP
296# endif
663a0e37
LW
297#endif
298
8ac5a1fe
MH
299/* HP-UX 10.X CMA (Common Multithreaded Architecure) insists that
300 pthread.h must be included before all other header files.
301*/
302#if defined(USE_THREADS) && defined(PTHREAD_H_FIRST)
303# include <pthread.h>
304#endif
305
760ac839
LW
306#ifndef _TYPES_ /* If types.h defines this it's easy. */
307# ifndef major /* Does everyone's types.h define this? */
308# include <sys/types.h>
c07a80fd 309# endif
663a0e37
LW
310#endif
311
760ac839
LW
312#ifdef __cplusplus
313# ifndef I_STDARG
314# define I_STDARG 1
315# endif
316#endif
317
318#ifdef I_STDARG
319# include <stdarg.h>
320#else
321# ifdef I_VARARGS
322# include <varargs.h>
323# endif
324#endif
325
0f4eea8f 326#include "iperlsys.h"
0c30d9ec 327
4633a7c4 328#ifdef USE_NEXT_CTYPE
0c30d9ec 329
092bebab
JH
330#if NX_CURRENT_COMPILER_RELEASE >= 500
331# include <bsd/ctypes.h>
332#else
333# if NX_CURRENT_COMPILER_RELEASE >= 400
334# include <objc/NXCType.h>
335# else /* NX_CURRENT_COMPILER_RELEASE < 400 */
336# include <appkit/NXCType.h>
337# endif /* NX_CURRENT_COMPILER_RELEASE >= 400 */
338#endif /* NX_CURRENT_COMPILER_RELEASE >= 500 */
0c30d9ec 339
340#else /* !USE_NEXT_CTYPE */
fe14fcc3 341#include <ctype.h>
0c30d9ec 342#endif /* USE_NEXT_CTYPE */
a0d0e21e
LW
343
344#ifdef METHOD /* Defined by OSF/1 v3.0 by ctype.h */
345#undef METHOD
a0d0e21e
LW
346#endif
347
4633a7c4 348#ifdef I_LOCALE
36477c24 349# include <locale.h>
4633a7c4
LW
350#endif
351
36477c24 352#if !defined(NO_LOCALE) && defined(HAS_SETLOCALE)
353# define USE_LOCALE
354# if !defined(NO_LOCALE_COLLATE) && defined(LC_COLLATE) \
355 && defined(HAS_STRXFRM)
356# define USE_LOCALE_COLLATE
357# endif
358# if !defined(NO_LOCALE_CTYPE) && defined(LC_CTYPE)
359# define USE_LOCALE_CTYPE
360# endif
361# if !defined(NO_LOCALE_NUMERIC) && defined(LC_NUMERIC)
362# define USE_LOCALE_NUMERIC
363# endif
364#endif /* !NO_LOCALE && HAS_SETLOCALE */
a0d0e21e 365
fe14fcc3 366#include <setjmp.h>
79072805 367
a0d0e21e 368#ifdef I_SYS_PARAM
79072805
LW
369# ifdef PARAM_NEEDS_TYPES
370# include <sys/types.h>
371# endif
372# include <sys/param.h>
352d5a3a 373#endif
79072805
LW
374
375
376/* Use all the "standard" definitions? */
a0d0e21e 377#if defined(STANDARD_C) && defined(I_STDLIB)
79072805 378# include <stdlib.h>
ff68c719 379#endif
03a14243 380
c31fac66
GS
381#define MEM_SIZE Size_t
382
55497cff 383/* This comes after <stdlib.h> so we don't try to change the standard
384 * library prototypes; we'll use our own in proto.h instead. */
03a14243 385
4633a7c4 386#ifdef MYMALLOC
86058a2d
GS
387# ifdef PERL_POLLUTE_MALLOC
388# define Perl_malloc malloc
389# define Perl_calloc calloc
390# define Perl_realloc realloc
391# define Perl_mfree free
392# else
393# define EMBEDMYMALLOC /* for compatibility */
394# endif
c31fac66
GS
395Malloc_t Perl_malloc _((MEM_SIZE nbytes));
396Malloc_t Perl_calloc _((MEM_SIZE elements, MEM_SIZE size));
397Malloc_t Perl_realloc _((Malloc_t where, MEM_SIZE nbytes));
86058a2d
GS
398/* 'mfree' rather than 'free', since there is already a 'perl_free'
399 * that causes clashes with case-insensitive linkers */
400Free_t Perl_mfree _((Malloc_t where));
55497cff 401
651b9576
GS
402# define safemalloc Perl_malloc
403# define safecalloc Perl_calloc
404# define saferealloc Perl_realloc
405# define safefree Perl_mfree
f2517201
GS
406#else /* MYMALLOC */
407# define safemalloc safesysmalloc
408# define safecalloc safesyscalloc
409# define saferealloc safesysrealloc
410# define safefree safesysfree
55497cff 411#endif /* MYMALLOC */
4633a7c4 412
ff68c719 413#if defined(STANDARD_C) && defined(I_STDDEF)
414# include <stddef.h>
71be2cbc 415# define STRUCT_OFFSET(s,m) offsetof(s,m)
ff68c719 416#else
71be2cbc 417# define STRUCT_OFFSET(s,m) (Size_t)(&(((s *)0)->m))
ff68c719 418#endif
419
a0d0e21e
LW
420#if defined(I_STRING) || defined(__cplusplus)
421# include <string.h>
422#else
423# include <strings.h>
424#endif
425
426#if !defined(HAS_STRCHR) && defined(HAS_INDEX) && !defined(strchr)
427#define strchr index
428#define strrchr rindex
429#endif
430
16d20bd9
AD
431#ifdef I_MEMORY
432# include <memory.h>
433#endif
434
fe14fcc3 435#ifdef HAS_MEMCPY
85e6fe83 436# if !defined(STANDARD_C) && !defined(I_STRING) && !defined(I_MEMORY)
fe14fcc3 437# ifndef memcpy
a0d0e21e 438 extern char * memcpy _((char*, char*, int));
ee0007ab
LW
439# endif
440# endif
441#else
442# ifndef memcpy
443# ifdef HAS_BCOPY
444# define memcpy(d,s,l) bcopy(s,d,l)
445# else
446# define memcpy(d,s,l) my_bcopy(s,d,l)
447# endif
448# endif
449#endif /* HAS_MEMCPY */
fe14fcc3 450
ee0007ab 451#ifdef HAS_MEMSET
85e6fe83 452# if !defined(STANDARD_C) && !defined(I_STRING) && !defined(I_MEMORY)
ee0007ab 453# ifndef memset
a0d0e21e 454 extern char *memset _((char*, int, int));
ee0007ab
LW
455# endif
456# endif
ee0007ab 457#else
fc36a67e 458# define memset(d,c,l) my_memset(d,c,l)
ee0007ab
LW
459#endif /* HAS_MEMSET */
460
85e6fe83 461#if !defined(HAS_MEMMOVE) && !defined(memmove)
2304df62 462# if defined(HAS_BCOPY) && defined(HAS_SAFE_BCOPY)
79072805
LW
463# define memmove(d,s,l) bcopy(s,d,l)
464# else
2304df62 465# if defined(HAS_MEMCPY) && defined(HAS_SAFE_MEMCPY)
79072805 466# define memmove(d,s,l) memcpy(d,s,l)
ee0007ab 467# else
79072805 468# define memmove(d,s,l) my_bcopy(s,d,l)
ee0007ab 469# endif
352d5a3a 470# endif
d9d8d8de 471#endif
ee0007ab 472
36477c24 473#if defined(mips) && defined(ultrix) && !defined(__STDC__)
474# undef HAS_MEMCMP
475#endif
476
477#if defined(HAS_MEMCMP) && defined(HAS_SANE_MEMCMP)
85e6fe83 478# if !defined(STANDARD_C) && !defined(I_STRING) && !defined(I_MEMORY)
ee0007ab 479# ifndef memcmp
a0d0e21e 480 extern int memcmp _((char*, char*, int));
ee0007ab
LW
481# endif
482# endif
36477c24 483# ifdef BUGGY_MSC
484 # pragma function(memcmp)
485# endif
ee0007ab
LW
486#else
487# ifndef memcmp
ecfc5424 488# define memcmp my_memcmp
352d5a3a 489# endif
36477c24 490#endif /* HAS_MEMCMP && HAS_SANE_MEMCMP */
8d063cd8 491
fc36a67e 492#ifndef memzero
c635e13b 493# ifdef HAS_MEMSET
494# define memzero(d,l) memset(d,0,l)
79072805 495# else
c635e13b 496# ifdef HAS_BZERO
497# define memzero(d,l) bzero(d,l)
79072805 498# else
fc36a67e 499# define memzero(d,l) my_bzero(d,l)
79072805
LW
500# endif
501# endif
d9d8d8de 502#endif
378cc40b 503
36477c24 504#ifndef HAS_BCMP
505# ifndef bcmp
506# define bcmp(s1,s2,l) memcmp(s1,s2,l)
79072805 507# endif
36477c24 508#endif /* !HAS_BCMP */
378cc40b 509
ae986130 510#ifdef I_NETINET_IN
79072805 511# include <netinet/in.h>
ae986130
LW
512#endif
513
28e8609d
JH
514#ifdef I_ARPA_INET
515# include <arpa/inet.h>
516#endif
517
84902520
TB
518#if defined(SF_APPEND) && defined(USE_SFIO) && defined(I_SFIO)
519/* <sfio.h> defines SF_APPEND and <sys/stat.h> might define SF_APPEND
520 * (the neo-BSD seem to do this). */
521# undef SF_APPEND
522#endif
523
1aef975c 524#ifdef I_SYS_STAT
84902520 525# include <sys/stat.h>
1aef975c 526#endif
79072805 527
a0d0e21e
LW
528/* The stat macros for Amdahl UTS, Unisoft System V/88 (and derivatives
529 like UTekV) are broken, sometimes giving false positives. Undefine
530 them here and let the code below set them to proper values.
531
532 The ghs macro stands for GreenHills Software C-1.8.5 which
533 is the C compiler for sysV88 and the various derivatives.
534 This header file bug is corrected in gcc-2.5.8 and later versions.
535 --Kaveh Ghazi (ghazi@noc.rutgers.edu) 10/3/94. */
536
537#if defined(uts) || (defined(m88k) && defined(ghs))
79072805
LW
538# undef S_ISDIR
539# undef S_ISCHR
540# undef S_ISBLK
541# undef S_ISREG
542# undef S_ISFIFO
543# undef S_ISLNK
ee0007ab 544#endif
135863df 545
663a0e37
LW
546#ifdef I_TIME
547# include <time.h>
ffed7fef 548#endif
663a0e37 549
fe14fcc3 550#ifdef I_SYS_TIME
85e6fe83 551# ifdef I_SYS_TIME_KERNEL
663a0e37
LW
552# define KERNEL
553# endif
554# include <sys/time.h>
85e6fe83 555# ifdef I_SYS_TIME_KERNEL
663a0e37
LW
556# undef KERNEL
557# endif
a687059c 558#endif
135863df 559
55497cff 560#if defined(HAS_TIMES) && defined(I_SYS_TIMES)
85e6fe83 561# include <sys/times.h>
d9d8d8de 562#endif
8d063cd8 563
fe14fcc3 564#if defined(HAS_STRERROR) && (!defined(HAS_MKDIR) || !defined(HAS_RMDIR))
79072805 565# undef HAS_STRERROR
663a0e37
LW
566#endif
567
568#include <errno.h>
ed6116ce 569#ifdef HAS_SOCKET
85e6fe83 570# ifdef I_NET_ERRNO
ed6116ce
LW
571# include <net/errno.h>
572# endif
573#endif
f86702cc 574
575#ifdef VMS
576# define SETERRNO(errcode,vmserrcode) \
577 STMT_START { \
578 set_errno(errcode); \
579 set_vaxc_errno(vmserrcode); \
580 } STMT_END
748a9306 581#else
aba27d88 582# define SETERRNO(errcode,vmserrcode) (errno = (errcode))
748a9306 583#endif
ed6116ce 584
38a03e6e
MB
585#ifdef USE_THREADS
586# define ERRSV (thr->errsv)
587# define ERRHV (thr->errhv)
940cb80d
MB
588# define DEFSV THREADSV(0)
589# define SAVE_DEFSV save_threadsv(0)
38a03e6e 590#else
3280af22
NIS
591# define ERRSV GvSV(PL_errgv)
592# define ERRHV GvHV(PL_errgv)
593# define DEFSV GvSV(PL_defgv)
594# define SAVE_DEFSV SAVESPTR(GvSV(PL_defgv))
38a03e6e
MB
595#endif /* USE_THREADS */
596
55497cff 597#ifndef errno
5ff3f7a4
GS
598 extern int errno; /* ANSI allows errno to be an lvalue expr.
599 * For example in multithreaded environments
600 * something like this might happen:
601 * extern int *_errno(void);
602 * #define errno (*_errno()) */
d9d8d8de 603#endif
663a0e37 604
2304df62 605#ifdef HAS_STRERROR
a0d0e21e
LW
606# ifdef VMS
607 char *strerror _((int,...));
608# else
68dc0745 609#ifndef DONT_DECLARE_STD
a0d0e21e 610 char *strerror _((int));
68dc0745 611#endif
a0d0e21e 612# endif
2304df62
AD
613# ifndef Strerror
614# define Strerror strerror
615# endif
616#else
617# ifdef HAS_SYS_ERRLIST
79072805
LW
618 extern int sys_nerr;
619 extern char *sys_errlist[];
2304df62
AD
620# ifndef Strerror
621# define Strerror(e) \
79072805 622 ((e) < 0 || (e) >= sys_nerr ? "(unknown)" : sys_errlist[e])
2304df62 623# endif
79072805 624# endif
35c8bce7 625#endif
663a0e37 626
2304df62 627#ifdef I_SYS_IOCTL
79072805
LW
628# ifndef _IOCTL_
629# include <sys/ioctl.h>
630# endif
a687059c
LW
631#endif
632
ee0007ab 633#if defined(mc300) || defined(mc500) || defined(mc700) || defined(mc6000)
79072805
LW
634# ifdef HAS_SOCKETPAIR
635# undef HAS_SOCKETPAIR
636# endif
2304df62
AD
637# ifdef I_NDBM
638# undef I_NDBM
79072805 639# endif
a687059c
LW
640#endif
641
a687059c 642#if INTSIZE == 2
79072805
LW
643# define htoni htons
644# define ntohi ntohs
a687059c 645#else
79072805
LW
646# define htoni htonl
647# define ntohi ntohl
a687059c
LW
648#endif
649
a0d0e21e 650/* Configure already sets Direntry_t */
35c8bce7 651#if defined(I_DIRENT)
663a0e37 652# include <dirent.h>
8f1f23e8
W
653 /* NeXT needs dirent + sys/dir.h */
654# if defined(I_SYS_DIR) && (defined(NeXT) || defined(__NeXT__))
a0d0e21e
LW
655# include <sys/dir.h>
656# endif
ae986130 657#else
fe14fcc3 658# ifdef I_SYS_NDIR
79a0689e 659# include <sys/ndir.h>
663a0e37 660# else
fe14fcc3 661# ifdef I_SYS_DIR
79a0689e
LW
662# ifdef hp9000s500
663# include <ndir.h> /* may be wrong in the future */
664# else
665# include <sys/dir.h>
666# endif
663a0e37
LW
667# endif
668# endif
4633a7c4 669#endif
a687059c 670
352d5a3a
LW
671#ifdef FPUTS_BOTCH
672/* work around botch in SunOS 4.0.1 and 4.0.2 */
673# ifndef fputs
79072805 674# define fputs(sv,fp) fprintf(fp,"%s",sv)
352d5a3a
LW
675# endif
676#endif
677
c623bd54
LW
678/*
679 * The following gobbledygook brought to you on behalf of __STDC__.
680 * (I could just use #ifndef __STDC__, but this is more bulletproof
681 * in the face of half-implementations.)
682 */
683
684#ifndef S_IFMT
685# ifdef _S_IFMT
686# define S_IFMT _S_IFMT
687# else
688# define S_IFMT 0170000
689# endif
690#endif
691
692#ifndef S_ISDIR
693# define S_ISDIR(m) ((m & S_IFMT) == S_IFDIR)
694#endif
695
696#ifndef S_ISCHR
697# define S_ISCHR(m) ((m & S_IFMT) == S_IFCHR)
698#endif
699
700#ifndef S_ISBLK
fe14fcc3
LW
701# ifdef S_IFBLK
702# define S_ISBLK(m) ((m & S_IFMT) == S_IFBLK)
703# else
704# define S_ISBLK(m) (0)
705# endif
c623bd54
LW
706#endif
707
708#ifndef S_ISREG
709# define S_ISREG(m) ((m & S_IFMT) == S_IFREG)
710#endif
711
712#ifndef S_ISFIFO
fe14fcc3
LW
713# ifdef S_IFIFO
714# define S_ISFIFO(m) ((m & S_IFMT) == S_IFIFO)
715# else
716# define S_ISFIFO(m) (0)
717# endif
c623bd54
LW
718#endif
719
720#ifndef S_ISLNK
721# ifdef _S_ISLNK
722# define S_ISLNK(m) _S_ISLNK(m)
723# else
724# ifdef _S_IFLNK
725# define S_ISLNK(m) ((m & S_IFMT) == _S_IFLNK)
726# else
727# ifdef S_IFLNK
728# define S_ISLNK(m) ((m & S_IFMT) == S_IFLNK)
729# else
730# define S_ISLNK(m) (0)
731# endif
732# endif
733# endif
734#endif
735
736#ifndef S_ISSOCK
737# ifdef _S_ISSOCK
738# define S_ISSOCK(m) _S_ISSOCK(m)
739# else
740# ifdef _S_IFSOCK
741# define S_ISSOCK(m) ((m & S_IFMT) == _S_IFSOCK)
742# else
743# ifdef S_IFSOCK
744# define S_ISSOCK(m) ((m & S_IFMT) == S_IFSOCK)
745# else
746# define S_ISSOCK(m) (0)
747# endif
748# endif
749# endif
750#endif
751
752#ifndef S_IRUSR
753# ifdef S_IREAD
754# define S_IRUSR S_IREAD
755# define S_IWUSR S_IWRITE
756# define S_IXUSR S_IEXEC
757# else
758# define S_IRUSR 0400
759# define S_IWUSR 0200
760# define S_IXUSR 0100
761# endif
762# define S_IRGRP (S_IRUSR>>3)
763# define S_IWGRP (S_IWUSR>>3)
764# define S_IXGRP (S_IXUSR>>3)
765# define S_IROTH (S_IRUSR>>6)
766# define S_IWOTH (S_IWUSR>>6)
767# define S_IXOTH (S_IXUSR>>6)
768#endif
769
770#ifndef S_ISUID
771# define S_ISUID 04000
772#endif
773
774#ifndef S_ISGID
775# define S_ISGID 02000
776#endif
777
79072805
LW
778#ifdef ff_next
779# undef ff_next
352d5a3a
LW
780#endif
781
a0d0e21e 782#if defined(cray) || defined(gould) || defined(i860) || defined(pyr)
45d8adaa
LW
783# define SLOPPYDIVIDE
784#endif
785
748a9306
LW
786#ifdef UV
787#undef UV
788#endif
789
5ff3f7a4
GS
790#ifdef I_INTTYPES
791#include <inttypes.h>
792#endif
793
27d4fb96 794/* XXX QUAD stuff is not currently supported on most systems.
795 Specifically, perl internals don't support long long. Among
796 the many problems is that some compilers support long long,
797 but the underlying library functions (such as sprintf) don't.
798 Some things do work (such as quad pack/unpack on convex);
799 also some systems use long long for the fpos_t typedef. That
800 seems to work too.
801
802 The IV type is supposed to be long enough to hold any integral
803 value or a pointer.
804 --Andy Dougherty August 1996
805*/
806
5ff3f7a4
GS
807/* Much more 64-bit probing added. Now we should get Quad_t
808 in most systems: int64_t, long long, long, int, will do.
809
810 Beware of LP32 systems (ILP32, ILP32LL64). Such systems have been
811 used to sizeof(long) == sizeof(foo*). This is a bad assumption
812 because then IV/UV have been 32 bits, too. Which, in turn means
813 that even if the system has quads (e.g. long long), IV cannot be a
814 quad. Introducing a 64-bit IV (because of long long existing)
85ab1d1d 815 will introduce binary incompatibility.
5ff3f7a4
GS
816
817 Summary: a long long system needs to add -DUSE_LONG_LONG to $ccflags
818 to get quads -- and if its pointers are still 32 bits, this will break
819 binary compatibility. Casting an IV (a long long) to a pointer will
820 truncate half of the IV away.
821
822 --jhi September 1998 */
823
824#if INTSIZE == 4 && LONGSIZE == 4 && PTRSIZE == 4
825# define PERL_ILP32
826# if defined(HAS_LONG_LONG) && LONGLONGSIZE == 8
827# define PERL_ILP32LL64
45d8adaa 828# endif
f86702cc 829#endif
830
5ff3f7a4
GS
831#if LONGSIZE == 8 && PTRSIZE == 8
832# define PERL_LP64
833# if INTSIZE == 8
834# define PERL_ILP64
835# endif
836#endif
837
03145268
SH
838#ifndef Quad_t
839# if LONGSIZE == 8
840# define Quad_t long
e862df63 841# define Uquad_t unsigned long
5ff3f7a4 842# define PERL_QUAD_IS_LONG
03145268
SH
843# endif
844#endif
845
846#ifndef Quad_t
847# if INTSIZE == 8
848# define Quad_t int
e862df63 849# define Uquad_t unsigned int
03145268
SH
850# define PERL_QUAD_IS_INT
851# endif
852#endif
853
854#ifndef Quad_t
855# ifdef USE_LONG_LONG /* See above note about LP32. --jhi */
856# if defined(HAS_LONG_LONG) && LONGLONGSIZE == 8
857# define Quad_t long long
e862df63 858# define Uquad_t unsigned long long
03145268 859# define PERL_QUAD_IS_LONG_LONG
5ff3f7a4 860# endif
03145268
SH
861# endif
862#endif
863
864#ifndef Quad_t
865# ifdef HAS_INT64_T
866# define Quad_t int64_t
867# define Uquad_t uint64_t
868# define PERL_QUAD_IS_INT64_T
869# endif
6ee623d5
GS
870#endif
871
f86702cc 872#ifdef Quad_t
873# define HAS_QUAD
03145268 874# ifndef Uquad_t
e862df63
HB
875 /* Note that if your Quad_t is a typedef (not a #define) you *MUST*
876 * have defined by now Uquad_t yourself because 'unsigned type'
877 * is illegal. */
03145268
SH
878# define Uquad_t unsigned Quad_t
879# endif
5ff3f7a4
GS
880#endif
881
03145268
SH
882#if defined(USE_64_BITS) && defined(HAS_QUAD)
883# ifdef PERL_QUAD_IS_LONG /* LP64 */
884 typedef long IV;
885 typedef unsigned long UV;
886# else
887# ifdef PERL_QUAD_IS_INT /* ILP64 */
888 typedef int IV;
889 typedef unsigned int UV;
890# else
891# ifdef PERL_QUAD_IS_LONG_LONG /* LL64 */
892 typedef long long IV;
893 typedef unsigned long long UV;
894# else
895# ifdef PERL_QUAD_IS_INT64_T /* C9X */
896 typedef int64_t IV;
897 typedef uint64_t UV;
898# endif
899# endif
900# endif
901# endif
5ff3f7a4
GS
902# if defined(PERL_QUAD_IS_INT64_T) && defined(INT64_MAX)
903# define IV_MAX INT64_MAX
904# define IV_MIN INT64_MIN
905# define UV_MAX UINT64_MAX
906# define UV_MIN UINT64_MIN
907# else
908# define IV_MAX PERL_QUAD_MAX
909# define IV_MIN PERL_QUAD_MIN
910# define UV_MAX PERL_UQUAD_MAX
911# define UV_MIN PERL_UQUAD_MIN
912# endif
79072805 913#else
03145268
SH
914 typedef long IV;
915 typedef unsigned long UV;
5ff3f7a4
GS
916# if defined(INT32_MAX) && LONGSIZE == 4
917# define IV_MAX INT32_MAX
918# define IV_MIN INT32_MIN
919# define UV_MAX UINT32_MAX
920# define UV_MIN UINT32_MIN
921# else
922# define IV_MAX PERL_LONG_MAX
923# define IV_MIN PERL_LONG_MIN
924# define UV_MAX PERL_ULONG_MAX
925# define UV_MIN PERL_ULONG_MIN
926# endif
79072805
LW
927#endif
928
760ac839
LW
929/* Previously these definitions used hardcoded figures.
930 * It is hoped these formula are more portable, although
931 * no data one way or another is presently known to me.
932 * The "PERL_" names are used because these calculated constants
933 * do not meet the ANSI requirements for LONG_MAX, etc., which
934 * need to be constants acceptable to #if - kja
935 * define PERL_LONG_MAX 2147483647L
936 * define PERL_LONG_MIN (-LONG_MAX - 1)
937 * define PERL ULONG_MAX 4294967295L
938 */
939
940#ifdef I_LIMITS /* Needed for cast_xxx() functions below. */
941# include <limits.h>
942#else
943#ifdef I_VALUES
944# include <values.h>
945#endif
946#endif
947
99abf803 948/*
949 * Try to figure out max and min values for the integral types. THE CORRECT
950 * SOLUTION TO THIS MESS: ADAPT enquire.c FROM GCC INTO CONFIGURE. The
951 * following hacks are used if neither limits.h or values.h provide them:
952 * U<TYPE>_MAX: for types >= int: ~(unsigned TYPE)0
953 * for types < int: (unsigned TYPE)~(unsigned)0
954 * The argument to ~ must be unsigned so that later signed->unsigned
955 * conversion can't modify the value's bit pattern (e.g. -0 -> +0),
956 * and it must not be smaller than int because ~ does integral promotion.
957 * <type>_MAX: (<type>) (U<type>_MAX >> 1)
958 * <type>_MIN: -<type>_MAX - <is_twos_complement_architecture: (3 & -1) == 3>.
959 * The latter is a hack which happens to work on some machines but
960 * does *not* catch any random system, or things like integer types
961 * with NaN if that is possible.
962 *
963 * All of the types are explicitly cast to prevent accidental loss of
964 * numeric range, and in the hope that they will be less likely to confuse
965 * over-eager optimizers.
966 *
967 */
27d4fb96 968
99abf803 969#define PERL_UCHAR_MIN ((unsigned char)0)
970
971#ifdef UCHAR_MAX
972# define PERL_UCHAR_MAX ((unsigned char)UCHAR_MAX)
27d4fb96 973#else
99abf803 974# ifdef MAXUCHAR
975# define PERL_UCHAR_MAX ((unsigned char)MAXUCHAR)
27d4fb96 976# else
99abf803 977# define PERL_UCHAR_MAX ((unsigned char)~(unsigned)0)
27d4fb96 978# endif
979#endif
99abf803 980
981/*
982 * CHAR_MIN and CHAR_MAX are not included here, as the (char) type may be
983 * ambiguous. It may be equivalent to (signed char) or (unsigned char)
984 * depending on local options. Until Configure detects this (or at least
985 * detects whether the "signed" keyword is available) the CHAR ranges
986 * will not be included. UCHAR functions normally.
987 * - kja
988 */
27d4fb96 989
99abf803 990#define PERL_USHORT_MIN ((unsigned short)0)
991
992#ifdef USHORT_MAX
993# define PERL_USHORT_MAX ((unsigned short)USHORT_MAX)
27d4fb96 994#else
99abf803 995# ifdef MAXUSHORT
996# define PERL_USHORT_MAX ((unsigned short)MAXUSHORT)
27d4fb96 997# else
ef2f54b0
CB
998# ifdef USHRT_MAX
999# define PERL_USHORT_MAX ((unsigned short)USHRT_MAX)
1000# else
1001# define PERL_USHORT_MAX ((unsigned short)~(unsigned)0)
1002# endif
27d4fb96 1003# endif
1004#endif
1005
27d4fb96 1006#ifdef SHORT_MAX
99abf803 1007# define PERL_SHORT_MAX ((short)SHORT_MAX)
27d4fb96 1008#else
1009# ifdef MAXSHORT /* Often used in <values.h> */
99abf803 1010# define PERL_SHORT_MAX ((short)MAXSHORT)
27d4fb96 1011# else
ef2f54b0
CB
1012# ifdef SHRT_MAX
1013# define PERL_SHORT_MAX ((short)SHRT_MAX)
1014# else
1015# define PERL_SHORT_MAX ((short) (PERL_USHORT_MAX >> 1))
1016# endif
27d4fb96 1017# endif
1018#endif
1019
1020#ifdef SHORT_MIN
99abf803 1021# define PERL_SHORT_MIN ((short)SHORT_MIN)
27d4fb96 1022#else
1023# ifdef MINSHORT
99abf803 1024# define PERL_SHORT_MIN ((short)MINSHORT)
27d4fb96 1025# else
ef2f54b0
CB
1026# ifdef SHRT_MIN
1027# define PERL_SHORT_MIN ((short)SHRT_MIN)
1028# else
1029# define PERL_SHORT_MIN (-PERL_SHORT_MAX - ((3 & -1) == 3))
1030# endif
27d4fb96 1031# endif
1032#endif
1033
99abf803 1034#ifdef UINT_MAX
1035# define PERL_UINT_MAX ((unsigned int)UINT_MAX)
27d4fb96 1036#else
99abf803 1037# ifdef MAXUINT
1038# define PERL_UINT_MAX ((unsigned int)MAXUINT)
27d4fb96 1039# else
99abf803 1040# define PERL_UINT_MAX (~(unsigned int)0)
27d4fb96 1041# endif
1042#endif
1043
99abf803 1044#define PERL_UINT_MIN ((unsigned int)0)
27d4fb96 1045
1046#ifdef INT_MAX
99abf803 1047# define PERL_INT_MAX ((int)INT_MAX)
27d4fb96 1048#else
1049# ifdef MAXINT /* Often used in <values.h> */
99abf803 1050# define PERL_INT_MAX ((int)MAXINT)
27d4fb96 1051# else
99abf803 1052# define PERL_INT_MAX ((int)(PERL_UINT_MAX >> 1))
27d4fb96 1053# endif
1054#endif
1055
1056#ifdef INT_MIN
99abf803 1057# define PERL_INT_MIN ((int)INT_MIN)
27d4fb96 1058#else
1059# ifdef MININT
99abf803 1060# define PERL_INT_MIN ((int)MININT)
27d4fb96 1061# else
1062# define PERL_INT_MIN (-PERL_INT_MAX - ((3 & -1) == 3))
1063# endif
1064#endif
1065
99abf803 1066#ifdef ULONG_MAX
1067# define PERL_ULONG_MAX ((unsigned long)ULONG_MAX)
27d4fb96 1068#else
99abf803 1069# ifdef MAXULONG
1070# define PERL_ULONG_MAX ((unsigned long)MAXULONG)
27d4fb96 1071# else
99abf803 1072# define PERL_ULONG_MAX (~(unsigned long)0)
27d4fb96 1073# endif
1074#endif
1075
99abf803 1076#define PERL_ULONG_MIN ((unsigned long)0L)
27d4fb96 1077
760ac839 1078#ifdef LONG_MAX
99abf803 1079# define PERL_LONG_MAX ((long)LONG_MAX)
760ac839
LW
1080#else
1081# ifdef MAXLONG /* Often used in <values.h> */
99abf803 1082# define PERL_LONG_MAX ((long)MAXLONG)
760ac839 1083# else
99abf803 1084# define PERL_LONG_MAX ((long) (PERL_ULONG_MAX >> 1))
760ac839
LW
1085# endif
1086#endif
1087
1088#ifdef LONG_MIN
99abf803 1089# define PERL_LONG_MIN ((long)LONG_MIN)
760ac839
LW
1090#else
1091# ifdef MINLONG
99abf803 1092# define PERL_LONG_MIN ((long)MINLONG)
760ac839 1093# else
27d4fb96 1094# define PERL_LONG_MIN (-PERL_LONG_MAX - ((3 & -1) == 3))
760ac839
LW
1095# endif
1096#endif
1097
99abf803 1098#ifdef HAS_QUAD
1099
1100# ifdef UQUAD_MAX
1101# define PERL_UQUAD_MAX ((UV)UQUAD_MAX)
760ac839 1102# else
99abf803 1103# define PERL_UQUAD_MAX (~(UV)0)
760ac839 1104# endif
760ac839 1105
99abf803 1106# define PERL_UQUAD_MIN ((UV)0)
27d4fb96 1107
27d4fb96 1108# ifdef QUAD_MAX
99abf803 1109# define PERL_QUAD_MAX ((IV)QUAD_MAX)
27d4fb96 1110# else
99abf803 1111# define PERL_QUAD_MAX ((IV) (PERL_UQUAD_MAX >> 1))
27d4fb96 1112# endif
1113
1114# ifdef QUAD_MIN
99abf803 1115# define PERL_QUAD_MIN ((IV)QUAD_MIN)
27d4fb96 1116# else
a6e633de 1117# define PERL_QUAD_MIN (-PERL_QUAD_MAX - ((3 & -1) == 3))
27d4fb96 1118# endif
1119
79072805
LW
1120#endif
1121
ee0007ab 1122typedef MEM_SIZE STRLEN;
450a55e4 1123
79072805
LW
1124typedef struct op OP;
1125typedef struct cop COP;
1126typedef struct unop UNOP;
1127typedef struct binop BINOP;
1128typedef struct listop LISTOP;
1129typedef struct logop LOGOP;
1130typedef struct condop CONDOP;
1131typedef struct pmop PMOP;
1132typedef struct svop SVOP;
1133typedef struct gvop GVOP;
1134typedef struct pvop PVOP;
79072805
LW
1135typedef struct loop LOOP;
1136
1137typedef struct Outrec Outrec;
93a17b20 1138typedef struct interpreter PerlInterpreter;
3e3baf6d
TB
1139#ifndef __BORLANDC__
1140typedef struct ff FF; /* XXX not defined anywhere, should go? */
1141#endif
79072805
LW
1142typedef struct sv SV;
1143typedef struct av AV;
1144typedef struct hv HV;
1145typedef struct cv CV;
378cc40b 1146typedef struct regexp REGEXP;
79072805 1147typedef struct gp GP;
0c30d9ec 1148typedef struct gv GV;
8990e307 1149typedef struct io IO;
c09156bb 1150typedef struct context PERL_CONTEXT;
79072805
LW
1151typedef struct block BLOCK;
1152
1153typedef struct magic MAGIC;
ed6116ce 1154typedef struct xrv XRV;
79072805
LW
1155typedef struct xpv XPV;
1156typedef struct xpviv XPVIV;
ff68c719 1157typedef struct xpvuv XPVUV;
79072805
LW
1158typedef struct xpvnv XPVNV;
1159typedef struct xpvmg XPVMG;
1160typedef struct xpvlv XPVLV;
1161typedef struct xpvav XPVAV;
1162typedef struct xpvhv XPVHV;
1163typedef struct xpvgv XPVGV;
1164typedef struct xpvcv XPVCV;
1165typedef struct xpvbm XPVBM;
1166typedef struct xpvfm XPVFM;
8990e307 1167typedef struct xpvio XPVIO;
79072805
LW
1168typedef struct mgvtbl MGVTBL;
1169typedef union any ANY;
8d063cd8 1170
378cc40b 1171#include "handy.h"
a0d0e21e 1172
03145268
SH
1173/* Some day when we have more 64-bit experience under our belts we may
1174 * be able to merge some of the USE_64_BIT_{FILES,OFFSETS,STDIO,DBM}. At
1175 * the moment (Oct 1998), though, keep them separate. --jhi
1176 */
5ff3f7a4
GS
1177#ifdef USE_64_BITS
1178# ifdef USE_64_BIT_FILES
03145268
SH
1179# ifndef USE_64_BIT_OFFSETS
1180# define USE_64_BIT_OFFSETS
5ff3f7a4
GS
1181# endif
1182# ifndef USE_64_BIT_STDIO
1183# define USE_64_BIT_STDIO
1184# endif
1185# ifndef USE_64_BIT_DBM
1186# define USE_64_BIT_DBM
1187# endif
1188# endif
03145268
SH
1189/* Mention LSEEKSIZE here to get it included in %Config. */
1190# ifdef USE_64_BIT_OFFSETS
5ff3f7a4
GS
1191# ifdef HAS_FSTAT64
1192# define fstat fstat64
1193# endif
1194# ifdef HAS_FTRUNCATE64
1195# define ftruncate ftruncate64
1196# endif
1197# ifdef HAS_LSEEK64
1198# define lseek lseek64
1199# ifdef HAS_OFF64_T
1200# undef Off_t
1201# define Off_t off64_t
1202# endif
1203# endif
1204# ifdef HAS_LSTAT64
1205# define lstat lstat64
1206# endif
1207 /* Some systems have open64() in libc but use that only
1208 * for true LP64 mode, in mixed mode (ILP32LL64, for example)
85ab1d1d
JH
1209 * they use the vanilla open(). Such systems should undefine
1210 * d_open64 in their hints files. --jhi */
1211# if defined(HAS_OPEN64)
5ff3f7a4
GS
1212# define open open64
1213# endif
1214# ifdef HAS_OPENDIR64
1215# define opendir opendir64
1216# endif
1217# ifdef HAS_READDIR64
1218# define readdir readdir64
1219# ifdef HAS_STRUCT_DIRENT64
1220# define dirent dirent64
1221# endif
1222# endif
1223# ifdef HAS_SEEKDIR64
1224# define seekdir seekdir64
1225# endif
1226# ifdef HAS_STAT64
1227# define stat stat64 /* Affects also struct stat, hopefully okay. */
1228# endif
1229# ifdef HAS_TELLDIR64
1230# define telldir telldir64
1231# endif
1232# ifdef HAS_TRUNCATE64
1233# define truncate truncate64
1234# endif
1235 /* flock is not #defined here to be flock64 because it seems
1236 that a system may have struct flock64 but still use flock()
1237 and not flock64(). The actual flocking code in pp_sys.c
1238 must be changed. Also lockf and lockf64 must be dealt
1239 with in pp_sys.c. --jhi */
1240# endif
1241# ifdef USE_64_BIT_STDIO
1242# ifdef HAS_FGETPOS64
1243# define fgetpos fgetpos64
1244# endif
1245# ifdef HAS_FOPEN64
1246# define fopen fopen64
1247# endif
1248# ifdef HAS_FREOPEN64
1249# define freopen freopen64
1250# endif
1251# ifdef HAS_FSEEK64
1252# define fseek fseek64
1253# endif
1254# ifdef HAS_FSEEKO64
1255# define fseeko fseeko64
1256# endif
1257# ifdef HAS_FSETPOS64
1258# define fsetpos fsetpos64
1259# endif
1260# ifdef HAS_FTELL64
1261# define ftell ftell64
1262# endif
1263# ifdef HAS_FTELLO64
1264# define ftello ftello64
1265# endif
1266# ifdef HAS_TMPFILE64
1267# define tmpfile tmpfile64
1268# endif
1269# endif
1270# ifdef USE_64_BIT_DBM
1271# ifdef HAS_DBMINIT64
1272# define dbminit dbminit64
1273# endif
1274# ifdef HAS_DBMCLOSE64
1275# define dbmclose dbmclose64
1276# endif
1277# ifdef HAS_FETCH64
1278# define fetch fetch64
1279# endif
1280# ifdef HAS_DELETE64
1281# define delete delete64
1282# endif
1283# ifdef HAS_STORE64
1284# define store store64
1285# endif
1286# ifdef HAS_FIRSTKEY64
1287# define firstkey firstkey64
1288# endif
1289# ifdef HAS_NEXTKEY64
1290# define nextkey nextkey64
1291# endif
1292# endif
1293#endif
1294
873ef191
GS
1295#ifdef PERL_OBJECT
1296typedef I32 (*filter_t) _((CPerlObj*, int, SV *, int));
1297#else
16d20bd9 1298typedef I32 (*filter_t) _((int, SV *, int));
873ef191
GS
1299#endif
1300
16d20bd9 1301#define FILTER_READ(idx, sv, len) filter_read(idx, sv, len)
3280af22
NIS
1302#define FILTER_DATA(idx) (AvARRAY(PL_rsfp_filters)[idx])
1303#define FILTER_ISREADER(idx) (idx >= AvFILLp(PL_rsfp_filters))
16d20bd9 1304
6f71a643
JH
1305#if defined(__OPEN_VM)
1306# include "vmesa/vmesaish.h"
1307#endif
1308
748a9306 1309#ifdef DOSISH
4633a7c4
LW
1310# if defined(OS2)
1311# include "os2ish.h"
1312# else
748a9306 1313# include "dosish.h"
4633a7c4 1314# endif
a0d0e21e 1315#else
748a9306
LW
1316# if defined(VMS)
1317# include "vmsish.h"
1318# else
0c30d9ec 1319# if defined(PLAN9)
1320# include "./plan9/plan9ish.h"
1321# else
1d84e8df
JH
1322# if defined(MPE)
1323# include "mpeix/mpeixish.h"
1324# else
495c5fdc
PG
1325# if defined(__VOS__)
1326# include "vosish.h"
1327# else
6f71a643 1328# include "unixish.h"
495c5fdc 1329# endif
1d84e8df 1330# endif
0c30d9ec 1331# endif
748a9306 1332# endif
32f822de
GS
1333#endif
1334
0f31cffe
GS
1335#ifndef MAXPATHLEN
1336# ifdef PATH_MAX
b990c8b2
JH
1337# ifdef _POSIX_PATH_MAX
1338# if PATH_MAX > _POSIX_PATH_MAX
1339/* MAXPATHLEN is supposed to include the final null character,
1340 * as opposed to PATH_MAX and _POSIX_PATH_MAX. */
1341# define MAXPATHLEN (PATH_MAX+1)
1342# else
1343# define MAXPATHLEN (_POSIX_PATH_MAX+1)
1344# endif
1345# else
1346# define MAXPATHLEN (PATH_MAX+1)
1347# endif
0f31cffe 1348# else
b990c8b2
JH
1349# ifdef _POSIX_PATH_MAX
1350# define MAXPATHLEN (_POSIX_PATH_MAX+1)
1351# else
1352# define MAXPATHLEN 1024 /* Err on the large side. */
1353# endif
0f31cffe
GS
1354# endif
1355#endif
1356
ac4c12e7
GS
1357#ifndef FUNC_NAME_TO_PTR
1358#define FUNC_NAME_TO_PTR(name) name
1359#endif
1360
32f822de 1361/*
dd96f567
IZ
1362 * USE_THREADS needs to be after unixish.h as <pthread.h> includes
1363 * <sys/signal.h> which defines NSIG - which will stop inclusion of <signal.h>
32f822de
GS
1364 * this results in many functions being undeclared which bothers C++
1365 * May make sense to have threads after "*ish.h" anyway
1366 */
1367
1368#ifdef USE_THREADS
79d59c5f
GS
1369 /* pending resolution of licensing issues, we avoid the erstwhile
1370 * atomic.h everywhere */
1371# define EMULATE_ATOMIC_REFCOUNTS
1372
32f822de
GS
1373# ifdef FAKE_THREADS
1374# include "fakethr.h"
1375# else
1376# ifdef WIN32
1377# include <win32thread.h>
1378# else
dd96f567
IZ
1379# ifdef OS2
1380# include "os2thread.h"
1381# else
7f3d1cf1 1382# ifdef I_MACH_CTHREADS
bdd66968 1383# include <mach/cthreads.h>
8f1f23e8 1384# if (defined(NeXT) || defined(__NeXT__)) && defined(PERL_POLLUTE_MALLOC)
772fe5b3
HM
1385# define MUTEX_INIT_CALLS_MALLOC
1386# endif
7f3d1cf1
BH
1387typedef cthread_t perl_os_thread;
1388typedef mutex_t perl_mutex;
1389typedef condition_t perl_cond;
1390typedef void * perl_key;
1391# else /* Posix threads */
1392# include <pthread.h>
1393typedef pthread_t perl_os_thread;
1394typedef pthread_mutex_t perl_mutex;
1395typedef pthread_cond_t perl_cond;
1396typedef pthread_key_t perl_key;
1397# endif /* I_MACH_CTHREADS */
dd96f567 1398# endif /* OS2 */
32f822de
GS
1399# endif /* WIN32 */
1400# endif /* FAKE_THREADS */
1401#endif /* USE_THREADS */
3fc1aec6 1402
68dc0745 1403#ifdef VMS
6b88bc9c 1404# define STATUS_NATIVE PL_statusvalue_vms
68dc0745 1405# define STATUS_NATIVE_EXPORT \
6b88bc9c 1406 ((I32)PL_statusvalue_vms == -1 ? 44 : PL_statusvalue_vms)
68dc0745 1407# define STATUS_NATIVE_SET(n) \
1408 STMT_START { \
6b88bc9c
GS
1409 PL_statusvalue_vms = (n); \
1410 if ((I32)PL_statusvalue_vms == -1) \
3280af22 1411 PL_statusvalue = -1; \
6b88bc9c 1412 else if (PL_statusvalue_vms & STS$M_SUCCESS) \
3280af22 1413 PL_statusvalue = 0; \
6b88bc9c
GS
1414 else if ((PL_statusvalue_vms & STS$M_SEVERITY) == 0) \
1415 PL_statusvalue = 1 << 8; \
68dc0745 1416 else \
6b88bc9c 1417 PL_statusvalue = (PL_statusvalue_vms & STS$M_SEVERITY) << 8; \
68dc0745 1418 } STMT_END
3280af22 1419# define STATUS_POSIX PL_statusvalue
68dc0745 1420# ifdef VMSISH_STATUS
1421# define STATUS_CURRENT (VMSISH_STATUS ? STATUS_NATIVE : STATUS_POSIX)
1422# else
1423# define STATUS_CURRENT STATUS_POSIX
1424# endif
1425# define STATUS_POSIX_SET(n) \
1426 STMT_START { \
3280af22
NIS
1427 PL_statusvalue = (n); \
1428 if (PL_statusvalue != -1) { \
1429 PL_statusvalue &= 0xFFFF; \
6b88bc9c 1430 PL_statusvalue_vms = PL_statusvalue ? 44 : 1; \
68dc0745 1431 } \
6b88bc9c 1432 else PL_statusvalue_vms = -1; \
68dc0745 1433 } STMT_END
6b88bc9c
GS
1434# define STATUS_ALL_SUCCESS (PL_statusvalue = 0, PL_statusvalue_vms = 1)
1435# define STATUS_ALL_FAILURE (PL_statusvalue = 1, PL_statusvalue_vms = 44)
68dc0745 1436#else
1437# define STATUS_NATIVE STATUS_POSIX
1438# define STATUS_NATIVE_EXPORT STATUS_POSIX
1439# define STATUS_NATIVE_SET STATUS_POSIX_SET
3280af22 1440# define STATUS_POSIX PL_statusvalue
68dc0745 1441# define STATUS_POSIX_SET(n) \
1442 STMT_START { \
3280af22
NIS
1443 PL_statusvalue = (n); \
1444 if (PL_statusvalue != -1) \
1445 PL_statusvalue &= 0xFFFF; \
68dc0745 1446 } STMT_END
1447# define STATUS_CURRENT STATUS_POSIX
3280af22
NIS
1448# define STATUS_ALL_SUCCESS (PL_statusvalue = 0)
1449# define STATUS_ALL_FAILURE (PL_statusvalue = 1)
68dc0745 1450#endif
1451
45bc9206
GS
1452/* This defines a way to flush all output buffers. This may be a
1453 * performance issue, so we allow people to disable it.
1454 * XXX the default needs a Configure test, as it may not work everywhere.
1455 */
1456#ifndef PERL_FLUSHALL_FOR_CHILD
1457#define PERL_FLUSHALL_FOR_CHILD PerlIO_flush((PerlIO*)NULL)
1458#endif
1459
3fc1aec6 1460/* Some unistd.h's give a prototype for pause() even though
1461 HAS_PAUSE ends up undefined. This causes the #define
1462 below to be rejected by the compmiler. Sigh.
1463*/
1464#ifdef HAS_PAUSE
1465#define Pause pause
1466#else
1467#define Pause() sleep((32767<<16)+32767)
748a9306
LW
1468#endif
1469
1470#ifndef IOCPARM_LEN
1471# ifdef IOCPARM_MASK
1472 /* on BSDish systes we're safe */
1473# define IOCPARM_LEN(x) (((x) >> 16) & IOCPARM_MASK)
1474# else
1475 /* otherwise guess at what's safe */
1476# define IOCPARM_LEN(x) 256
1477# endif
a0d0e21e
LW
1478#endif
1479
0f4eea8f
DL
1480#ifdef UNION_ANY_DEFINITION
1481UNION_ANY_DEFINITION;
1482#else
79072805
LW
1483union any {
1484 void* any_ptr;
1485 I32 any_i32;
a0d0e21e 1486 IV any_iv;
85e6fe83 1487 long any_long;
565764a8 1488 void (CPERLscope(*any_dptr)) _((void*));
79072805 1489};
0f4eea8f 1490#endif
79072805 1491
11343788 1492#ifdef USE_THREADS
52e1cb5e 1493#define ARGSproto struct perl_thread *thr
11343788
MB
1494#else
1495#define ARGSproto void
1496#endif /* USE_THREADS */
1497
521e0776 1498#if defined(CYGWIN32)
521e0776
GS
1499/* USEMYBINMODE
1500 * This symbol, if defined, indicates that the program should
1501 * use the routine my_binmode(FILE *fp, char iotype) to insure
1502 * that a file is in "binary" mode -- that is, that no translation
1503 * of bytes occurs on read or write operations.
1504 */
1505# define USEMYBINMODE / **/
1506# define my_binmode(fp, iotype) \
1507 (PerlLIO_setmode(PerlIO_fileno(fp), O_BINARY) != -1 ? TRUE : NULL)
5aabfad6 1508#endif
1509
378cc40b 1510#include "regexp.h"
79072805 1511#include "sv.h"
378cc40b 1512#include "util.h"
8d063cd8 1513#include "form.h"
79072805
LW
1514#include "gv.h"
1515#include "cv.h"
22c35a8c 1516#ifndef PERL_OBJECT
79072805 1517#include "opcode.h"
22c35a8c 1518#endif
79072805
LW
1519#include "op.h"
1520#include "cop.h"
1521#include "av.h"
1522#include "hv.h"
1523#include "mg.h"
1524#include "scope.h"
599cee73 1525#include "warning.h"
d613ef02
GS
1526#include "bytecode.h"
1527#include "byterun.h"
a0ed51b3 1528#include "utf8.h"
8d063cd8 1529
7fae4e64
GS
1530/* Current curly descriptor */
1531typedef struct curcur CURCUR;
1532struct curcur {
1533 int parenfloor; /* how far back to strip paren data */
1534 int cur; /* how many instances of scan we've matched */
1535 int min; /* the minimal number of scans to match */
1536 int max; /* the maximal number of scans to match */
1537 int minmod; /* whether to work our way up or down */
1538 regnode * scan; /* the thing to match */
1539 regnode * next; /* what has to match after it */
1540 char * lastloc; /* where we started matching this scan */
1541 CURCUR * oldcc; /* current curly before we started this one */
1542};
1543
1544typedef struct _sublex_info SUBLEXINFO;
1545struct _sublex_info {
1546 I32 super_state; /* lexer state to save */
1547 I32 sub_inwhat; /* "lex_inwhat" to use */
1548 OP *sub_op; /* "lex_op" to use */
0244c3a4
GS
1549 char *super_bufptr; /* PL_bufptr that was */
1550 char *super_bufend; /* PL_bufend that was */
7fae4e64
GS
1551};
1552
455ece5e 1553typedef struct magic_state MGS; /* struct magic_state defined in mg.c */
76e3520e 1554
455ece5e 1555#ifdef PERL_OBJECT
76e3520e
GS
1556typedef struct {
1557 I32 len_min;
1558 I32 len_delta;
1559 I32 pos_min;
1560 I32 pos_delta;
1561 SV *last_found;
1562 I32 last_end; /* min value, <0 unless valid. */
1563 I32 last_start_min;
1564 I32 last_start_max;
1565 SV **longest; /* Either &l_fixed, or &l_float. */
1566 SV *longest_fixed;
1567 I32 offset_fixed;
1568 SV *longest_float;
1569 I32 offset_float_min;
1570 I32 offset_float_max;
1571 I32 flags;
1572} scan_data_t;
1573
1574typedef I32 CHECKPOINT;
1575#endif /* PERL_OBJECT */
1576
450a55e4 1577#if defined(iAPX286) || defined(M_I286) || defined(I80286)
a687059c
LW
1578# define I286
1579#endif
1580
fe14fcc3
LW
1581#if defined(htonl) && !defined(HAS_HTONL)
1582#define HAS_HTONL
ae986130 1583#endif
fe14fcc3
LW
1584#if defined(htons) && !defined(HAS_HTONS)
1585#define HAS_HTONS
ae986130 1586#endif
fe14fcc3
LW
1587#if defined(ntohl) && !defined(HAS_NTOHL)
1588#define HAS_NTOHL
ae986130 1589#endif
fe14fcc3
LW
1590#if defined(ntohs) && !defined(HAS_NTOHS)
1591#define HAS_NTOHS
ae986130 1592#endif
fe14fcc3 1593#ifndef HAS_HTONL
d9d8d8de 1594#if (BYTEORDER & 0xffff) != 0x4321
fe14fcc3
LW
1595#define HAS_HTONS
1596#define HAS_HTONL
1597#define HAS_NTOHS
1598#define HAS_NTOHL
a687059c
LW
1599#define MYSWAP
1600#define htons my_swap
1601#define htonl my_htonl
1602#define ntohs my_swap
1603#define ntohl my_ntohl
1604#endif
1605#else
d9d8d8de 1606#if (BYTEORDER & 0xffff) == 0x4321
fe14fcc3
LW
1607#undef HAS_HTONS
1608#undef HAS_HTONL
1609#undef HAS_NTOHS
1610#undef HAS_NTOHL
a687059c
LW
1611#endif
1612#endif
1613
988174c1
LW
1614/*
1615 * Little-endian byte order functions - 'v' for 'VAX', or 'reVerse'.
1616 * -DWS
1617 */
1618#if BYTEORDER != 0x1234
1619# define HAS_VTOHL
1620# define HAS_VTOHS
1621# define HAS_HTOVL
1622# define HAS_HTOVS
c67712b2 1623# if BYTEORDER == 0x4321 || BYTEORDER == 0x87654321
988174c1
LW
1624# define vtohl(x) ((((x)&0xFF)<<24) \
1625 +(((x)>>24)&0xFF) \
1626 +(((x)&0x0000FF00)<<8) \
1627 +(((x)&0x00FF0000)>>8) )
1628# define vtohs(x) ((((x)&0xFF)<<8) + (((x)>>8)&0xFF))
1629# define htovl(x) vtohl(x)
1630# define htovs(x) vtohs(x)
1631# endif
1632 /* otherwise default to functions in util.c */
1633#endif
1634
0f85fab0 1635#ifdef CASTNEGFLOAT
79072805 1636#define U_S(what) ((U16)(what))
0f85fab0 1637#define U_I(what) ((unsigned int)(what))
79072805 1638#define U_L(what) ((U32)(what))
0f85fab0 1639#else
232e078e
AD
1640#define U_S(what) ((U16)cast_ulong((double)(what)))
1641#define U_I(what) ((unsigned int)cast_ulong((double)(what)))
1642#define U_L(what) (cast_ulong((double)(what)))
ee0007ab
LW
1643#endif
1644
ed6116ce
LW
1645#ifdef CASTI32
1646#define I_32(what) ((I32)(what))
a0d0e21e 1647#define I_V(what) ((IV)(what))
5d94fbed 1648#define U_V(what) ((UV)(what))
ed6116ce 1649#else
a6e633de 1650#define I_32(what) (cast_i32((double)(what)))
1651#define I_V(what) (cast_iv((double)(what)))
5d94fbed 1652#define U_V(what) (cast_uv((double)(what)))
ed6116ce
LW
1653#endif
1654
79072805
LW
1655struct Outrec {
1656 I32 o_lines;
d9d8d8de 1657 char *o_str;
79072805 1658 U32 o_len;
8d063cd8
LW
1659};
1660
352d5a3a
LW
1661#ifndef MAXSYSFD
1662# define MAXSYSFD 2
1663#endif
ee0007ab 1664
f82b3d41 1665#ifndef TMPPATH
1666# define TMPPATH "/tmp/perl-eXXXXXX"
a0d0e21e 1667#endif
79072805
LW
1668
1669#ifndef __cplusplus
a0d0e21e
LW
1670Uid_t getuid _((void));
1671Uid_t geteuid _((void));
1672Gid_t getgid _((void));
1673Gid_t getegid _((void));
79072805 1674#endif
8d063cd8 1675
0c30d9ec 1676#ifndef Perl_debug_log
760ac839 1677#define Perl_debug_log PerlIO_stderr()
0c30d9ec 1678#endif
3967c732
JD
1679
1680#ifdef DEBUGGING
9d116dd7 1681#undef YYDEBUG
d96024cf 1682#define YYDEBUG 1
79072805 1683#define DEB(a) a
3280af22
NIS
1684#define DEBUG(a) if (PL_debug) a
1685#define DEBUG_p(a) if (PL_debug & 1) a
1686#define DEBUG_s(a) if (PL_debug & 2) a
1687#define DEBUG_l(a) if (PL_debug & 4) a
1688#define DEBUG_t(a) if (PL_debug & 8) a
1689#define DEBUG_o(a) if (PL_debug & 16) a
1690#define DEBUG_c(a) if (PL_debug & 32) a
1691#define DEBUG_P(a) if (PL_debug & 64) a
c850101c
JD
1692# ifdef PERL_OBJECT
1693# define DEBUG_m(a) if (PL_debug & 128) a
1694# else
1695# define DEBUG_m(a) if (PL_curinterp && PL_debug & 128) a
1696# endif
3280af22
NIS
1697#define DEBUG_f(a) if (PL_debug & 256) a
1698#define DEBUG_r(a) if (PL_debug & 512) a
1699#define DEBUG_x(a) if (PL_debug & 1024) a
1700#define DEBUG_u(a) if (PL_debug & 2048) a
1701#define DEBUG_L(a) if (PL_debug & 4096) a
1702#define DEBUG_H(a) if (PL_debug & 8192) a
1703#define DEBUG_X(a) if (PL_debug & 16384) a
1704#define DEBUG_D(a) if (PL_debug & 32768) a
8b73bbec
IZ
1705# ifdef USE_THREADS
1706# define DEBUG_S(a) if (PL_debug & (1<<16)) a
1707# else
1708# define DEBUG_S(a)
1709# endif
79072805
LW
1710#else
1711#define DEB(a)
1712#define DEBUG(a)
1713#define DEBUG_p(a)
1714#define DEBUG_s(a)
1715#define DEBUG_l(a)
1716#define DEBUG_t(a)
1717#define DEBUG_o(a)
1718#define DEBUG_c(a)
1719#define DEBUG_P(a)
1720#define DEBUG_m(a)
1721#define DEBUG_f(a)
1722#define DEBUG_r(a)
1723#define DEBUG_x(a)
1724#define DEBUG_u(a)
8b73bbec 1725#define DEBUG_S(a)
79072805
LW
1726#define DEBUG_H(a)
1727#define DEBUG_X(a)
8990e307 1728#define DEBUG_D(a)
8b73bbec 1729#define DEBUG_S(a)
8d063cd8 1730#endif
fe14fcc3 1731#define YYMAXDEPTH 300
8d063cd8 1732
a6e633de 1733#ifndef assert /* <assert.h> might have been included somehow */
79072805
LW
1734#define assert(what) DEB( { \
1735 if (!(what)) { \
463ee0b2 1736 croak("Assertion failed: file \"%s\", line %d", \
79072805 1737 __FILE__, __LINE__); \
6ad3d225 1738 PerlProc_exit(1); \
79072805 1739 }})
a6e633de 1740#endif
8d063cd8 1741
450a55e4 1742struct ufuncs {
a0d0e21e
LW
1743 I32 (*uf_val)_((IV, SV*));
1744 I32 (*uf_set)_((IV, SV*));
1745 IV uf_index;
450a55e4
LW
1746};
1747
fe14fcc3 1748/* Fix these up for __STDC__ */
68dc0745 1749#ifndef DONT_DECLARE_STD
a0d0e21e
LW
1750char *mktemp _((char*));
1751double atof _((const char*));
1752#endif
79072805 1753
352d5a3a 1754#ifndef STANDARD_C
fe14fcc3 1755/* All of these are in stdlib.h or time.h for ANSI C */
85e6fe83 1756Time_t time();
8d063cd8 1757struct tm *gmtime(), *localtime();
092bebab 1758#if defined(OEMVS) || defined(__OPEN_VM)
9d116dd7
JH
1759char *(strchr)(), *(strrchr)();
1760char *(strcpy)(), *(strcat)();
1761#else
93a17b20 1762char *strchr(), *strrchr();
378cc40b 1763char *strcpy(), *strcat();
9d116dd7 1764#endif
352d5a3a 1765#endif /* ! STANDARD_C */
8d063cd8 1766
79072805
LW
1767
1768#ifdef I_MATH
1769# include <math.h>
1770#else
32f822de 1771START_EXTERN_C
a0d0e21e 1772 double exp _((double));
a0d0e21e 1773 double log _((double));
c635e13b 1774 double log10 _((double));
a0d0e21e 1775 double sqrt _((double));
c635e13b 1776 double frexp _((double,int*));
1777 double ldexp _((double,int));
a0d0e21e
LW
1778 double modf _((double,double*));
1779 double sin _((double));
1780 double cos _((double));
1781 double atan2 _((double,double));
1782 double pow _((double,double));
32f822de 1783END_EXTERN_C
79072805
LW
1784#endif
1785
a0d0e21e 1786#ifndef __cplusplus
8f1f23e8 1787# if defined(NeXT) || defined(__NeXT__) /* or whatever catches all NeXTs */
3fc1aec6 1788char *crypt (); /* Maybe more hosts will need the unprototyped version */
26618a56
GS
1789# else
1790# if !defined(WIN32) || !defined(HAVE_DES_FCRYPT)
a0d0e21e 1791char *crypt _((const char*, const char*));
26618a56 1792# endif /* !WIN32 && !HAVE_CRYPT_SOURCE */
8f1f23e8 1793# endif /* !NeXT && !__NeXT__ */
26618a56
GS
1794# ifndef DONT_DECLARE_STD
1795# ifndef getenv
a0d0e21e 1796char *getenv _((const char*));
26618a56 1797# endif /* !getenv */
a0d0e21e 1798Off_t lseek _((int,Off_t,int));
26618a56 1799# endif /* !DONT_DECLARE_STD */
a0d0e21e 1800char *getlogin _((void));
26618a56 1801#endif /* !__cplusplus */
79072805 1802
16d20bd9 1803#ifdef UNLINK_ALL_VERSIONS /* Currently only makes sense for VMS */
378cc40b 1804#define UNLINK unlnk
a0d0e21e 1805I32 unlnk _((char*));
8d063cd8 1806#else
80252599 1807#define UNLINK PerlLIO_unlink
8d063cd8 1808#endif
a687059c 1809
fe14fcc3 1810#ifndef HAS_SETREUID
85e6fe83
LW
1811# ifdef HAS_SETRESUID
1812# define setreuid(r,e) setresuid(r,e,(Uid_t)-1)
1813# define HAS_SETREUID
1814# endif
a687059c 1815#endif
fe14fcc3 1816#ifndef HAS_SETREGID
85e6fe83
LW
1817# ifdef HAS_SETRESGID
1818# define setregid(r,e) setresgid(r,e,(Gid_t)-1)
1819# define HAS_SETREGID
1820# endif
a687059c 1821#endif
ee0007ab 1822
ff68c719 1823typedef Signal_t (*Sighandler_t) _((int));
1824
1825#ifdef HAS_SIGACTION
1826typedef struct sigaction Sigsave_t;
1827#else
1828typedef Sighandler_t Sigsave_t;
1829#endif
1830
ee0007ab
LW
1831#define SCAN_DEF 0
1832#define SCAN_TR 1
1833#define SCAN_REPL 2
79072805
LW
1834
1835#ifdef DEBUGGING
4633a7c4 1836# ifndef register
a0d0e21e
LW
1837# define register
1838# endif
1839# define PAD_SV(po) pad_sv(po)
2ddcc7aa 1840# define RUNOPS_DEFAULT runops_debug
79072805 1841#else
6b88bc9c 1842# define PAD_SV(po) PL_curpad[po]
2ddcc7aa 1843# define RUNOPS_DEFAULT runops_standard
79072805
LW
1844#endif
1845
18f739ee 1846#ifdef MYMALLOC
772fe5b3 1847# ifdef MUTEX_INIT_CALLS_MALLOC
3541dd58
HM
1848# define MALLOC_INIT \
1849 STMT_START { \
1850 PL_malloc_mutex = NULL; \
1851 MUTEX_INIT(&PL_malloc_mutex); \
1852 } STMT_END
1853# define MALLOC_TERM \
1854 STMT_START { \
1855 perl_mutex tmp = PL_malloc_mutex; \
1856 PL_malloc_mutex = NULL; \
1857 MUTEX_DESTROY(&tmp); \
1858 } STMT_END
1859# else
1860# define MALLOC_INIT MUTEX_INIT(&PL_malloc_mutex)
1861# define MALLOC_TERM MUTEX_DESTROY(&PL_malloc_mutex)
1862# endif
18f739ee
IZ
1863#else
1864# define MALLOC_INIT
1865# define MALLOC_TERM
1866#endif
1867
b6d9d515 1868
44a0ac01
MB
1869/*
1870 * These need prototyping here because <proto.h> isn't
1871 * included until after runops is initialised.
1872 */
1873
76e3520e 1874#ifndef PERL_OBJECT
22c35a8c 1875typedef int (*runops_proc_t) _((void));
44a0ac01
MB
1876int runops_standard _((void));
1877#ifdef DEBUGGING
1878int runops_debug _((void));
1879#endif
22c35a8c
GS
1880#endif
1881
940cb80d 1882/* _ (for $_) must be first in the following list (DEFSV requires it) */
54b9620d 1883#define THREADSV_NAMES "_123456789&`'+/.,\\\";^-%=|~:\001\005!@"
a863c7d1 1884
8f1f23e8
W
1885/* NeXT has problems with crt0.o globals */
1886#if defined(__DYNAMIC__) && \
1887 (defined(NeXT) || defined(__NeXT__) || defined(__APPLE__))
1888# if defined(NeXT) || defined(__NeXT)
1889# include <mach-o/dyld.h>
1890# define environ (*environ_pointer)
0c30d9ec 1891EXT char *** environ_pointer;
8f1f23e8
W
1892# else
1893# if defined(__APPLE__)
1894# include <crt_externs.h> /* for the env array */
1895# define environ (*_NSGetEnviron())
1896# endif
0c30d9ec 1897# endif
8f1f23e8
W
1898#else
1899 /* VMS and some other platforms don't use the environ array */
1900# if !defined(VMS) || \
1901 !defined(DONT_DECLARE_STD) || \
1902 (defined(__svr4__) && defined(__GNUC__) && defined(sun)) || \
1903 defined(__sgi) || \
1904 defined(__DGUX)
1905extern char ** environ; /* environment variables supplied via exec */
1906# endif
1907#endif
79072805 1908
79072805 1909/* handy constants */
22c35a8c 1910EXTCONST char PL_warn_uninit[]
a0d0e21e 1911 INIT("Use of uninitialized value");
22c35a8c 1912EXTCONST char PL_warn_nosemi[]
463ee0b2 1913 INIT("Semicolon seems to be missing");
22c35a8c 1914EXTCONST char PL_warn_reserved[]
463ee0b2 1915 INIT("Unquoted string \"%s\" may clash with future reserved word");
22c35a8c 1916EXTCONST char PL_warn_nl[]
93a17b20 1917 INIT("Unsuccessful %s on filename containing newline");
22c35a8c 1918EXTCONST char PL_no_wrongref[]
a0d0e21e 1919 INIT("Can't use %s ref as %s ref");
22c35a8c 1920EXTCONST char PL_no_symref[]
748a9306 1921 INIT("Can't use string (\"%.32s\") as %s ref while \"strict refs\" in use");
22c35a8c 1922EXTCONST char PL_no_usym[]
8990e307 1923 INIT("Can't use an undefined value as %s reference");
22c35a8c 1924EXTCONST char PL_no_aelem[]
93a17b20 1925 INIT("Modification of non-creatable array value attempted, subscript %d");
22c35a8c 1926EXTCONST char PL_no_helem[]
93a17b20 1927 INIT("Modification of non-creatable hash value attempted, subscript \"%s\"");
22c35a8c 1928EXTCONST char PL_no_modify[]
93a17b20 1929 INIT("Modification of a read-only value attempted");
22c35a8c 1930EXTCONST char PL_no_mem[]
93a17b20 1931 INIT("Out of memory!\n");
22c35a8c 1932EXTCONST char PL_no_security[]
463ee0b2 1933 INIT("Insecure dependency in %s%s");
22c35a8c 1934EXTCONST char PL_no_sock_func[]
93a17b20 1935 INIT("Unsupported socket function \"%s\" called");
22c35a8c 1936EXTCONST char PL_no_dir_func[]
93a17b20 1937 INIT("Unsupported directory function \"%s\" called");
22c35a8c 1938EXTCONST char PL_no_func[]
93a17b20 1939 INIT("The %s function is unimplemented");
22c35a8c 1940EXTCONST char PL_no_myglob[]
748a9306 1941 INIT("\"my\" variable %s can't be in a package");
93a17b20 1942
7575fa06 1943EXTCONST char PL_uuemap[65]
80252599
GS
1944 INIT("`!\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_");
1945
1946
79072805 1947#ifdef DOINIT
22c35a8c
GS
1948EXT char *PL_sig_name[] = { SIG_NAME };
1949EXT int PL_sig_num[] = { SIG_NUM };
1950EXT SV * PL_psig_ptr[sizeof(PL_sig_num)/sizeof(*PL_sig_num)];
1951EXT SV * PL_psig_name[sizeof(PL_sig_num)/sizeof(*PL_sig_num)];
79072805 1952#else
22c35a8c
GS
1953EXT char *PL_sig_name[];
1954EXT int PL_sig_num[];
1955EXT SV * PL_psig_ptr[];
1956EXT SV * PL_psig_name[];
79072805
LW
1957#endif
1958
bbce6d69 1959/* fast case folding tables */
1960
79072805 1961#ifdef DOINIT
9d116dd7 1962#ifdef EBCDIC
22c35a8c 1963EXT unsigned char PL_fold[] = { /* fast EBCDIC case folding table */
9d116dd7
JH
1964 0, 1, 2, 3, 4, 5, 6, 7,
1965 8, 9, 10, 11, 12, 13, 14, 15,
1966 16, 17, 18, 19, 20, 21, 22, 23,
1967 24, 25, 26, 27, 28, 29, 30, 31,
1968 32, 33, 34, 35, 36, 37, 38, 39,
1969 40, 41, 42, 43, 44, 45, 46, 47,
1970 48, 49, 50, 51, 52, 53, 54, 55,
1971 56, 57, 58, 59, 60, 61, 62, 63,
1972 64, 65, 66, 67, 68, 69, 70, 71,
1973 72, 73, 74, 75, 76, 77, 78, 79,
1974 80, 81, 82, 83, 84, 85, 86, 87,
1975 88, 89, 90, 91, 92, 93, 94, 95,
1976 96, 97, 98, 99, 100, 101, 102, 103,
1977 104, 105, 106, 107, 108, 109, 110, 111,
1978 112, 113, 114, 115, 116, 117, 118, 119,
1979 120, 121, 122, 123, 124, 125, 126, 127,
1980 128, 'A', 'B', 'C', 'D', 'E', 'F', 'G',
1981 'H', 'I', 138, 139, 140, 141, 142, 143,
1982 144, 'J', 'K', 'L', 'M', 'N', 'O', 'P',
1983 'Q', 'R', 154, 155, 156, 157, 158, 159,
1984 160, 161, 'S', 'T', 'U', 'V', 'W', 'X',
1985 'Y', 'Z', 170, 171, 172, 173, 174, 175,
1986 176, 177, 178, 179, 180, 181, 182, 183,
1987 184, 185, 186, 187, 188, 189, 190, 191,
1988 192, 'a', 'b', 'c', 'd', 'e', 'f', 'g',
1989 'h', 'i', 202, 203, 204, 205, 206, 207,
1990 208, 'j', 'k', 'l', 'm', 'n', 'o', 'p',
1991 'q', 'r', 218, 219, 220, 221, 222, 223,
1992 224, 225, 's', 't', 'u', 'v', 'w', 'x',
1993 'y', 'z', 234, 235, 236, 237, 238, 239,
1994 240, 241, 242, 243, 244, 245, 246, 247,
1995 248, 249, 250, 251, 252, 253, 254, 255
1996};
1997#else /* ascii rather than ebcdic */
22c35a8c 1998EXTCONST unsigned char PL_fold[] = {
79072805
LW
1999 0, 1, 2, 3, 4, 5, 6, 7,
2000 8, 9, 10, 11, 12, 13, 14, 15,
2001 16, 17, 18, 19, 20, 21, 22, 23,
2002 24, 25, 26, 27, 28, 29, 30, 31,
2003 32, 33, 34, 35, 36, 37, 38, 39,
2004 40, 41, 42, 43, 44, 45, 46, 47,
2005 48, 49, 50, 51, 52, 53, 54, 55,
2006 56, 57, 58, 59, 60, 61, 62, 63,
2007 64, 'a', 'b', 'c', 'd', 'e', 'f', 'g',
2008 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o',
2009 'p', 'q', 'r', 's', 't', 'u', 'v', 'w',
2010 'x', 'y', 'z', 91, 92, 93, 94, 95,
2011 96, 'A', 'B', 'C', 'D', 'E', 'F', 'G',
2012 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O',
2013 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W',
2014 'X', 'Y', 'Z', 123, 124, 125, 126, 127,
2015 128, 129, 130, 131, 132, 133, 134, 135,
2016 136, 137, 138, 139, 140, 141, 142, 143,
2017 144, 145, 146, 147, 148, 149, 150, 151,
2018 152, 153, 154, 155, 156, 157, 158, 159,
2019 160, 161, 162, 163, 164, 165, 166, 167,
2020 168, 169, 170, 171, 172, 173, 174, 175,
2021 176, 177, 178, 179, 180, 181, 182, 183,
2022 184, 185, 186, 187, 188, 189, 190, 191,
2023 192, 193, 194, 195, 196, 197, 198, 199,
2024 200, 201, 202, 203, 204, 205, 206, 207,
2025 208, 209, 210, 211, 212, 213, 214, 215,
2026 216, 217, 218, 219, 220, 221, 222, 223,
2027 224, 225, 226, 227, 228, 229, 230, 231,
2028 232, 233, 234, 235, 236, 237, 238, 239,
2029 240, 241, 242, 243, 244, 245, 246, 247,
2030 248, 249, 250, 251, 252, 253, 254, 255
2031};
9d116dd7 2032#endif /* !EBCDIC */
79072805 2033#else
22c35a8c 2034EXTCONST unsigned char PL_fold[];
79072805
LW
2035#endif
2036
2037#ifdef DOINIT
22c35a8c 2038EXT unsigned char PL_fold_locale[] = {
79072805
LW
2039 0, 1, 2, 3, 4, 5, 6, 7,
2040 8, 9, 10, 11, 12, 13, 14, 15,
2041 16, 17, 18, 19, 20, 21, 22, 23,
2042 24, 25, 26, 27, 28, 29, 30, 31,
2043 32, 33, 34, 35, 36, 37, 38, 39,
2044 40, 41, 42, 43, 44, 45, 46, 47,
2045 48, 49, 50, 51, 52, 53, 54, 55,
2046 56, 57, 58, 59, 60, 61, 62, 63,
2047 64, 'a', 'b', 'c', 'd', 'e', 'f', 'g',
2048 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o',
2049 'p', 'q', 'r', 's', 't', 'u', 'v', 'w',
2050 'x', 'y', 'z', 91, 92, 93, 94, 95,
2051 96, 'A', 'B', 'C', 'D', 'E', 'F', 'G',
2052 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O',
2053 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W',
2054 'X', 'Y', 'Z', 123, 124, 125, 126, 127,
2055 128, 129, 130, 131, 132, 133, 134, 135,
2056 136, 137, 138, 139, 140, 141, 142, 143,
2057 144, 145, 146, 147, 148, 149, 150, 151,
2058 152, 153, 154, 155, 156, 157, 158, 159,
2059 160, 161, 162, 163, 164, 165, 166, 167,
2060 168, 169, 170, 171, 172, 173, 174, 175,
2061 176, 177, 178, 179, 180, 181, 182, 183,
2062 184, 185, 186, 187, 188, 189, 190, 191,
2063 192, 193, 194, 195, 196, 197, 198, 199,
2064 200, 201, 202, 203, 204, 205, 206, 207,
2065 208, 209, 210, 211, 212, 213, 214, 215,
2066 216, 217, 218, 219, 220, 221, 222, 223,
2067 224, 225, 226, 227, 228, 229, 230, 231,
2068 232, 233, 234, 235, 236, 237, 238, 239,
2069 240, 241, 242, 243, 244, 245, 246, 247,
2070 248, 249, 250, 251, 252, 253, 254, 255
2071};
2072#else
22c35a8c 2073EXT unsigned char PL_fold_locale[];
79072805
LW
2074#endif
2075
2076#ifdef DOINIT
9d116dd7 2077#ifdef EBCDIC
22c35a8c 2078EXT unsigned char PL_freq[] = {/* EBCDIC frequencies for mixed English/C */
9d116dd7
JH
2079 1, 2, 84, 151, 154, 155, 156, 157,
2080 165, 246, 250, 3, 158, 7, 18, 29,
2081 40, 51, 62, 73, 85, 96, 107, 118,
2082 129, 140, 147, 148, 149, 150, 152, 153,
2083 255, 6, 8, 9, 10, 11, 12, 13,
2084 14, 15, 24, 25, 26, 27, 28, 226,
2085 29, 30, 31, 32, 33, 43, 44, 45,
2086 46, 47, 48, 49, 50, 76, 77, 78,
2087 79, 80, 81, 82, 83, 84, 85, 86,
2088 87, 94, 95, 234, 181, 233, 187, 190,
2089 180, 96, 97, 98, 99, 100, 101, 102,
2090 104, 112, 182, 174, 236, 232, 229, 103,
2091 228, 226, 114, 115, 116, 117, 118, 119,
2092 120, 121, 122, 235, 176, 230, 194, 162,
2093 130, 131, 132, 133, 134, 135, 136, 137,
2094 138, 139, 201, 205, 163, 217, 220, 224,
2095 5, 248, 227, 244, 242, 255, 241, 231,
2096 240, 253, 16, 197, 19, 20, 21, 187,
2097 23, 169, 210, 245, 237, 249, 247, 239,
2098 168, 252, 34, 196, 36, 37, 38, 39,
2099 41, 42, 251, 254, 238, 223, 221, 213,
2100 225, 177, 52, 53, 54, 55, 56, 57,
2101 58, 59, 60, 61, 63, 64, 65, 66,
2102 67, 68, 69, 70, 71, 72, 74, 75,
2103 205, 208, 186, 202, 200, 218, 198, 179,
2104 178, 214, 88, 89, 90, 91, 92, 93,
2105 217, 166, 170, 207, 199, 209, 206, 204,
2106 160, 212, 105, 106, 108, 109, 110, 111,
2107 203, 113, 216, 215, 192, 175, 193, 243,
2108 172, 161, 123, 124, 125, 126, 127, 128,
2109 222, 219, 211, 195, 188, 193, 185, 184,
2110 191, 183, 141, 142, 143, 144, 145, 146
2111};
2112#else /* ascii rather than ebcdic */
22c35a8c 2113EXTCONST unsigned char PL_freq[] = { /* letter frequencies for mixed English/C */
79072805
LW
2114 1, 2, 84, 151, 154, 155, 156, 157,
2115 165, 246, 250, 3, 158, 7, 18, 29,
2116 40, 51, 62, 73, 85, 96, 107, 118,
2117 129, 140, 147, 148, 149, 150, 152, 153,
2118 255, 182, 224, 205, 174, 176, 180, 217,
2119 233, 232, 236, 187, 235, 228, 234, 226,
2120 222, 219, 211, 195, 188, 193, 185, 184,
2121 191, 183, 201, 229, 181, 220, 194, 162,
2122 163, 208, 186, 202, 200, 218, 198, 179,
2123 178, 214, 166, 170, 207, 199, 209, 206,
2124 204, 160, 212, 216, 215, 192, 175, 173,
2125 243, 172, 161, 190, 203, 189, 164, 230,
2126 167, 248, 227, 244, 242, 255, 241, 231,
2127 240, 253, 169, 210, 245, 237, 249, 247,
2128 239, 168, 252, 251, 254, 238, 223, 221,
2129 213, 225, 177, 197, 171, 196, 159, 4,
2130 5, 6, 8, 9, 10, 11, 12, 13,
2131 14, 15, 16, 17, 19, 20, 21, 22,
2132 23, 24, 25, 26, 27, 28, 30, 31,
2133 32, 33, 34, 35, 36, 37, 38, 39,
2134 41, 42, 43, 44, 45, 46, 47, 48,
2135 49, 50, 52, 53, 54, 55, 56, 57,
2136 58, 59, 60, 61, 63, 64, 65, 66,
2137 67, 68, 69, 70, 71, 72, 74, 75,
2138 76, 77, 78, 79, 80, 81, 82, 83,
2139 86, 87, 88, 89, 90, 91, 92, 93,
2140 94, 95, 97, 98, 99, 100, 101, 102,
2141 103, 104, 105, 106, 108, 109, 110, 111,
2142 112, 113, 114, 115, 116, 117, 119, 120,
2143 121, 122, 123, 124, 125, 126, 127, 128,
2144 130, 131, 132, 133, 134, 135, 136, 137,
2145 138, 139, 141, 142, 143, 144, 145, 146
2146};
9d116dd7 2147#endif
79072805 2148#else
22c35a8c 2149EXTCONST unsigned char PL_freq[];
79072805
LW
2150#endif
2151
8990e307
LW
2152#ifdef DEBUGGING
2153#ifdef DOINIT
22c35a8c 2154EXTCONST char* PL_block_type[] = {
8990e307
LW
2155 "NULL",
2156 "SUB",
2157 "EVAL",
2158 "LOOP",
2159 "SUBST",
2160 "BLOCK",
2161};
2162#else
22c35a8c 2163EXTCONST char* PL_block_type[];
8990e307
LW
2164#endif
2165#endif
2166
79072805
LW
2167/*****************************************************************************/
2168/* This lexer/parser stuff is currently global since yacc is hard to reenter */
2169/*****************************************************************************/
8990e307 2170/* XXX This needs to be revisited, since BEGIN makes yacc re-enter... */
79072805 2171
a0d0e21e
LW
2172#include "perly.h"
2173
fb73857a 2174#define LEX_NOTPARSING 11 /* borrowed from toke.c */
2175
79072805
LW
2176typedef enum {
2177 XOPERATOR,
2178 XTERM,
79072805 2179 XREF,
8990e307 2180 XSTATE,
a0d0e21e
LW
2181 XBLOCK,
2182 XTERMBLOCK
79072805
LW
2183} expectation;
2184
dc9e4912
GS
2185enum { /* pass one of these to get_vtbl */
2186 want_vtbl_sv,
2187 want_vtbl_env,
2188 want_vtbl_envelem,
2189 want_vtbl_sig,
2190 want_vtbl_sigelem,
2191 want_vtbl_pack,
2192 want_vtbl_packelem,
2193 want_vtbl_dbline,
2194 want_vtbl_isa,
2195 want_vtbl_isaelem,
2196 want_vtbl_arylen,
2197 want_vtbl_glob,
2198 want_vtbl_mglob,
2199 want_vtbl_nkeys,
2200 want_vtbl_taint,
2201 want_vtbl_substr,
2202 want_vtbl_vec,
2203 want_vtbl_pos,
2204 want_vtbl_bm,
2205 want_vtbl_fm,
2206 want_vtbl_uvar,
2207 want_vtbl_defelem,
2208 want_vtbl_regexp,
2209 want_vtbl_collxfrm,
2210 want_vtbl_amagic,
2211 want_vtbl_amagicelem,
2212#ifdef USE_THREADS
2213 want_vtbl_mutex,
2214#endif
2215 want_vtbl_regdata,
2216 want_vtbl_regdatum
2217};
2218
85e6fe83
LW
2219 /* Note: the lowest 8 bits are reserved for
2220 stuffing into op->op_private */
2221#define HINT_INTEGER 0x00000001
2222#define HINT_STRICT_REFS 0x00000002
a0ed51b3
LW
2223/* #define HINT_notused4 0x00000004 */
2224#define HINT_UTF8 0x00000008
2225/* #define HINT_notused10 0x00000010 */
2226 /* Note: 20,40,80 used for NATIVE_HINTS */
85e6fe83
LW
2227
2228#define HINT_BLOCK_SCOPE 0x00000100
2229#define HINT_STRICT_SUBS 0x00000200
2230#define HINT_STRICT_VARS 0x00000400
bbce6d69 2231#define HINT_LOCALE 0x00000800
85e6fe83 2232
b3ac6de7
IZ
2233#define HINT_NEW_INTEGER 0x00001000
2234#define HINT_NEW_FLOAT 0x00002000
2235#define HINT_NEW_BINARY 0x00004000
2236#define HINT_NEW_STRING 0x00008000
2237#define HINT_NEW_RE 0x00010000
2238#define HINT_LOCALIZE_HH 0x00020000 /* %^H needs to be copied */
2239
b3eb6a9b 2240#define HINT_RE_TAINT 0x00100000
e4d48cc9 2241#define HINT_RE_EVAL 0x00200000
b3eb6a9b 2242
5ff3f7a4
GS
2243#define HINT_FILETEST_ACCESS 0x00400000
2244
d4cce5f1
NIS
2245/* Various states of an input record separator SV (rs, nrs) */
2246#define RsSNARF(sv) (! SvOK(sv))
2247#define RsSIMPLE(sv) (SvOK(sv) && SvCUR(sv))
2248#define RsPARA(sv) (SvOK(sv) && ! SvCUR(sv))
5b2b9c68 2249#define RsRECORD(sv) (SvROK(sv) && (SvIV(SvRV(sv)) > 0))
79072805 2250
56953603 2251/* Enable variables which are pointers to functions */
15e52e56
GS
2252#ifdef PERL_OBJECT
2253typedef regexp*(CPerlObj::*regcomp_t) _((char* exp, char* xend, PMOP* pm));
2254typedef I32 (CPerlObj::*regexec_t) _((regexp* prog, char* stringarg,
2255 char* strend, char* strbeg,
2256 I32 minend, SV* screamer, void* data,
2257 U32 flags));
2258#else
56953603
IZ
2259typedef regexp*(*regcomp_t) _((char* exp, char* xend, PMOP* pm));
2260typedef I32 (*regexec_t) _((regexp* prog, char* stringarg, char* strend, char*
2261 strbeg, I32 minend, SV* screamer, void* data,
2262 U32 flags));
2263
15e52e56
GS
2264#endif
2265
22239a37
NIS
2266/* Set up PERLVAR macros for populating structs */
2267#define PERLVAR(var,type) type var;
2268#define PERLVARI(var,type,init) type var;
3fe35a81 2269#define PERLVARIC(var,type,init) type var;
22239a37 2270
58a50f62
GS
2271/* Interpreter exitlist entry */
2272typedef struct exitlistentry {
2273#ifdef PERL_OBJECT
2274 void (*fn) _((CPerlObj*, void*));
2275#else
2276 void (*fn) _((void*));
2277#endif
2278 void *ptr;
2279} PerlExitListEntry;
2280
76e3520e
GS
2281#ifdef PERL_OBJECT
2282extern "C" CPerlObj* perl_alloc _((IPerlMem*, IPerlEnv*, IPerlStdIO*, IPerlLIO*, IPerlDir*, IPerlSock*, IPerlProc*));
2283
22c35a8c 2284#ifdef PERL_OBJECT
76e3520e 2285typedef int (CPerlObj::*runops_proc_t) _((void));
22c35a8c
GS
2286#endif /* PERL_OBJECT */
2287
76e3520e
GS
2288#undef EXT
2289#define EXT
2290#undef EXTCONST
2291#define EXTCONST
2292#undef INIT
2293#define INIT(x)
2294
2295class CPerlObj {
2296public:
2297 CPerlObj(IPerlMem*, IPerlEnv*, IPerlStdIO*, IPerlLIO*, IPerlDir*, IPerlSock*, IPerlProc*);
2298 void Init(void);
2299 void* operator new(size_t nSize, IPerlMem *pvtbl);
2300#endif /* PERL_OBJECT */
2301
22239a37
NIS
2302#ifdef PERL_GLOBAL_STRUCT
2303struct perl_vars {
2304#include "perlvars.h"
2305};
2306
2307#ifdef PERL_CORE
533c011a
NIS
2308EXT struct perl_vars PL_Vars;
2309EXT struct perl_vars *PL_VarsPtr INIT(&PL_Vars);
2310#else /* PERL_CORE */
8736538c 2311#if !defined(__GNUC__) || !(defined(WIN32) || defined(CYGWIN32))
22239a37 2312EXT
533c011a
NIS
2313#endif /* WIN32 */
2314struct perl_vars *PL_VarsPtr;
2315#define PL_Vars (*((PL_VarsPtr) ? PL_VarsPtr : (PL_VarsPtr = Perl_GetVars())))
2316#endif /* PERL_CORE */
22239a37
NIS
2317#endif /* PERL_GLOBAL_STRUCT */
2318
8990e307 2319#ifdef MULTIPLICITY
d4cce5f1
NIS
2320/* If we have multiple interpreters define a struct
2321 holding variables which must be per-interpreter
2322 If we don't have threads anything that would have
2323 be per-thread is per-interpreter.
2324*/
2325
79072805 2326struct interpreter {
d4cce5f1 2327#include "thrdvar.h"
d4cce5f1 2328#include "intrpvar.h"
49f531da 2329};
d4cce5f1 2330
79072805 2331#else
49f531da
NIS
2332struct interpreter {
2333 char broiled;
2334};
79072805
LW
2335#endif
2336
d4cce5f1
NIS
2337#ifdef USE_THREADS
2338/* If we have threads define a struct with all the variables
2339 * that have to be per-thread
49f531da 2340 */
8023c3ce 2341
79072805 2342
49f531da 2343struct perl_thread {
49f531da 2344#include "thrdvar.h"
79072805 2345};
d4cce5f1 2346
22fae026
TM
2347typedef struct perl_thread *Thread;
2348
2349#else
2350typedef void *Thread;
22239a37
NIS
2351#endif
2352
2353/* Done with PERLVAR macros for now ... */
d4cce5f1
NIS
2354#undef PERLVAR
2355#undef PERLVARI
3fe35a81 2356#undef PERLVARIC
79072805 2357
22239a37 2358#include "thread.h"
79072805 2359#include "pp.h"
79072805
LW
2360#include "proto.h"
2361
d4cce5f1
NIS
2362/* The following must follow proto.h as #defines mess up syntax */
2363
22c35a8c
GS
2364#if !defined(PERL_FOR_X2P)
2365# include "embedvar.h"
2366#endif
d4cce5f1
NIS
2367
2368/* Now include all the 'global' variables
2369 * If we don't have threads or multiple interpreters
2370 * these include variables that would have been their struct-s
2371 */
533c011a
NIS
2372
2373#define PERLVAR(var,type) EXT type PL_##var;
2374#define PERLVARI(var,type,init) EXT type PL_##var INIT(init);
2375#define PERLVARIC(var,type,init) EXTCONST type PL_##var INIT(init);
d4cce5f1 2376
22239a37 2377#ifndef PERL_GLOBAL_STRUCT
d4cce5f1 2378#include "perlvars.h"
22239a37 2379#endif
d4cce5f1
NIS
2380
2381#ifndef MULTIPLICITY
d4cce5f1 2382
066ef5b5
GS
2383# include "intrpvar.h"
2384# ifndef USE_THREADS
2385# include "thrdvar.h"
2386# endif
d4cce5f1 2387
22239a37
NIS
2388#endif
2389
76e3520e 2390#ifdef PERL_OBJECT
d0c1b099
GS
2391/*
2392 * The following is a buffer where new variables must
2393 * be defined to maintain binary compatibility with PERL_OBJECT
2394 * for 5.005
2395 */
2396PERLVAR(object_compatibility[30], char)
76e3520e
GS
2397};
2398
22c35a8c
GS
2399# include "embed.h"
2400# if defined(WIN32) && !defined(WIN32IO_IS_STDIO)
2401# define errno CPerlObj::ErrorNo()
2402# endif
76e3520e 2403
22c35a8c
GS
2404# ifdef DOINIT
2405# include "INTERN.h"
2406# else
2407# include "EXTERN.h"
2408# endif
2409
2410/* this has structure inits, so it cannot be included before here */
2411# include "opcode.h"
2412
2413#endif /* PERL_OBJECT */
22239a37 2414
d4cce5f1
NIS
2415#undef PERLVAR
2416#undef PERLVARI
0f3f18a6 2417#undef PERLVARIC
79072805 2418
a835ef8a
NIS
2419#if defined(HASATTRIBUTE) && defined(WIN32)
2420/*
2421 * This provides a layer of functions and macros to ensure extensions will
2422 * get to use the same RTL functions as the core.
2423 * It has to go here or #define of printf messes up __attribute__
2424 * stuff in proto.h
2425 */
76e3520e 2426#ifndef PERL_OBJECT
a835ef8a 2427# include <win32iop.h>
76e3520e 2428#endif /* PERL_OBJECT */
a835ef8a
NIS
2429#endif /* WIN32 */
2430
79072805 2431#ifdef DOINIT
bbce6d69 2432
22c35a8c 2433EXT MGVTBL PL_vtbl_sv = {magic_get,
463ee0b2
LW
2434 magic_set,
2435 magic_len,
2436 0, 0};
22c35a8c 2437EXT MGVTBL PL_vtbl_env = {0, magic_set_all_env,
fb73857a 2438 0, magic_clear_all_env,
66b1d557 2439 0};
22c35a8c 2440EXT MGVTBL PL_vtbl_envelem = {0, magic_setenv,
85e6fe83
LW
2441 0, magic_clearenv,
2442 0};
22c35a8c
GS
2443EXT MGVTBL PL_vtbl_sig = {0, 0, 0, 0, 0};
2444EXT MGVTBL PL_vtbl_sigelem = {magic_getsig,
0c30d9ec 2445 magic_setsig,
2446 0, magic_clearsig,
2447 0};
22c35a8c 2448EXT MGVTBL PL_vtbl_pack = {0, 0, magic_sizepack, magic_wipepack,
a0d0e21e 2449 0};
22c35a8c 2450EXT MGVTBL PL_vtbl_packelem = {magic_getpack,
463ee0b2
LW
2451 magic_setpack,
2452 0, magic_clearpack,
2453 0};
22c35a8c 2454EXT MGVTBL PL_vtbl_dbline = {0, magic_setdbline,
463ee0b2 2455 0, 0, 0};
22c35a8c 2456EXT MGVTBL PL_vtbl_isa = {0, magic_setisa,
fb73857a 2457 0, magic_setisa,
2458 0};
22c35a8c 2459EXT MGVTBL PL_vtbl_isaelem = {0, magic_setisa,
463ee0b2 2460 0, 0, 0};
22c35a8c 2461EXT MGVTBL PL_vtbl_arylen = {magic_getarylen,
463ee0b2
LW
2462 magic_setarylen,
2463 0, 0, 0};
22c35a8c 2464EXT MGVTBL PL_vtbl_glob = {magic_getglob,
463ee0b2
LW
2465 magic_setglob,
2466 0, 0, 0};
22c35a8c 2467EXT MGVTBL PL_vtbl_mglob = {0, magic_setmglob,
463ee0b2 2468 0, 0, 0};
22c35a8c 2469EXT MGVTBL PL_vtbl_nkeys = {magic_getnkeys,
6ff81951 2470 magic_setnkeys,
99abf803 2471 0, 0, 0};
22c35a8c 2472EXT MGVTBL PL_vtbl_taint = {magic_gettaint,magic_settaint,
463ee0b2 2473 0, 0, 0};
22c35a8c 2474EXT MGVTBL PL_vtbl_substr = {magic_getsubstr, magic_setsubstr,
463ee0b2 2475 0, 0, 0};
22c35a8c 2476EXT MGVTBL PL_vtbl_vec = {magic_getvec,
6ff81951 2477 magic_setvec,
463ee0b2 2478 0, 0, 0};
22c35a8c 2479EXT MGVTBL PL_vtbl_pos = {magic_getpos,
a0d0e21e
LW
2480 magic_setpos,
2481 0, 0, 0};
22c35a8c 2482EXT MGVTBL PL_vtbl_bm = {0, magic_setbm,
463ee0b2 2483 0, 0, 0};
22c35a8c 2484EXT MGVTBL PL_vtbl_fm = {0, magic_setfm,
55497cff 2485 0, 0, 0};
22c35a8c 2486EXT MGVTBL PL_vtbl_uvar = {magic_getuvar,
463ee0b2
LW
2487 magic_setuvar,
2488 0, 0, 0};
f93b4edd 2489#ifdef USE_THREADS
22c35a8c 2490EXT MGVTBL PL_vtbl_mutex = {0, 0, 0, 0, magic_mutexfree};
f93b4edd 2491#endif /* USE_THREADS */
22c35a8c 2492EXT MGVTBL PL_vtbl_defelem = {magic_getdefelem,magic_setdefelem,
02270b4e 2493 0, 0, 0};
a0d0e21e 2494
22c35a8c
GS
2495EXT MGVTBL PL_vtbl_regexp = {0,0,0,0, magic_freeregexp};
2496EXT MGVTBL PL_vtbl_regdata = {0, 0, magic_regdata_cnt, 0, 0};
2497EXT MGVTBL PL_vtbl_regdatum = {magic_regdatum_get, 0, 0, 0, 0};
c277df42 2498
36477c24 2499#ifdef USE_LOCALE_COLLATE
22c35a8c 2500EXT MGVTBL PL_vtbl_collxfrm = {0,
bbce6d69 2501 magic_setcollxfrm,
2502 0, 0, 0};
2503#endif
a0d0e21e 2504
22c35a8c 2505EXT MGVTBL PL_vtbl_amagic = {0, magic_setamagic,
748a9306 2506 0, 0, magic_setamagic};
22c35a8c 2507EXT MGVTBL PL_vtbl_amagicelem = {0, magic_setamagic,
748a9306 2508 0, 0, magic_setamagic};
a0d0e21e 2509
bbce6d69 2510#else /* !DOINIT */
2511
22c35a8c
GS
2512EXT MGVTBL PL_vtbl_sv;
2513EXT MGVTBL PL_vtbl_env;
2514EXT MGVTBL PL_vtbl_envelem;
2515EXT MGVTBL PL_vtbl_sig;
2516EXT MGVTBL PL_vtbl_sigelem;
2517EXT MGVTBL PL_vtbl_pack;
2518EXT MGVTBL PL_vtbl_packelem;
2519EXT MGVTBL PL_vtbl_dbline;
2520EXT MGVTBL PL_vtbl_isa;
2521EXT MGVTBL PL_vtbl_isaelem;
2522EXT MGVTBL PL_vtbl_arylen;
2523EXT MGVTBL PL_vtbl_glob;
2524EXT MGVTBL PL_vtbl_mglob;
2525EXT MGVTBL PL_vtbl_nkeys;
2526EXT MGVTBL PL_vtbl_taint;
2527EXT MGVTBL PL_vtbl_substr;
2528EXT MGVTBL PL_vtbl_vec;
2529EXT MGVTBL PL_vtbl_pos;
2530EXT MGVTBL PL_vtbl_bm;
2531EXT MGVTBL PL_vtbl_fm;
2532EXT MGVTBL PL_vtbl_uvar;
a0d0e21e 2533
f93b4edd 2534#ifdef USE_THREADS
22c35a8c 2535EXT MGVTBL PL_vtbl_mutex;
f93b4edd
MB
2536#endif /* USE_THREADS */
2537
22c35a8c
GS
2538EXT MGVTBL PL_vtbl_defelem;
2539EXT MGVTBL PL_vtbl_regexp;
2540EXT MGVTBL PL_vtbl_regdata;
2541EXT MGVTBL PL_vtbl_regdatum;
a0d0e21e 2542
36477c24 2543#ifdef USE_LOCALE_COLLATE
22c35a8c 2544EXT MGVTBL PL_vtbl_collxfrm;
bbce6d69 2545#endif
a0d0e21e 2546
22c35a8c
GS
2547EXT MGVTBL PL_vtbl_amagic;
2548EXT MGVTBL PL_vtbl_amagicelem;
a0d0e21e 2549
bbce6d69 2550#endif /* !DOINIT */
85e6fe83 2551
f5284f61
IZ
2552enum {
2553 fallback_amg, abs_amg,
2554 bool__amg, nomethod_amg,
2555 string_amg, numer_amg,
2556 add_amg, add_ass_amg,
2557 subtr_amg, subtr_ass_amg,
2558 mult_amg, mult_ass_amg,
2559 div_amg, div_ass_amg,
2560 modulo_amg, modulo_ass_amg,
2561 pow_amg, pow_ass_amg,
2562 lshift_amg, lshift_ass_amg,
2563 rshift_amg, rshift_ass_amg,
2564 band_amg, band_ass_amg,
2565 bor_amg, bor_ass_amg,
2566 bxor_amg, bxor_ass_amg,
2567 lt_amg, le_amg,
2568 gt_amg, ge_amg,
2569 eq_amg, ne_amg,
2570 ncmp_amg, scmp_amg,
2571 slt_amg, sle_amg,
2572 sgt_amg, sge_amg,
2573 seq_amg, sne_amg,
2574 not_amg, compl_amg,
2575 inc_amg, dec_amg,
2576 atan2_amg, cos_amg,
2577 sin_amg, exp_amg,
2578 log_amg, sqrt_amg,
2579 repeat_amg, repeat_ass_amg,
2580 concat_amg, concat_ass_amg,
2581 copy_amg, neg_amg,
2582 to_sv_amg, to_av_amg,
2583 to_hv_amg, to_gv_amg,
2584 to_cv_amg, iter_amg,
64a0062a
JH
2585 max_amg_code
2586 /* Do not leave a trailing comma here. C9X allows it, C89 doesn't. */
f5284f61
IZ
2587};
2588
2589#define NofAMmeth max_amg_code
2590
a0d0e21e 2591#ifdef DOINIT
22c35a8c 2592EXTCONST char * PL_AMG_names[NofAMmeth] = {
a6006777 2593 "fallback", "abs", /* "fallback" should be the first. */
2594 "bool", "nomethod",
2595 "\"\"", "0+",
2596 "+", "+=",
2597 "-", "-=",
2598 "*", "*=",
2599 "/", "/=",
2600 "%", "%=",
2601 "**", "**=",
2602 "<<", "<<=",
2603 ">>", ">>=",
2604 "&", "&=",
2605 "|", "|=",
2606 "^", "^=",
2607 "<", "<=",
2608 ">", ">=",
2609 "==", "!=",
2610 "<=>", "cmp",
2611 "lt", "le",
2612 "gt", "ge",
2613 "eq", "ne",
2614 "!", "~",
2615 "++", "--",
2616 "atan2", "cos",
2617 "sin", "exp",
2618 "log", "sqrt",
2619 "x", "x=",
2620 ".", ".=",
f5284f61
IZ
2621 "=", "neg",
2622 "${}", "@{}",
2623 "%{}", "*{}",
2624 "&{}", "<>",
a0d0e21e
LW
2625};
2626#else
22c35a8c 2627EXTCONST char * PL_AMG_names[NofAMmeth];
a0d0e21e
LW
2628#endif /* def INITAMAGIC */
2629
a6006777 2630struct am_table {
a0d0e21e
LW
2631 long was_ok_sub;
2632 long was_ok_am;
a6006777 2633 U32 flags;
2634 CV* table[NofAMmeth];
a0d0e21e
LW
2635 long fallback;
2636};
a6006777 2637struct am_table_short {
2638 long was_ok_sub;
2639 long was_ok_am;
2640 U32 flags;
2641};
a0d0e21e 2642typedef struct am_table AMT;
a6006777 2643typedef struct am_table_short AMTS;
a0d0e21e
LW
2644
2645#define AMGfallNEVER 1
2646#define AMGfallNO 2
2647#define AMGfallYES 3
2648
a6006777 2649#define AMTf_AMAGIC 1
2650#define AMT_AMAGIC(amt) ((amt)->flags & AMTf_AMAGIC)
2651#define AMT_AMAGIC_on(amt) ((amt)->flags |= AMTf_AMAGIC)
2652#define AMT_AMAGIC_off(amt) ((amt)->flags &= ~AMTf_AMAGIC)
2653
c0315cdf
JH
2654
2655/*
2656 * some compilers like to redefine cos et alia as faster
2657 * (and less accurate?) versions called F_cos et cetera (Quidquid
2658 * latine dictum sit, altum viditur.) This trick collides with
2659 * the Perl overloading (amg). The following #defines fool both.
2660 */
2661
2662#ifdef _FASTMATH
2663# ifdef atan2
2664# define F_atan2_amg atan2_amg
2665# endif
2666# ifdef cos
2667# define F_cos_amg cos_amg
2668# endif
2669# ifdef exp
2670# define F_exp_amg exp_amg
2671# endif
2672# ifdef log
2673# define F_log_amg log_amg
2674# endif
2675# ifdef pow
2676# define F_pow_amg pow_amg
2677# endif
2678# ifdef sin
2679# define F_sin_amg sin_amg
2680# endif
2681# ifdef sqrt
2682# define F_sqrt_amg sqrt_amg
2683# endif
2684#endif /* _FASTMATH */
2685
491527d0 2686#define PERLDB_ALL 0x3f /* No _NONAME, _GOTO */
84902520
TB
2687#define PERLDBf_SUB 0x01 /* Debug sub enter/exit. */
2688#define PERLDBf_LINE 0x02 /* Keep line #. */
2689#define PERLDBf_NOOPT 0x04 /* Switch off optimizations. */
2690#define PERLDBf_INTER 0x08 /* Preserve more data for
2691 later inspections. */
2692#define PERLDBf_SUBLINE 0x10 /* Keep subr source lines. */
2693#define PERLDBf_SINGLE 0x20 /* Start with single-step on. */
491527d0
GS
2694#define PERLDBf_NONAME 0x40 /* For _SUB: no name of the subr. */
2695#define PERLDBf_GOTO 0x80 /* Report goto: call DB::goto. */
84902520 2696
3280af22
NIS
2697#define PERLDB_SUB (PL_perldb && (PL_perldb & PERLDBf_SUB))
2698#define PERLDB_LINE (PL_perldb && (PL_perldb & PERLDBf_LINE))
2699#define PERLDB_NOOPT (PL_perldb && (PL_perldb & PERLDBf_NOOPT))
2700#define PERLDB_INTER (PL_perldb && (PL_perldb & PERLDBf_INTER))
2701#define PERLDB_SUBLINE (PL_perldb && (PL_perldb & PERLDBf_SUBLINE))
2702#define PERLDB_SINGLE (PL_perldb && (PL_perldb & PERLDBf_SINGLE))
2703#define PERLDB_SUB_NN (PL_perldb && (PL_perldb & (PERLDBf_NONAME)))
2704#define PERLDB_GOTO (PL_perldb && (PL_perldb & PERLDBf_GOTO))
84902520 2705
bbce6d69 2706
36477c24 2707#ifdef USE_LOCALE_NUMERIC
bbce6d69 2708
36477c24 2709#define SET_NUMERIC_STANDARD() \
2710 STMT_START { \
3280af22 2711 if (! PL_numeric_standard) \
36477c24 2712 perl_set_numeric_standard(); \
2713 } STMT_END
2714
2715#define SET_NUMERIC_LOCAL() \
2716 STMT_START { \
3280af22 2717 if (! PL_numeric_local) \
36477c24 2718 perl_set_numeric_local(); \
2719 } STMT_END
bbce6d69 2720
36477c24 2721#else /* !USE_LOCALE_NUMERIC */
bbce6d69 2722
36477c24 2723#define SET_NUMERIC_STANDARD() /**/
2724#define SET_NUMERIC_LOCAL() /**/
bbce6d69 2725
36477c24 2726#endif /* !USE_LOCALE_NUMERIC */
a0d0e21e 2727
e5c9fcd0 2728#if !defined(PERLIO_IS_STDIO) && defined(HASATTRIBUTE)
760ac839
LW
2729/*
2730 * Now we have __attribute__ out of the way
2731 * Remap printf
2732 */
2733#define printf PerlIO_stdoutf
2734#endif
2735
a868473f
NIS
2736#ifndef PERL_SCRIPT_MODE
2737#define PERL_SCRIPT_MODE "r"
2738#endif
2739
fba3b22e
MB
2740/*
2741 * nice_chunk and nice_chunk size need to be set
2742 * and queried under the protection of sv_mutex
2743 */
2744#define offer_nice_chunk(chunk, chunk_size) do { \
940cb80d 2745 LOCK_SV_MUTEX; \
3280af22
NIS
2746 if (!PL_nice_chunk) { \
2747 PL_nice_chunk = (char*)(chunk); \
2748 PL_nice_chunk_size = (chunk_size); \
fba3b22e 2749 } \
fc80cf79
GS
2750 else { \
2751 Safefree(chunk); \
2752 } \
940cb80d 2753 UNLOCK_SV_MUTEX; \
fba3b22e
MB
2754 } while (0)
2755
bd89102f
AD
2756#ifdef HAS_SEM
2757# include <sys/ipc.h>
2758# include <sys/sem.h>
2759# ifndef HAS_UNION_SEMUN /* Provide the union semun. */
2760 union semun {
2761 int val;
2762 struct semid_ds *buf;
2763 unsigned short *array;
2764 };
2765# endif
2766# ifdef USE_SEMCTL_SEMUN
2767# define Semctl(id, num, cmd, semun) semctl(id, num, cmd, semun)
2768# else
2769# ifdef USE_SEMCTL_SEMID_DS
2770# define Semctl(id, num, cmd, semun) semctl(id, num, cmd, semun.buf)
2771# endif
2772# endif
bd89102f 2773#endif
49f531da 2774
ff49bff8
JH
2775/* Mention
2776
2777 INSTALL_USR_BIN_PERL
2778
2779 I_SYS_MMAN
2780 HAS_MMAP
2781 HAS_MUNMAP
2782 HAS_MPROTECT
2783 HAS_MSYNC
2784 HAS_MADVISE
2785 Mmap_t
2786
2787 here so that Configure picks them up. */
104d25b7
JH
2788
2789#ifdef IAMSUID
2790
2791#ifdef I_SYS_STATVFS
32b3cf08
JH
2792# include <sys/statvfs.h> /* for f?statvfs() */
2793#endif
2794#ifdef I_SYS_MOUNT
2795# include <sys/mount.h> /* for *BSD f?statfs() */
2796#endif
2797#ifdef I_MNTENT
2798# include <mntent.h> /* for getmntent() */
104d25b7
JH
2799#endif
2800
2801#endif /* IAMSUID */
2802
4d8076ea 2803/* and finally... */
cceca5ed 2804#define PERL_PATCHLEVEL_H_IMPLICIT
4d8076ea 2805#include "patchlevel.h"
cceca5ed 2806#undef PERL_PATCHLEVEL_H_IMPLICIT
4d8076ea 2807
85e6fe83 2808#endif /* Include guard */