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