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