This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Integrate with Sarathy.
[perl5.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 /* This comes after <stdlib.h> so we don't try to change the standard
452  * library prototypes; we'll use our own in proto.h instead. */
453
454 #ifdef MYMALLOC
455 #  ifdef PERL_POLLUTE_MALLOC
456 #    define Perl_malloc         malloc
457 #    define Perl_calloc         calloc
458 #    define Perl_realloc        realloc
459 #    define Perl_mfree          free
460 #  else
461 #    define EMBEDMYMALLOC       /* for compatibility */
462 #  endif
463 Malloc_t Perl_malloc (MEM_SIZE nbytes);
464 Malloc_t Perl_calloc (MEM_SIZE elements, MEM_SIZE size);
465 Malloc_t Perl_realloc (Malloc_t where, MEM_SIZE nbytes);
466 /* 'mfree' rather than 'free', since there is already a 'perl_free'
467  * that causes clashes with case-insensitive linkers */
468 Free_t   Perl_mfree (Malloc_t where);
469
470 #  define safemalloc  Perl_malloc
471 #  define safecalloc  Perl_calloc
472 #  define saferealloc Perl_realloc
473 #  define safefree    Perl_mfree
474 #else  /* MYMALLOC */
475 #  define safemalloc  safesysmalloc
476 #  define safecalloc  safesyscalloc
477 #  define saferealloc safesysrealloc
478 #  define safefree    safesysfree
479 #endif /* MYMALLOC */
480
481 #if defined(STANDARD_C) && defined(I_STDDEF)
482 #   include <stddef.h>
483 #   define STRUCT_OFFSET(s,m)  offsetof(s,m)
484 #else
485 #   define STRUCT_OFFSET(s,m)  (Size_t)(&(((s *)0)->m))
486 #endif
487
488 #if defined(I_STRING) || defined(__cplusplus)
489 #   include <string.h>
490 #else
491 #   include <strings.h>
492 #endif
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 condop CONDOP;
1242 typedef struct pmop PMOP;
1243 typedef struct svop SVOP;
1244 typedef struct gvop GVOP;
1245 typedef struct pvop PVOP;
1246 typedef struct loop LOOP;
1247
1248 typedef struct Outrec Outrec;
1249 typedef struct interpreter PerlInterpreter;
1250 #ifndef __BORLANDC__
1251 typedef struct ff FF;           /* XXX not defined anywhere, should go? */
1252 #endif
1253 typedef struct sv SV;
1254 typedef struct av AV;
1255 typedef struct hv HV;
1256 typedef struct cv CV;
1257 typedef struct regexp REGEXP;
1258 typedef struct gp GP;
1259 typedef struct gv GV;
1260 typedef struct io IO;
1261 typedef struct context PERL_CONTEXT;
1262 typedef struct block BLOCK;
1263
1264 typedef struct magic MAGIC;
1265 typedef struct xrv XRV;
1266 typedef struct xpv XPV;
1267 typedef struct xpviv XPVIV;
1268 typedef struct xpvuv XPVUV;
1269 typedef struct xpvnv XPVNV;
1270 typedef struct xpvmg XPVMG;
1271 typedef struct xpvlv XPVLV;
1272 typedef struct xpvav XPVAV;
1273 typedef struct xpvhv XPVHV;
1274 typedef struct xpvgv XPVGV;
1275 typedef struct xpvcv XPVCV;
1276 typedef struct xpvbm XPVBM;
1277 typedef struct xpvfm XPVFM;
1278 typedef struct xpvio XPVIO;
1279 typedef struct mgvtbl MGVTBL;
1280 typedef union any ANY;
1281
1282 #include "handy.h"
1283
1284 /* Some day when we have more 64-bit experience under our belts we may
1285  * be able to merge some of the USE_64_BIT_{FILES,OFFSETS,STDIO,DBM}. At
1286  * the moment (Oct 1998), though, keep them separate. --jhi
1287  */
1288 #ifdef USE_64_BITS
1289 #   ifdef USE_64_BIT_FILES
1290 #       ifndef USE_64_BIT_OFFSETS
1291 #          define USE_64_BIT_OFFSETS
1292 #       endif
1293 #       ifndef USE_64_BIT_STDIO
1294 #           define USE_64_BIT_STDIO
1295 #       endif
1296 #       ifndef USE_64_BIT_DBM
1297 #           define USE_64_BIT_DBM
1298 #       endif
1299 #   endif
1300 /* Mention LSEEKSIZE here to get it included in %Config. */
1301 #   ifdef USE_64_BIT_OFFSETS
1302 #       ifdef HAS_FSTAT64
1303 #           define fstat fstat64
1304 #       endif
1305 #       ifdef HAS_FTRUNCATE64
1306 #           define ftruncate ftruncate64
1307 #       endif
1308 #       ifdef HAS_LSEEK64
1309 #           define lseek lseek64
1310 #           ifdef HAS_OFF64_T
1311 #               undef Off_t
1312 #               define Off_t off64_t
1313 #           endif
1314 #       endif
1315 #       ifdef HAS_LSTAT64
1316 #           define lstat lstat64
1317 #       endif
1318         /* Some systems have open64() in libc but use that only
1319          * for true LP64 mode, in mixed mode (ILP32LL64, for example)
1320          * they use the vanilla open().  Such systems should undefine
1321          * d_open64 in their hints files. --jhi */
1322 #       if defined(HAS_OPEN64)
1323 #           define open open64
1324 #       endif
1325 #       ifdef HAS_OPENDIR64
1326 #           define opendir opendir64
1327 #       endif
1328 #       ifdef HAS_READDIR64
1329 #           define readdir readdir64
1330 #           ifdef HAS_STRUCT_DIRENT64
1331 #               define dirent dirent64
1332 #           endif
1333 #       endif
1334 #       ifdef HAS_SEEKDIR64
1335 #           define seekdir seekdir64
1336 #       endif
1337 #       ifdef HAS_STAT64
1338 #           define stat stat64 /* Affects also struct stat, hopefully okay. */
1339 #       endif
1340 #       ifdef HAS_TELLDIR64
1341 #           define telldir telldir64
1342 #       endif
1343 #       ifdef HAS_TRUNCATE64
1344 #           define truncate truncate64
1345 #       endif
1346         /* flock is not #defined here to be flock64 because it seems
1347            that a system may have struct flock64 but still use flock()
1348            and not flock64().  The actual flocking code in pp_sys.c
1349            must be changed.  Also lockf and lockf64 must be dealt
1350            with in pp_sys.c. --jhi */
1351 #   endif
1352 #   ifdef USE_64_BIT_STDIO
1353 #       ifdef HAS_FGETPOS64
1354 #           define fgetpos fgetpos64
1355 #       endif
1356 #       ifdef HAS_FOPEN64
1357 #           define fopen fopen64
1358 #       endif
1359 #       ifdef HAS_FREOPEN64
1360 #           define freopen freopen64
1361 #       endif
1362 #       ifdef HAS_FSEEK64
1363 #           define fseek fseek64
1364 #       endif
1365 #       ifdef HAS_FSEEKO64
1366 #           define fseeko fseeko64
1367 #       endif
1368 #       ifdef HAS_FSETPOS64
1369 #           define fsetpos fsetpos64
1370 #       endif
1371 #       ifdef HAS_FTELL64
1372 #           define ftell ftell64
1373 #       endif
1374 #       ifdef HAS_FTELLO64
1375 #           define ftello ftello64
1376 #       endif
1377 #       ifdef HAS_TMPFILE64
1378 #           define tmpfile tmpfile64
1379 #       endif
1380 #   endif
1381 #   ifdef USE_64_BIT_DBM
1382 #       ifdef HAS_DBMINIT64
1383 #           define dbminit dbminit64
1384 #       endif
1385 #       ifdef HAS_DBMCLOSE64
1386 #           define dbmclose dbmclose64
1387 #       endif
1388 #       ifdef HAS_FETCH64
1389 #           define fetch fetch64
1390 #       endif
1391 #       ifdef HAS_DELETE64
1392 #           define delete delete64
1393 #       endif
1394 #       ifdef HAS_STORE64
1395 #           define store store64
1396 #       endif
1397 #       ifdef HAS_FIRSTKEY64
1398 #           define firstkey firstkey64
1399 #       endif
1400 #       ifdef HAS_NEXTKEY64
1401 #           define nextkey nextkey64
1402 #       endif
1403 #   endif
1404 #endif
1405
1406 #if defined(__OPEN_VM)
1407 # include "vmesa/vmesaish.h"
1408 #endif
1409
1410 #ifdef DOSISH
1411 # if defined(OS2)
1412 #   include "os2ish.h"
1413 # else
1414 #   include "dosish.h"
1415 # endif
1416 #else
1417 # if defined(VMS)
1418 #   include "vmsish.h"
1419 # else
1420 #   if defined(PLAN9)
1421 #     include "./plan9/plan9ish.h"
1422 #   else
1423 #     if defined(MPE)
1424 #       include "mpeix/mpeixish.h"
1425 #     else
1426 #       if defined(__VOS__)
1427 #         include "vosish.h"
1428 #       else
1429 #         if defined(EPOC)
1430 #           include "epocish.h"
1431 #         else
1432 #           include "unixish.h"
1433 #         endif
1434 #       endif
1435 #     endif
1436 #   endif
1437 # endif
1438 #endif         
1439
1440 #ifndef MAXPATHLEN
1441 #  ifdef PATH_MAX
1442 #    ifdef _POSIX_PATH_MAX
1443 #       if PATH_MAX > _POSIX_PATH_MAX
1444 /* MAXPATHLEN is supposed to include the final null character,
1445  * as opposed to PATH_MAX and _POSIX_PATH_MAX. */
1446 #         define MAXPATHLEN (PATH_MAX+1)
1447 #       else
1448 #         define MAXPATHLEN (_POSIX_PATH_MAX+1)
1449 #       endif
1450 #    else
1451 #      define MAXPATHLEN (PATH_MAX+1)
1452 #    endif
1453 #  else
1454 #    ifdef _POSIX_PATH_MAX
1455 #       define MAXPATHLEN (_POSIX_PATH_MAX+1)
1456 #    else
1457 #       define MAXPATHLEN 1024  /* Err on the large side. */
1458 #    endif
1459 #  endif
1460 #endif
1461
1462 #ifndef FUNC_NAME_TO_PTR
1463 #define FUNC_NAME_TO_PTR(name)          name
1464 #endif
1465
1466 /* 
1467  * USE_THREADS needs to be after unixish.h as <pthread.h> includes
1468  * <sys/signal.h> which defines NSIG - which will stop inclusion of <signal.h>
1469  * this results in many functions being undeclared which bothers C++
1470  * May make sense to have threads after "*ish.h" anyway
1471  */
1472
1473 #ifdef USE_THREADS
1474    /* pending resolution of licensing issues, we avoid the erstwhile
1475     * atomic.h everywhere */
1476 #  define EMULATE_ATOMIC_REFCOUNTS
1477
1478 #  ifdef FAKE_THREADS
1479 #    include "fakethr.h"
1480 #  else
1481 #    ifdef WIN32
1482 #      include <win32thread.h>
1483 #    else
1484 #      ifdef OS2
1485 #        include "os2thread.h"
1486 #      else
1487 #        ifdef I_MACH_CTHREADS
1488 #          include <mach/cthreads.h>
1489 #          if (defined(NeXT) || defined(__NeXT__)) && defined(PERL_POLLUTE_MALLOC)
1490 #            define MUTEX_INIT_CALLS_MALLOC
1491 #          endif
1492 typedef cthread_t       perl_os_thread;
1493 typedef mutex_t         perl_mutex;
1494 typedef condition_t     perl_cond;
1495 typedef void *          perl_key;
1496 #        else /* Posix threads */
1497 #          include <pthread.h>
1498 typedef pthread_t       perl_os_thread;
1499 typedef pthread_mutex_t perl_mutex;
1500 typedef pthread_cond_t  perl_cond;
1501 typedef pthread_key_t   perl_key;
1502 #        endif /* I_MACH_CTHREADS */
1503 #      endif /* OS2 */
1504 #    endif /* WIN32 */
1505 #  endif /* FAKE_THREADS */
1506 #endif /* USE_THREADS */
1507   
1508 #ifdef VMS
1509 #   define STATUS_NATIVE        PL_statusvalue_vms
1510 #   define STATUS_NATIVE_EXPORT \
1511         ((I32)PL_statusvalue_vms == -1 ? 44 : PL_statusvalue_vms)
1512 #   define STATUS_NATIVE_SET(n)                                         \
1513         STMT_START {                                                    \
1514             PL_statusvalue_vms = (n);                                   \
1515             if ((I32)PL_statusvalue_vms == -1)                          \
1516                 PL_statusvalue = -1;                                    \
1517             else if (PL_statusvalue_vms & STS$M_SUCCESS)                \
1518                 PL_statusvalue = 0;                                     \
1519             else if ((PL_statusvalue_vms & STS$M_SEVERITY) == 0)        \
1520                 PL_statusvalue = 1 << 8;                                \
1521             else                                                        \
1522                 PL_statusvalue = (PL_statusvalue_vms & STS$M_SEVERITY) << 8;    \
1523         } STMT_END
1524 #   define STATUS_POSIX PL_statusvalue
1525 #   ifdef VMSISH_STATUS
1526 #       define STATUS_CURRENT   (VMSISH_STATUS ? STATUS_NATIVE : STATUS_POSIX)
1527 #   else
1528 #       define STATUS_CURRENT   STATUS_POSIX
1529 #   endif
1530 #   define STATUS_POSIX_SET(n)                          \
1531         STMT_START {                                    \
1532             PL_statusvalue = (n);                               \
1533             if (PL_statusvalue != -1) {                 \
1534                 PL_statusvalue &= 0xFFFF;                       \
1535                 PL_statusvalue_vms = PL_statusvalue ? 44 : 1;   \
1536             }                                           \
1537             else PL_statusvalue_vms = -1;                       \
1538         } STMT_END
1539 #   define STATUS_ALL_SUCCESS   (PL_statusvalue = 0, PL_statusvalue_vms = 1)
1540 #   define STATUS_ALL_FAILURE   (PL_statusvalue = 1, PL_statusvalue_vms = 44)
1541 #else
1542 #   define STATUS_NATIVE        STATUS_POSIX
1543 #   define STATUS_NATIVE_EXPORT STATUS_POSIX
1544 #   define STATUS_NATIVE_SET    STATUS_POSIX_SET
1545 #   define STATUS_POSIX         PL_statusvalue
1546 #   define STATUS_POSIX_SET(n)          \
1547         STMT_START {                    \
1548             PL_statusvalue = (n);               \
1549             if (PL_statusvalue != -1)   \
1550                 PL_statusvalue &= 0xFFFF;       \
1551         } STMT_END
1552 #   define STATUS_CURRENT STATUS_POSIX
1553 #   define STATUS_ALL_SUCCESS   (PL_statusvalue = 0)
1554 #   define STATUS_ALL_FAILURE   (PL_statusvalue = 1)
1555 #endif
1556
1557 /* This defines a way to flush all output buffers.  This may be a
1558  * performance issue, so we allow people to disable it.
1559  * XXX the default needs a Configure test, as it may not work everywhere.
1560  */
1561 #ifndef PERL_FLUSHALL_FOR_CHILD
1562 # if defined(FFLUSH_NULL) || defined(USE_SFIO)
1563 #  define PERL_FLUSHALL_FOR_CHILD       PerlIO_flush((PerlIO*)NULL)
1564 # else
1565 #  ifdef FFLUSH_ALL
1566 #   define PERL_FLUSHALL_FOR_CHILD      my_fflush_all()
1567 #  else
1568 #   define PERL_FLUSHALL_FOR_CHILD      (void)0
1569 #  endif
1570 # endif
1571 #endif
1572
1573 /* Some unistd.h's give a prototype for pause() even though
1574    HAS_PAUSE ends up undefined.  This causes the #define
1575    below to be rejected by the compmiler.  Sigh.
1576 */
1577 #ifdef HAS_PAUSE
1578 #define Pause   pause
1579 #else
1580 #define Pause() sleep((32767<<16)+32767)
1581 #endif
1582
1583 #ifndef IOCPARM_LEN
1584 #   ifdef IOCPARM_MASK
1585         /* on BSDish systes we're safe */
1586 #       define IOCPARM_LEN(x)  (((x) >> 16) & IOCPARM_MASK)
1587 #   else
1588         /* otherwise guess at what's safe */
1589 #       define IOCPARM_LEN(x)   256
1590 #   endif
1591 #endif
1592
1593 #if defined(CYGWIN32)
1594 /* USEMYBINMODE
1595  *   This symbol, if defined, indicates that the program should
1596  *   use the routine my_binmode(FILE *fp, char iotype) to insure
1597  *   that a file is in "binary" mode -- that is, that no translation
1598  *   of bytes occurs on read or write operations.
1599  */
1600 #  define USEMYBINMODE / **/
1601 #  define my_binmode(fp, iotype) \
1602             (PerlLIO_setmode(PerlIO_fileno(fp), O_BINARY) != -1 ? TRUE : NULL)
1603 #endif
1604
1605 #ifdef UNION_ANY_DEFINITION
1606 UNION_ANY_DEFINITION;
1607 #else
1608 union any {
1609     void*       any_ptr;
1610     I32         any_i32;
1611     IV          any_iv;
1612     long        any_long;
1613     void        (CPERLscope(*any_dptr)) (pTHX_ void*);
1614 };
1615 #endif
1616
1617 #ifdef USE_THREADS
1618 #define ARGSproto struct perl_thread *thr
1619 #else
1620 #define ARGSproto
1621 #endif /* USE_THREADS */
1622
1623 #if defined(CYGWIN32)
1624 /* USEMYBINMODE
1625  *   This symbol, if defined, indicates that the program should
1626  *   use the routine my_binmode(FILE *fp, char iotype) to insure
1627  *   that a file is in "binary" mode -- that is, that no translation
1628  *   of bytes occurs on read or write operations.
1629  */
1630 #define USEMYBINMODE / **/
1631 #define my_binmode(fp, iotype) \
1632         (PerlLIO_setmode(PerlIO_fileno(fp), O_BINARY) != -1 ? TRUE : FALSE)
1633 #endif
1634
1635 typedef I32 (*filter_t) (pTHXo_ int, SV *, int);
1636
1637 #define FILTER_READ(idx, sv, len)  filter_read(idx, sv, len)
1638 #define FILTER_DATA(idx)           (AvARRAY(PL_rsfp_filters)[idx])
1639 #define FILTER_ISREADER(idx)       (idx >= AvFILLp(PL_rsfp_filters))
1640
1641 #ifdef WIN32
1642 #include "win32.h"
1643 #endif
1644
1645 #include "iperlsys.h"
1646 #include "regexp.h"
1647 #include "sv.h"
1648 #include "util.h"
1649 #include "form.h"
1650 #include "gv.h"
1651 #include "cv.h"
1652 #include "op.h"
1653 #include "cop.h"
1654 #include "av.h"
1655 #include "hv.h"
1656 #include "mg.h"
1657 #include "scope.h"
1658 #include "warning.h"
1659 #include "utf8.h"
1660
1661 /* Current curly descriptor */
1662 typedef struct curcur CURCUR;
1663 struct curcur {
1664     int         parenfloor;     /* how far back to strip paren data */
1665     int         cur;            /* how many instances of scan we've matched */
1666     int         min;            /* the minimal number of scans to match */
1667     int         max;            /* the maximal number of scans to match */
1668     int         minmod;         /* whether to work our way up or down */
1669     regnode *   scan;           /* the thing to match */
1670     regnode *   next;           /* what has to match after it */
1671     char *      lastloc;        /* where we started matching this scan */
1672     CURCUR *    oldcc;          /* current curly before we started this one */
1673 };
1674
1675 typedef struct _sublex_info SUBLEXINFO;
1676 struct _sublex_info {
1677     I32 super_state;    /* lexer state to save */
1678     I32 sub_inwhat;     /* "lex_inwhat" to use */
1679     OP *sub_op;         /* "lex_op" to use */
1680     char *super_bufptr; /* PL_bufptr that was */
1681     char *super_bufend; /* PL_bufend that was */
1682 };
1683
1684 typedef struct magic_state MGS; /* struct magic_state defined in mg.c */
1685
1686 /* Length of a variant. */
1687
1688 typedef struct {
1689     I32 len_min;
1690     I32 len_delta;
1691     I32 pos_min;
1692     I32 pos_delta;
1693     SV *last_found;
1694     I32 last_end;                       /* min value, <0 unless valid. */
1695     I32 last_start_min;
1696     I32 last_start_max;
1697     SV **longest;                       /* Either &l_fixed, or &l_float. */
1698     SV *longest_fixed;
1699     I32 offset_fixed;
1700     SV *longest_float;
1701     I32 offset_float_min;
1702     I32 offset_float_max;
1703     I32 flags;
1704 } scan_data_t;
1705
1706 typedef I32 CHECKPOINT;
1707
1708 #if defined(iAPX286) || defined(M_I286) || defined(I80286)
1709 #   define I286
1710 #endif
1711
1712 #if defined(htonl) && !defined(HAS_HTONL)
1713 #define HAS_HTONL
1714 #endif
1715 #if defined(htons) && !defined(HAS_HTONS)
1716 #define HAS_HTONS
1717 #endif
1718 #if defined(ntohl) && !defined(HAS_NTOHL)
1719 #define HAS_NTOHL
1720 #endif
1721 #if defined(ntohs) && !defined(HAS_NTOHS)
1722 #define HAS_NTOHS
1723 #endif
1724 #ifndef HAS_HTONL
1725 #if (BYTEORDER & 0xffff) != 0x4321
1726 #define HAS_HTONS
1727 #define HAS_HTONL
1728 #define HAS_NTOHS
1729 #define HAS_NTOHL
1730 #define MYSWAP
1731 #define htons my_swap
1732 #define htonl my_htonl
1733 #define ntohs my_swap
1734 #define ntohl my_ntohl
1735 #endif
1736 #else
1737 #if (BYTEORDER & 0xffff) == 0x4321
1738 #undef HAS_HTONS
1739 #undef HAS_HTONL
1740 #undef HAS_NTOHS
1741 #undef HAS_NTOHL
1742 #endif
1743 #endif
1744
1745 /*
1746  * Little-endian byte order functions - 'v' for 'VAX', or 'reVerse'.
1747  * -DWS
1748  */
1749 #if BYTEORDER != 0x1234
1750 # define HAS_VTOHL
1751 # define HAS_VTOHS
1752 # define HAS_HTOVL
1753 # define HAS_HTOVS
1754 # if BYTEORDER == 0x4321 || BYTEORDER == 0x87654321
1755 #  define vtohl(x)      ((((x)&0xFF)<<24)       \
1756                         +(((x)>>24)&0xFF)       \
1757                         +(((x)&0x0000FF00)<<8)  \
1758                         +(((x)&0x00FF0000)>>8)  )
1759 #  define vtohs(x)      ((((x)&0xFF)<<8) + (((x)>>8)&0xFF))
1760 #  define htovl(x)      vtohl(x)
1761 #  define htovs(x)      vtohs(x)
1762 # endif
1763         /* otherwise default to functions in util.c */
1764 #endif
1765
1766 #ifdef CASTNEGFLOAT
1767 #define U_S(what) ((U16)(what))
1768 #define U_I(what) ((unsigned int)(what))
1769 #define U_L(what) ((U32)(what))
1770 #else
1771 #define U_S(what) ((U16)cast_ulong((NV)(what)))
1772 #define U_I(what) ((unsigned int)cast_ulong((NV)(what)))
1773 #define U_L(what) (cast_ulong((NV)(what)))
1774 #endif
1775
1776 #ifdef CASTI32
1777 #define I_32(what) ((I32)(what))
1778 #define I_V(what) ((IV)(what))
1779 #define U_V(what) ((UV)(what))
1780 #else
1781 #define I_32(what) (cast_i32((NV)(what)))
1782 #define I_V(what) (cast_iv((NV)(what)))
1783 #define U_V(what) (cast_uv((NV)(what)))
1784 #endif
1785
1786 /* Used with UV/IV arguments: */
1787                                         /* XXXX: need to speed it up */
1788 #define CLUMP_2UV(iv)   ((iv) < 0 ? 0 : (UV)(iv))
1789 #define CLUMP_2IV(uv)   ((uv) > (UV)IV_MAX ? IV_MAX : (IV)(uv))
1790
1791 struct Outrec {
1792     I32         o_lines;
1793     char        *o_str;
1794     U32         o_len;
1795 };
1796
1797 #ifndef MAXSYSFD
1798 #   define MAXSYSFD 2
1799 #endif
1800
1801 #ifndef TMPPATH
1802 #  define TMPPATH "/tmp/perl-eXXXXXX"
1803 #endif
1804
1805 #ifndef __cplusplus
1806 Uid_t getuid (void);
1807 Uid_t geteuid (void);
1808 Gid_t getgid (void);
1809 Gid_t getegid (void);
1810 #endif
1811
1812 #ifndef Perl_debug_log
1813 #define Perl_debug_log  PerlIO_stderr()
1814 #endif
1815
1816 #ifdef DEBUGGING
1817 #undef  YYDEBUG
1818 #define YYDEBUG 1
1819 #define DEB(a)                          a
1820 #define DEBUG(a)   if (PL_debug)                a
1821 #define DEBUG_p(a) if (PL_debug & 1)    a
1822 #define DEBUG_s(a) if (PL_debug & 2)    a
1823 #define DEBUG_l(a) if (PL_debug & 4)    a
1824 #define DEBUG_t(a) if (PL_debug & 8)    a
1825 #define DEBUG_o(a) if (PL_debug & 16)   a
1826 #define DEBUG_c(a) if (PL_debug & 32)   a
1827 #define DEBUG_P(a) if (PL_debug & 64)   a
1828 #  if defined(PERL_OBJECT)
1829 #    define DEBUG_m(a) if (PL_debug & 128)      a
1830 #  else
1831 #    define DEBUG_m(a) if (PL_curinterp && PL_debug & 128)      a
1832 #  endif
1833 #define DEBUG_f(a) if (PL_debug & 256)  a
1834 #define DEBUG_r(a) if (PL_debug & 512)  a
1835 #define DEBUG_x(a) if (PL_debug & 1024) a
1836 #define DEBUG_u(a) if (PL_debug & 2048) a
1837 #define DEBUG_L(a) if (PL_debug & 4096) a
1838 #define DEBUG_H(a) if (PL_debug & 8192) a
1839 #define DEBUG_X(a) if (PL_debug & 16384)        a
1840 #define DEBUG_D(a) if (PL_debug & 32768)        a
1841 #  ifdef USE_THREADS
1842 #    define DEBUG_S(a) if (PL_debug & (1<<16))  a
1843 #  else
1844 #    define DEBUG_S(a)
1845 #  endif
1846 #else
1847 #define DEB(a)
1848 #define DEBUG(a)
1849 #define DEBUG_p(a)
1850 #define DEBUG_s(a)
1851 #define DEBUG_l(a)
1852 #define DEBUG_t(a)
1853 #define DEBUG_o(a)
1854 #define DEBUG_c(a)
1855 #define DEBUG_P(a)
1856 #define DEBUG_m(a)
1857 #define DEBUG_f(a)
1858 #define DEBUG_r(a)
1859 #define DEBUG_x(a)
1860 #define DEBUG_u(a)
1861 #define DEBUG_S(a)
1862 #define DEBUG_H(a)
1863 #define DEBUG_X(a)
1864 #define DEBUG_D(a)
1865 #define DEBUG_S(a)
1866 #endif
1867 #define YYMAXDEPTH 300
1868
1869 #ifndef assert  /* <assert.h> might have been included somehow */
1870 #define assert(what)    DEB( {                                          \
1871         if (!(what)) {                                                  \
1872             Perl_croak(aTHX_ "Assertion failed: file \"%s\", line %d",  \
1873                 __FILE__, __LINE__);                                    \
1874             PerlProc_exit(1);                                           \
1875         }})
1876 #endif
1877
1878 struct ufuncs {
1879     I32 (*uf_val)(IV, SV*);
1880     I32 (*uf_set)(IV, SV*);
1881     IV uf_index;
1882 };
1883
1884 /* Fix these up for __STDC__ */
1885 #ifndef DONT_DECLARE_STD
1886 char *mktemp (char*);
1887 double atof (const char*);
1888 #endif
1889
1890 #ifndef STANDARD_C
1891 /* All of these are in stdlib.h or time.h for ANSI C */
1892 Time_t time();
1893 struct tm *gmtime(), *localtime();
1894 #if defined(OEMVS) || defined(__OPEN_VM)
1895 char *(strchr)(), *(strrchr)();
1896 char *(strcpy)(), *(strcat)();
1897 #else
1898 char *strchr(), *strrchr();
1899 char *strcpy(), *strcat();
1900 #endif
1901 #endif /* ! STANDARD_C */
1902
1903
1904 #ifdef I_MATH
1905 #    include <math.h>
1906 #else
1907 START_EXTERN_C
1908             double exp (double);
1909             double log (double);
1910             double log10 (double);
1911             double sqrt (double);
1912             double frexp (double,int*);
1913             double ldexp (double,int);
1914             double modf (double,double*);
1915             double sin (double);
1916             double cos (double);
1917             double atan2 (double,double);
1918             double pow (double,double);
1919 END_EXTERN_C
1920 #endif
1921
1922 #ifndef __cplusplus
1923 #  if defined(NeXT) || defined(__NeXT__) /* or whatever catches all NeXTs */
1924 char *crypt ();       /* Maybe more hosts will need the unprototyped version */
1925 #  else
1926 #    if !defined(WIN32) || !defined(HAVE_DES_FCRYPT)
1927 char *crypt (const char*, const char*);
1928 #    endif /* !WIN32 && !HAVE_CRYPT_SOURCE */
1929 #  endif /* !NeXT && !__NeXT__ */
1930 #  ifndef DONT_DECLARE_STD
1931 #    ifndef getenv
1932 char *getenv (const char*);
1933 #    endif /* !getenv */
1934 #ifndef EPOC
1935 Off_t lseek (int,Off_t,int);
1936 #endif
1937 #  endif /* !DONT_DECLARE_STD */
1938 char *getlogin (void);
1939 #endif /* !__cplusplus */
1940
1941 #ifdef UNLINK_ALL_VERSIONS /* Currently only makes sense for VMS */
1942 #define UNLINK unlnk
1943 I32 unlnk (char*);
1944 #else
1945 #define UNLINK PerlLIO_unlink
1946 #endif
1947
1948 #ifndef HAS_SETREUID
1949 #  ifdef HAS_SETRESUID
1950 #    define setreuid(r,e) setresuid(r,e,(Uid_t)-1)
1951 #    define HAS_SETREUID
1952 #  endif
1953 #endif
1954 #ifndef HAS_SETREGID
1955 #  ifdef HAS_SETRESGID
1956 #    define setregid(r,e) setresgid(r,e,(Gid_t)-1)
1957 #    define HAS_SETREGID
1958 #  endif
1959 #endif
1960
1961 typedef Signal_t (*Sighandler_t) (int);
1962
1963 #ifdef HAS_SIGACTION
1964 typedef struct sigaction Sigsave_t;
1965 #else
1966 typedef Sighandler_t Sigsave_t;
1967 #endif
1968
1969 #define SCAN_DEF 0
1970 #define SCAN_TR 1
1971 #define SCAN_REPL 2
1972
1973 #ifdef DEBUGGING
1974 # ifndef register
1975 #  define register
1976 # endif
1977 # define PAD_SV(po) pad_sv(po)
1978 # define RUNOPS_DEFAULT Perl_runops_debug
1979 #else
1980 # define PAD_SV(po) PL_curpad[po]
1981 # define RUNOPS_DEFAULT Perl_runops_standard
1982 #endif
1983
1984 #ifdef MYMALLOC
1985 #  ifdef MUTEX_INIT_CALLS_MALLOC
1986 #    define MALLOC_INIT                                 \
1987         STMT_START {                                    \
1988                 PL_malloc_mutex = NULL;                 \
1989                 MUTEX_INIT(&PL_malloc_mutex);           \
1990         } STMT_END
1991 #    define MALLOC_TERM                                 \
1992         STMT_START {                                    \
1993                 perl_mutex tmp = PL_malloc_mutex;       \
1994                 PL_malloc_mutex = NULL;                 \
1995                 MUTEX_DESTROY(&tmp);                    \
1996         } STMT_END
1997 #  else
1998 #    define MALLOC_INIT MUTEX_INIT(&PL_malloc_mutex)
1999 #    define MALLOC_TERM MUTEX_DESTROY(&PL_malloc_mutex)
2000 #  endif
2001 #else
2002 #  define MALLOC_INIT
2003 #  define MALLOC_TERM
2004 #endif
2005
2006
2007 typedef int (CPERLscope(*runops_proc_t)) (pTHX);
2008 typedef OP* (CPERLscope(*PPADDR_t)[]) (pTHX);
2009
2010 /* _ (for $_) must be first in the following list (DEFSV requires it) */
2011 #define THREADSV_NAMES "_123456789&`'+/.,\\\";^-%=|~:\001\005!@"
2012
2013 /* NeXT has problems with crt0.o globals */
2014 #if defined(__DYNAMIC__) && \
2015     (defined(NeXT) || defined(__NeXT__) || defined(__APPLE__))
2016 #  if defined(NeXT) || defined(__NeXT)
2017 #    include <mach-o/dyld.h>
2018 #    define environ (*environ_pointer)
2019 EXT char *** environ_pointer;
2020 #  else
2021 #    if defined(__APPLE__)
2022 #      include <crt_externs.h>  /* for the env array */
2023 #      define environ (*_NSGetEnviron())
2024 #    endif
2025 #  endif
2026 #else
2027    /* VMS and some other platforms don't use the environ array */
2028 #  if !defined(VMS)
2029 #    if !defined(DONT_DECLARE_STD) || \
2030         (defined(__svr4__) && defined(__GNUC__) && defined(sun)) || \
2031         defined(__sgi) || \
2032         defined(__DGUX) || defined(EPOC)
2033 extern char **  environ;        /* environment variables supplied via exec */
2034 #    endif
2035 #  endif
2036 #endif
2037
2038 START_EXTERN_C
2039
2040 /* handy constants */
2041 EXTCONST char PL_warn_uninit[]
2042   INIT("Use of uninitialized value");
2043 EXTCONST char PL_warn_nosemi[]
2044   INIT("Semicolon seems to be missing");
2045 EXTCONST char PL_warn_reserved[]
2046   INIT("Unquoted string \"%s\" may clash with future reserved word");
2047 EXTCONST char PL_warn_nl[]
2048   INIT("Unsuccessful %s on filename containing newline");
2049 EXTCONST char PL_no_wrongref[]
2050   INIT("Can't use %s ref as %s ref");
2051 EXTCONST char PL_no_symref[]
2052   INIT("Can't use string (\"%.32s\") as %s ref while \"strict refs\" in use");
2053 EXTCONST char PL_no_usym[]
2054   INIT("Can't use an undefined value as %s reference");
2055 EXTCONST char PL_no_aelem[]
2056   INIT("Modification of non-creatable array value attempted, subscript %d");
2057 EXTCONST char PL_no_helem[]
2058   INIT("Modification of non-creatable hash value attempted, subscript \"%s\"");
2059 EXTCONST char PL_no_modify[]
2060   INIT("Modification of a read-only value attempted");
2061 EXTCONST char PL_no_mem[]
2062   INIT("Out of memory!\n");
2063 EXTCONST char PL_no_security[]
2064   INIT("Insecure dependency in %s%s");
2065 EXTCONST char PL_no_sock_func[]
2066   INIT("Unsupported socket function \"%s\" called");
2067 EXTCONST char PL_no_dir_func[]
2068   INIT("Unsupported directory function \"%s\" called");
2069 EXTCONST char PL_no_func[]
2070   INIT("The %s function is unimplemented");
2071 EXTCONST char PL_no_myglob[]
2072   INIT("\"my\" variable %s can't be in a package");
2073
2074 EXTCONST char PL_uuemap[65]
2075   INIT("`!\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_");
2076
2077
2078 #ifdef DOINIT
2079 EXT char *PL_sig_name[] = { SIG_NAME };
2080 EXT int   PL_sig_num[]  = { SIG_NUM };
2081 EXT SV  * PL_psig_ptr[sizeof(PL_sig_num)/sizeof(*PL_sig_num)];
2082 EXT SV  * PL_psig_name[sizeof(PL_sig_num)/sizeof(*PL_sig_num)];
2083 #else
2084 EXT char *PL_sig_name[];
2085 EXT int   PL_sig_num[];
2086 EXT SV  * PL_psig_ptr[];
2087 EXT SV  * PL_psig_name[];
2088 #endif
2089
2090 /* fast case folding tables */
2091
2092 #ifdef DOINIT
2093 #ifdef EBCDIC
2094 EXT unsigned char PL_fold[] = { /* fast EBCDIC case folding table */
2095     0,      1,      2,      3,      4,      5,      6,      7,
2096     8,      9,      10,     11,     12,     13,     14,     15,
2097     16,     17,     18,     19,     20,     21,     22,     23,
2098     24,     25,     26,     27,     28,     29,     30,     31,
2099     32,     33,     34,     35,     36,     37,     38,     39,
2100     40,     41,     42,     43,     44,     45,     46,     47,
2101     48,     49,     50,     51,     52,     53,     54,     55,
2102     56,     57,     58,     59,     60,     61,     62,     63,
2103     64,     65,     66,     67,     68,     69,     70,     71,
2104     72,     73,     74,     75,     76,     77,     78,     79,
2105     80,     81,     82,     83,     84,     85,     86,     87,
2106     88,     89,     90,     91,     92,     93,     94,     95,
2107     96,     97,     98,     99,     100,    101,    102,    103,
2108     104,    105,    106,    107,    108,    109,    110,    111,
2109     112,    113,    114,    115,    116,    117,    118,    119,
2110     120,    121,    122,    123,    124,    125,    126,    127,
2111     128,    'A',    'B',    'C',    'D',    'E',    'F',    'G',
2112     'H',    'I',    138,    139,    140,    141,    142,    143,
2113     144,    'J',    'K',    'L',    'M',    'N',    'O',    'P',
2114     'Q',    'R',    154,    155,    156,    157,    158,    159,
2115     160,    161,    'S',    'T',    'U',    'V',    'W',    'X',
2116     'Y',    'Z',    170,    171,    172,    173,    174,    175,
2117     176,    177,    178,    179,    180,    181,    182,    183,
2118     184,    185,    186,    187,    188,    189,    190,    191,
2119     192,    'a',    'b',    'c',    'd',    'e',    'f',    'g',
2120     'h',    'i',    202,    203,    204,    205,    206,    207,
2121     208,    'j',    'k',    'l',    'm',    'n',    'o',    'p',
2122     'q',    'r',    218,    219,    220,    221,    222,    223,
2123     224,    225,    's',    't',    'u',    'v',    'w',    'x',
2124     'y',    'z',    234,    235,    236,    237,    238,    239,
2125     240,    241,    242,    243,    244,    245,    246,    247,
2126     248,    249,    250,    251,    252,    253,    254,    255
2127 };
2128 #else   /* ascii rather than ebcdic */
2129 EXTCONST  unsigned char PL_fold[] = {
2130         0,      1,      2,      3,      4,      5,      6,      7,
2131         8,      9,      10,     11,     12,     13,     14,     15,
2132         16,     17,     18,     19,     20,     21,     22,     23,
2133         24,     25,     26,     27,     28,     29,     30,     31,
2134         32,     33,     34,     35,     36,     37,     38,     39,
2135         40,     41,     42,     43,     44,     45,     46,     47,
2136         48,     49,     50,     51,     52,     53,     54,     55,
2137         56,     57,     58,     59,     60,     61,     62,     63,
2138         64,     'a',    'b',    'c',    'd',    'e',    'f',    'g',
2139         'h',    'i',    'j',    'k',    'l',    'm',    'n',    'o',
2140         'p',    'q',    'r',    's',    't',    'u',    'v',    'w',
2141         'x',    'y',    'z',    91,     92,     93,     94,     95,
2142         96,     'A',    'B',    'C',    'D',    'E',    'F',    'G',
2143         'H',    'I',    'J',    'K',    'L',    'M',    'N',    'O',
2144         'P',    'Q',    'R',    'S',    'T',    'U',    'V',    'W',
2145         'X',    'Y',    'Z',    123,    124,    125,    126,    127,
2146         128,    129,    130,    131,    132,    133,    134,    135,
2147         136,    137,    138,    139,    140,    141,    142,    143,
2148         144,    145,    146,    147,    148,    149,    150,    151,
2149         152,    153,    154,    155,    156,    157,    158,    159,
2150         160,    161,    162,    163,    164,    165,    166,    167,
2151         168,    169,    170,    171,    172,    173,    174,    175,
2152         176,    177,    178,    179,    180,    181,    182,    183,
2153         184,    185,    186,    187,    188,    189,    190,    191,
2154         192,    193,    194,    195,    196,    197,    198,    199,
2155         200,    201,    202,    203,    204,    205,    206,    207,
2156         208,    209,    210,    211,    212,    213,    214,    215,
2157         216,    217,    218,    219,    220,    221,    222,    223,    
2158         224,    225,    226,    227,    228,    229,    230,    231,
2159         232,    233,    234,    235,    236,    237,    238,    239,
2160         240,    241,    242,    243,    244,    245,    246,    247,
2161         248,    249,    250,    251,    252,    253,    254,    255
2162 };
2163 #endif  /* !EBCDIC */
2164 #else
2165 EXTCONST unsigned char PL_fold[];
2166 #endif
2167
2168 #ifdef DOINIT
2169 EXT unsigned char PL_fold_locale[] = {
2170         0,      1,      2,      3,      4,      5,      6,      7,
2171         8,      9,      10,     11,     12,     13,     14,     15,
2172         16,     17,     18,     19,     20,     21,     22,     23,
2173         24,     25,     26,     27,     28,     29,     30,     31,
2174         32,     33,     34,     35,     36,     37,     38,     39,
2175         40,     41,     42,     43,     44,     45,     46,     47,
2176         48,     49,     50,     51,     52,     53,     54,     55,
2177         56,     57,     58,     59,     60,     61,     62,     63,
2178         64,     'a',    'b',    'c',    'd',    'e',    'f',    'g',
2179         'h',    'i',    'j',    'k',    'l',    'm',    'n',    'o',
2180         'p',    'q',    'r',    's',    't',    'u',    'v',    'w',
2181         'x',    'y',    'z',    91,     92,     93,     94,     95,
2182         96,     'A',    'B',    'C',    'D',    'E',    'F',    'G',
2183         'H',    'I',    'J',    'K',    'L',    'M',    'N',    'O',
2184         'P',    'Q',    'R',    'S',    'T',    'U',    'V',    'W',
2185         'X',    'Y',    'Z',    123,    124,    125,    126,    127,
2186         128,    129,    130,    131,    132,    133,    134,    135,
2187         136,    137,    138,    139,    140,    141,    142,    143,
2188         144,    145,    146,    147,    148,    149,    150,    151,
2189         152,    153,    154,    155,    156,    157,    158,    159,
2190         160,    161,    162,    163,    164,    165,    166,    167,
2191         168,    169,    170,    171,    172,    173,    174,    175,
2192         176,    177,    178,    179,    180,    181,    182,    183,
2193         184,    185,    186,    187,    188,    189,    190,    191,
2194         192,    193,    194,    195,    196,    197,    198,    199,
2195         200,    201,    202,    203,    204,    205,    206,    207,
2196         208,    209,    210,    211,    212,    213,    214,    215,
2197         216,    217,    218,    219,    220,    221,    222,    223,    
2198         224,    225,    226,    227,    228,    229,    230,    231,
2199         232,    233,    234,    235,    236,    237,    238,    239,
2200         240,    241,    242,    243,    244,    245,    246,    247,
2201         248,    249,    250,    251,    252,    253,    254,    255
2202 };
2203 #else
2204 EXT unsigned char PL_fold_locale[];
2205 #endif
2206
2207 #ifdef DOINIT
2208 #ifdef EBCDIC
2209 EXT unsigned char PL_freq[] = {/* EBCDIC frequencies for mixed English/C */
2210     1,      2,      84,     151,    154,    155,    156,    157,
2211     165,    246,    250,    3,      158,    7,      18,     29,
2212     40,     51,     62,     73,     85,     96,     107,    118,
2213     129,    140,    147,    148,    149,    150,    152,    153,
2214     255,      6,      8,      9,     10,     11,     12,     13,
2215      14,     15,     24,     25,     26,     27,     28,    226,
2216      29,     30,     31,     32,     33,     43,     44,     45,
2217      46,     47,     48,     49,     50,     76,     77,     78,
2218      79,     80,     81,     82,     83,     84,     85,     86,
2219      87,     94,     95,    234,    181,    233,    187,    190,
2220     180,     96,     97,     98,     99,    100,    101,    102,
2221     104,    112,    182,    174,    236,    232,    229,    103,
2222     228,    226,    114,    115,    116,    117,    118,    119,
2223     120,    121,    122,    235,    176,    230,    194,    162,
2224     130,    131,    132,    133,    134,    135,    136,    137,
2225     138,    139,    201,    205,    163,    217,    220,    224,
2226     5,      248,    227,    244,    242,    255,    241,    231,
2227     240,    253,    16,     197,    19,     20,     21,     187,
2228     23,     169,    210,    245,    237,    249,    247,    239,
2229     168,    252,    34,     196,    36,     37,     38,     39,
2230     41,     42,     251,    254,    238,    223,    221,    213,
2231     225,    177,    52,     53,     54,     55,     56,     57,
2232     58,     59,     60,     61,     63,     64,     65,     66,
2233     67,     68,     69,     70,     71,     72,     74,     75,
2234     205,    208,    186,    202,    200,    218,    198,    179,
2235     178,    214,    88,     89,     90,     91,     92,     93,
2236     217,    166,    170,    207,    199,    209,    206,    204,
2237     160,    212,    105,    106,    108,    109,    110,    111,
2238     203,    113,    216,    215,    192,    175,    193,    243,
2239     172,    161,    123,    124,    125,    126,    127,    128,
2240     222,    219,    211,    195,    188,    193,    185,    184,
2241     191,    183,    141,    142,    143,    144,    145,    146
2242 };
2243 #else  /* ascii rather than ebcdic */
2244 EXTCONST unsigned char PL_freq[] = {    /* letter frequencies for mixed English/C */
2245         1,      2,      84,     151,    154,    155,    156,    157,
2246         165,    246,    250,    3,      158,    7,      18,     29,
2247         40,     51,     62,     73,     85,     96,     107,    118,
2248         129,    140,    147,    148,    149,    150,    152,    153,
2249         255,    182,    224,    205,    174,    176,    180,    217,
2250         233,    232,    236,    187,    235,    228,    234,    226,
2251         222,    219,    211,    195,    188,    193,    185,    184,
2252         191,    183,    201,    229,    181,    220,    194,    162,
2253         163,    208,    186,    202,    200,    218,    198,    179,
2254         178,    214,    166,    170,    207,    199,    209,    206,
2255         204,    160,    212,    216,    215,    192,    175,    173,
2256         243,    172,    161,    190,    203,    189,    164,    230,
2257         167,    248,    227,    244,    242,    255,    241,    231,
2258         240,    253,    169,    210,    245,    237,    249,    247,
2259         239,    168,    252,    251,    254,    238,    223,    221,
2260         213,    225,    177,    197,    171,    196,    159,    4,
2261         5,      6,      8,      9,      10,     11,     12,     13,
2262         14,     15,     16,     17,     19,     20,     21,     22,
2263         23,     24,     25,     26,     27,     28,     30,     31,
2264         32,     33,     34,     35,     36,     37,     38,     39,
2265         41,     42,     43,     44,     45,     46,     47,     48,
2266         49,     50,     52,     53,     54,     55,     56,     57,
2267         58,     59,     60,     61,     63,     64,     65,     66,
2268         67,     68,     69,     70,     71,     72,     74,     75,
2269         76,     77,     78,     79,     80,     81,     82,     83,
2270         86,     87,     88,     89,     90,     91,     92,     93,
2271         94,     95,     97,     98,     99,     100,    101,    102,
2272         103,    104,    105,    106,    108,    109,    110,    111,
2273         112,    113,    114,    115,    116,    117,    119,    120,
2274         121,    122,    123,    124,    125,    126,    127,    128,
2275         130,    131,    132,    133,    134,    135,    136,    137,
2276         138,    139,    141,    142,    143,    144,    145,    146
2277 };
2278 #endif
2279 #else
2280 EXTCONST unsigned char PL_freq[];
2281 #endif
2282
2283 #ifdef DEBUGGING
2284 #ifdef DOINIT
2285 EXTCONST char* PL_block_type[] = {
2286         "NULL",
2287         "SUB",
2288         "EVAL",
2289         "LOOP",
2290         "SUBST",
2291         "BLOCK",
2292 };
2293 #else
2294 EXTCONST char* PL_block_type[];
2295 #endif
2296 #endif
2297
2298 END_EXTERN_C
2299
2300 /*****************************************************************************/
2301 /* This lexer/parser stuff is currently global since yacc is hard to reenter */
2302 /*****************************************************************************/
2303 /* XXX This needs to be revisited, since BEGIN makes yacc re-enter... */
2304
2305 #include "perly.h"
2306
2307 #define LEX_NOTPARSING          11      /* borrowed from toke.c */
2308
2309 typedef enum {
2310     XOPERATOR,
2311     XTERM,
2312     XREF,
2313     XSTATE,
2314     XBLOCK,
2315     XTERMBLOCK
2316 } expectation;
2317
2318 enum {          /* pass one of these to get_vtbl */
2319     want_vtbl_sv,
2320     want_vtbl_env,
2321     want_vtbl_envelem,
2322     want_vtbl_sig,
2323     want_vtbl_sigelem,
2324     want_vtbl_pack,
2325     want_vtbl_packelem,
2326     want_vtbl_dbline,
2327     want_vtbl_isa,
2328     want_vtbl_isaelem,
2329     want_vtbl_arylen,
2330     want_vtbl_glob,
2331     want_vtbl_mglob,
2332     want_vtbl_nkeys,
2333     want_vtbl_taint,
2334     want_vtbl_substr,
2335     want_vtbl_vec,
2336     want_vtbl_pos,
2337     want_vtbl_bm,
2338     want_vtbl_fm,
2339     want_vtbl_uvar,
2340     want_vtbl_defelem,
2341     want_vtbl_regexp,
2342     want_vtbl_collxfrm,
2343     want_vtbl_amagic,
2344     want_vtbl_amagicelem,
2345 #ifdef USE_THREADS
2346     want_vtbl_mutex,
2347 #endif
2348     want_vtbl_regdata,
2349     want_vtbl_regdatum,
2350     want_vtbl_backref
2351 };
2352
2353                                 /* Note: the lowest 8 bits are reserved for
2354                                    stuffing into op->op_private */
2355 #define HINT_PRIVATE_MASK       0x000000ff
2356 #define HINT_INTEGER            0x00000001
2357 #define HINT_STRICT_REFS        0x00000002
2358 /* #define HINT_notused4        0x00000004 */
2359 #define HINT_UTF8               0x00000008
2360 /* #define HINT_notused10       0x00000010 */
2361                                 /* Note: 20,40,80 used for NATIVE_HINTS */
2362
2363 #define HINT_BLOCK_SCOPE        0x00000100
2364 #define HINT_STRICT_SUBS        0x00000200
2365 #define HINT_STRICT_VARS        0x00000400
2366 #define HINT_LOCALE             0x00000800
2367
2368 #define HINT_NEW_INTEGER        0x00001000
2369 #define HINT_NEW_FLOAT          0x00002000
2370 #define HINT_NEW_BINARY         0x00004000
2371 #define HINT_NEW_STRING         0x00008000
2372 #define HINT_NEW_RE             0x00010000
2373 #define HINT_LOCALIZE_HH        0x00020000 /* %^H needs to be copied */
2374
2375 #define HINT_RE_TAINT           0x00100000
2376 #define HINT_RE_EVAL            0x00200000
2377
2378 #define HINT_FILETEST_ACCESS    0x00400000
2379
2380 /* Various states of an input record separator SV (rs, nrs) */
2381 #define RsSNARF(sv)   (! SvOK(sv))
2382 #define RsSIMPLE(sv)  (SvOK(sv) && SvCUR(sv))
2383 #define RsPARA(sv)    (SvOK(sv) && ! SvCUR(sv))
2384 #define RsRECORD(sv)  (SvROK(sv) && (SvIV(SvRV(sv)) > 0))
2385
2386 /* Enable variables which are pointers to functions */
2387 typedef regexp*(CPERLscope(*regcomp_t)) (pTHX_ char* exp, char* xend, PMOP* pm);
2388 typedef I32 (CPERLscope(*regexec_t)) (pTHX_ regexp* prog, char* stringarg,
2389                                       char* strend, char* strbeg, I32 minend,
2390                                       SV* screamer, void* data, U32 flags);
2391 typedef char* (CPERLscope(*re_intuit_start_t)) (pTHX_ regexp *prog, SV *sv,
2392                                                 char *strpos, char *strend,
2393                                                 U32 flags,
2394                                                 struct re_scream_pos_data_s *d);
2395 typedef SV*     (CPERLscope(*re_intuit_string_t)) (pTHX_ regexp *prog);
2396 typedef void    (CPERLscope(*regfree_t)) (pTHX_ struct regexp* r);
2397
2398
2399 /* Set up PERLVAR macros for populating structs */
2400 #define PERLVAR(var,type) type var;
2401 #define PERLVARI(var,type,init) type var;
2402 #define PERLVARIC(var,type,init) type var;
2403
2404 /* Interpreter exitlist entry */
2405 typedef struct exitlistentry {
2406     void (*fn) (pTHXo_ void*);
2407     void *ptr;
2408 } PerlExitListEntry;
2409
2410 #ifdef PERL_OBJECT
2411 #undef perl_alloc
2412 #define perl_alloc Perl_alloc
2413 CPerlObj* Perl_alloc (IPerlMem*, IPerlEnv*, IPerlStdIO*, IPerlLIO*, IPerlDir*, IPerlSock*, IPerlProc*);
2414
2415 #undef EXT
2416 #define EXT
2417 #undef EXTCONST
2418 #define EXTCONST
2419 #undef INIT
2420 #define INIT(x)
2421
2422 class CPerlObj {
2423 public:
2424         CPerlObj(IPerlMem*, IPerlEnv*, IPerlStdIO*, IPerlLIO*, IPerlDir*, IPerlSock*, IPerlProc*);
2425         void Init(void);
2426         void* operator new(size_t nSize, IPerlMem *pvtbl);
2427 #endif /* PERL_OBJECT */
2428
2429 #ifdef PERL_GLOBAL_STRUCT
2430 struct perl_vars {
2431 #include "perlvars.h"
2432 };
2433
2434 #ifdef PERL_CORE
2435 EXT struct perl_vars PL_Vars;
2436 EXT struct perl_vars *PL_VarsPtr INIT(&PL_Vars);
2437 #else /* PERL_CORE */
2438 #if !defined(__GNUC__) || !(defined(WIN32) || defined(CYGWIN32))
2439 EXT
2440 #endif /* WIN32 */
2441 struct perl_vars *PL_VarsPtr;
2442 #define PL_Vars (*((PL_VarsPtr) ? PL_VarsPtr : (PL_VarsPtr =  Perl_GetVars())))
2443 #endif /* PERL_CORE */
2444 #endif /* PERL_GLOBAL_STRUCT */
2445
2446 #ifdef MULTIPLICITY
2447 /* If we have multiple interpreters define a struct 
2448    holding variables which must be per-interpreter
2449    If we don't have threads anything that would have 
2450    be per-thread is per-interpreter.
2451 */
2452
2453 struct interpreter {
2454 #include "thrdvar.h"
2455 #include "intrpvar.h"
2456 };
2457
2458 #else
2459 struct interpreter {
2460     char broiled;
2461 };
2462 #endif
2463
2464 #ifdef USE_THREADS
2465 /* If we have threads define a struct with all the variables
2466  * that have to be per-thread
2467  */
2468
2469
2470 struct perl_thread {
2471 #include "thrdvar.h"
2472 };
2473
2474 typedef struct perl_thread *Thread;
2475
2476 #else
2477 typedef void *Thread;
2478 #endif
2479
2480 /* Done with PERLVAR macros for now ... */
2481 #undef PERLVAR
2482 #undef PERLVARI
2483 #undef PERLVARIC
2484
2485 #include "thread.h"
2486 #include "pp.h"
2487
2488 #ifndef PERL_CALLCONV
2489 #  define PERL_CALLCONV
2490 #endif 
2491
2492 #ifdef PERL_OBJECT
2493 #  define VIRTUAL virtual PERL_CALLCONV
2494 #else
2495 #  define VIRTUAL PERL_CALLCONV
2496 /*START_EXTERN_C*/
2497 #endif
2498
2499 #ifndef NEXT30_NO_ATTRIBUTE
2500 #  ifndef HASATTRIBUTE       /* disable GNU-cc attribute checking? */
2501 #    ifdef  __attribute__      /* Avoid possible redefinition errors */
2502 #      undef  __attribute__
2503 #    endif
2504 #    define __attribute__(attr)
2505 #  endif
2506 #endif
2507
2508 #ifdef USE_PURE_BISON
2509 int Perl_yylex(pTHX_ YYSTYPE *lvalp, int *lcharp);
2510 #endif
2511
2512 typedef void (CPERLscope(*DESTRUCTORFUNC_t)) (pTHX_ void*);
2513 typedef void (CPERLscope(*SVFUNC_t)) (pTHX_ SV*);
2514 typedef I32 (CPERLscope(*SVCOMPARE_t)) (pTHX_ SV*, SV*);
2515 typedef void (*XSINIT_t) (pTHXo);
2516 typedef void (*ATEXIT_t) (pTHXo_ void*);
2517 typedef void (*XSUBADDR_t) (pTHXo_ CV *);
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 PERLVARI(var,type,init) EXT type  PL_##var INIT(init);
2562 #define PERLVARIC(var,type,init) EXTCONST type PL_##var INIT(init);
2563
2564 #ifndef PERL_GLOBAL_STRUCT
2565 #  ifndef PERL_OBJECT
2566 START_EXTERN_C
2567 #  endif
2568
2569 #  include "perlvars.h"
2570
2571 #  ifndef PERL_OBJECT
2572 END_EXTERN_C
2573 #  endif
2574 #endif
2575
2576 #ifndef MULTIPLICITY
2577
2578 #  include "intrpvar.h"
2579 #  ifndef USE_THREADS
2580 #    include "thrdvar.h"
2581 #  endif
2582
2583 #endif
2584
2585 #ifdef PERL_OBJECT
2586 /*
2587  * The following is a buffer where new variables must
2588  * be defined to maintain binary compatibility with PERL_OBJECT
2589  * for 5.005
2590  */
2591 PERLVAR(object_compatibility[30],       char)
2592 };
2593
2594 #  include "embed.h"
2595 #  if defined(WIN32) && !defined(WIN32IO_IS_STDIO)
2596 #    define errno       CPerlObj::ErrorNo()
2597 #  endif
2598
2599 #  ifdef DOINIT
2600 #    include "INTERN.h"
2601 #  else
2602 #    include "EXTERN.h"
2603 #  endif
2604
2605 /* this has structure inits, so it cannot be included before here */
2606 #  include "opcode.h"
2607
2608 #endif  /* PERL_OBJECT */
2609
2610 #undef PERLVAR
2611 #undef PERLVARI
2612 #undef PERLVARIC
2613
2614 START_EXTERN_C
2615
2616 #ifdef DOINIT
2617
2618 EXT MGVTBL PL_vtbl_sv = {Perl_magic_get,
2619                                 Perl_magic_set,
2620                                         Perl_magic_len,
2621                                                 0,      0};
2622 EXT MGVTBL PL_vtbl_env =        {0,     Perl_magic_set_all_env,
2623                                 0,      Perl_magic_clear_all_env,
2624                                                         0};
2625 EXT MGVTBL PL_vtbl_envelem =    {0,     Perl_magic_setenv,
2626                                         0,      Perl_magic_clearenv,
2627                                                         0};
2628 EXT MGVTBL PL_vtbl_sig =        {0,     0,               0, 0, 0};
2629 EXT MGVTBL PL_vtbl_sigelem =    {Perl_magic_getsig,
2630                                         Perl_magic_setsig,
2631                                         0,      Perl_magic_clearsig,
2632                                                         0};
2633 EXT MGVTBL PL_vtbl_pack =       {0,     0,      Perl_magic_sizepack,    Perl_magic_wipepack,
2634                                                         0};
2635 EXT MGVTBL PL_vtbl_packelem =   {Perl_magic_getpack,
2636                                 Perl_magic_setpack,
2637                                         0,      Perl_magic_clearpack,
2638                                                         0};
2639 EXT MGVTBL PL_vtbl_dbline =     {0,     Perl_magic_setdbline,
2640                                         0,      0,      0};
2641 EXT MGVTBL PL_vtbl_isa =        {0,     Perl_magic_setisa,
2642                                         0,      Perl_magic_setisa,
2643                                                         0};
2644 EXT MGVTBL PL_vtbl_isaelem =    {0,     Perl_magic_setisa,
2645                                         0,      0,      0};
2646 EXT MGVTBL PL_vtbl_arylen =     {Perl_magic_getarylen,
2647                                 Perl_magic_setarylen,
2648                                         0,      0,      0};
2649 EXT MGVTBL PL_vtbl_glob =       {Perl_magic_getglob,
2650                                 Perl_magic_setglob,
2651                                         0,      0,      0};
2652 EXT MGVTBL PL_vtbl_mglob =      {0,     Perl_magic_setmglob,
2653                                         0,      0,      0};
2654 EXT MGVTBL PL_vtbl_nkeys =      {Perl_magic_getnkeys,
2655                                 Perl_magic_setnkeys,
2656                                         0,      0,      0};
2657 EXT MGVTBL PL_vtbl_taint =      {Perl_magic_gettaint,Perl_magic_settaint,
2658                                         0,      0,      0};
2659 EXT MGVTBL PL_vtbl_substr =     {Perl_magic_getsubstr, Perl_magic_setsubstr,
2660                                         0,      0,      0};
2661 EXT MGVTBL PL_vtbl_vec =        {Perl_magic_getvec,
2662                                 Perl_magic_setvec,
2663                                         0,      0,      0};
2664 EXT MGVTBL PL_vtbl_pos =        {Perl_magic_getpos,
2665                                 Perl_magic_setpos,
2666                                         0,      0,      0};
2667 EXT MGVTBL PL_vtbl_bm = {0,     Perl_magic_setbm,
2668                                         0,      0,      0};
2669 EXT MGVTBL PL_vtbl_fm = {0,     Perl_magic_setfm,
2670                                         0,      0,      0};
2671 EXT MGVTBL PL_vtbl_uvar =       {Perl_magic_getuvar,
2672                                 Perl_magic_setuvar,
2673                                         0,      0,      0};
2674 #ifdef USE_THREADS
2675 EXT MGVTBL PL_vtbl_mutex =      {0,     0,      0,      0,      Perl_magic_mutexfree};
2676 #endif /* USE_THREADS */
2677 EXT MGVTBL PL_vtbl_defelem = {Perl_magic_getdefelem,Perl_magic_setdefelem,
2678                                         0,      0,      0};
2679
2680 EXT MGVTBL PL_vtbl_regexp = {0,0,0,0, Perl_magic_freeregexp};
2681 EXT MGVTBL PL_vtbl_regdata = {0, 0, Perl_magic_regdata_cnt, 0, 0};
2682 EXT MGVTBL PL_vtbl_regdatum = {Perl_magic_regdatum_get, 0, 0, 0, 0};
2683
2684 #ifdef USE_LOCALE_COLLATE
2685 EXT MGVTBL PL_vtbl_collxfrm = {0,
2686                                 Perl_magic_setcollxfrm,
2687                                         0,      0,      0};
2688 #endif
2689
2690 EXT MGVTBL PL_vtbl_amagic =       {0,     Perl_magic_setamagic,
2691                                         0,      0,      Perl_magic_setamagic};
2692 EXT MGVTBL PL_vtbl_amagicelem =   {0,     Perl_magic_setamagic,
2693                                         0,      0,      Perl_magic_setamagic};
2694
2695 EXT MGVTBL PL_vtbl_backref =      {0,   0,
2696                                         0,      0,      Perl_magic_killbackrefs};
2697
2698 #else /* !DOINIT */
2699
2700 EXT MGVTBL PL_vtbl_sv;
2701 EXT MGVTBL PL_vtbl_env;
2702 EXT MGVTBL PL_vtbl_envelem;
2703 EXT MGVTBL PL_vtbl_sig;
2704 EXT MGVTBL PL_vtbl_sigelem;
2705 EXT MGVTBL PL_vtbl_pack;
2706 EXT MGVTBL PL_vtbl_packelem;
2707 EXT MGVTBL PL_vtbl_dbline;
2708 EXT MGVTBL PL_vtbl_isa;
2709 EXT MGVTBL PL_vtbl_isaelem;
2710 EXT MGVTBL PL_vtbl_arylen;
2711 EXT MGVTBL PL_vtbl_glob;
2712 EXT MGVTBL PL_vtbl_mglob;
2713 EXT MGVTBL PL_vtbl_nkeys;
2714 EXT MGVTBL PL_vtbl_taint;
2715 EXT MGVTBL PL_vtbl_substr;
2716 EXT MGVTBL PL_vtbl_vec;
2717 EXT MGVTBL PL_vtbl_pos;
2718 EXT MGVTBL PL_vtbl_bm;
2719 EXT MGVTBL PL_vtbl_fm;
2720 EXT MGVTBL PL_vtbl_uvar;
2721
2722 #ifdef USE_THREADS
2723 EXT MGVTBL PL_vtbl_mutex;
2724 #endif /* USE_THREADS */
2725
2726 EXT MGVTBL PL_vtbl_defelem;
2727 EXT MGVTBL PL_vtbl_regexp;
2728 EXT MGVTBL PL_vtbl_regdata;
2729 EXT MGVTBL PL_vtbl_regdatum;
2730
2731 #ifdef USE_LOCALE_COLLATE
2732 EXT MGVTBL PL_vtbl_collxfrm;
2733 #endif
2734
2735 EXT MGVTBL PL_vtbl_amagic;
2736 EXT MGVTBL PL_vtbl_amagicelem;
2737
2738 EXT MGVTBL PL_vtbl_backref;
2739
2740 #endif /* !DOINIT */
2741
2742 enum {
2743   fallback_amg,        abs_amg,
2744   bool__amg,   nomethod_amg,
2745   string_amg,  numer_amg,
2746   add_amg,     add_ass_amg,
2747   subtr_amg,   subtr_ass_amg,
2748   mult_amg,    mult_ass_amg,
2749   div_amg,     div_ass_amg,
2750   modulo_amg,  modulo_ass_amg,
2751   pow_amg,     pow_ass_amg,
2752   lshift_amg,  lshift_ass_amg,
2753   rshift_amg,  rshift_ass_amg,
2754   band_amg,    band_ass_amg,
2755   bor_amg,     bor_ass_amg,
2756   bxor_amg,    bxor_ass_amg,
2757   lt_amg,      le_amg,
2758   gt_amg,      ge_amg,
2759   eq_amg,      ne_amg,
2760   ncmp_amg,    scmp_amg,
2761   slt_amg,     sle_amg,
2762   sgt_amg,     sge_amg,
2763   seq_amg,     sne_amg,
2764   not_amg,     compl_amg,
2765   inc_amg,     dec_amg,
2766   atan2_amg,   cos_amg,
2767   sin_amg,     exp_amg,
2768   log_amg,     sqrt_amg,
2769   repeat_amg,   repeat_ass_amg,
2770   concat_amg,  concat_ass_amg,
2771   copy_amg,    neg_amg,
2772   to_sv_amg,   to_av_amg,
2773   to_hv_amg,   to_gv_amg,
2774   to_cv_amg,   iter_amg,    
2775   max_amg_code
2776   /* Do not leave a trailing comma here.  C9X allows it, C89 doesn't. */
2777 };
2778
2779 #define NofAMmeth max_amg_code
2780
2781 #ifdef DOINIT
2782 EXTCONST char * PL_AMG_names[NofAMmeth] = {
2783   "fallback",   "abs",                  /* "fallback" should be the first. */
2784   "bool",       "nomethod",
2785   "\"\"",       "0+",
2786   "+",          "+=",
2787   "-",          "-=",
2788   "*",          "*=",
2789   "/",          "/=",
2790   "%",          "%=",
2791   "**",         "**=",
2792   "<<",         "<<=",
2793   ">>",         ">>=",
2794   "&",          "&=",
2795   "|",          "|=",
2796   "^",          "^=",
2797   "<",          "<=",
2798   ">",          ">=",
2799   "==",         "!=",
2800   "<=>",        "cmp",
2801   "lt",         "le",
2802   "gt",         "ge",
2803   "eq",         "ne",
2804   "!",          "~",
2805   "++",         "--",
2806   "atan2",      "cos",
2807   "sin",        "exp",
2808   "log",        "sqrt",
2809   "x",          "x=",
2810   ".",          ".=",
2811   "=",          "neg",
2812   "${}",        "@{}",
2813   "%{}",        "*{}",
2814   "&{}",        "<>",
2815 };
2816 #else
2817 EXTCONST char * PL_AMG_names[NofAMmeth];
2818 #endif /* def INITAMAGIC */
2819
2820 END_EXTERN_C
2821
2822 struct am_table {
2823   long was_ok_sub;
2824   long was_ok_am;
2825   U32 flags;
2826   CV* table[NofAMmeth];
2827   long fallback;
2828 };
2829 struct am_table_short {
2830   long was_ok_sub;
2831   long was_ok_am;
2832   U32 flags;
2833 };
2834 typedef struct am_table AMT;
2835 typedef struct am_table_short AMTS;
2836
2837 #define AMGfallNEVER    1
2838 #define AMGfallNO       2
2839 #define AMGfallYES      3
2840
2841 #define AMTf_AMAGIC             1
2842 #define AMT_AMAGIC(amt)         ((amt)->flags & AMTf_AMAGIC)
2843 #define AMT_AMAGIC_on(amt)      ((amt)->flags |= AMTf_AMAGIC)
2844 #define AMT_AMAGIC_off(amt)     ((amt)->flags &= ~AMTf_AMAGIC)
2845
2846
2847 /*
2848  * some compilers like to redefine cos et alia as faster
2849  * (and less accurate?) versions called F_cos et cetera (Quidquid
2850  * latine dictum sit, altum viditur.)  This trick collides with
2851  * the Perl overloading (amg).  The following #defines fool both.
2852  */
2853
2854 #ifdef _FASTMATH
2855 #   ifdef atan2
2856 #       define F_atan2_amg  atan2_amg
2857 #   endif
2858 #   ifdef cos
2859 #       define F_cos_amg    cos_amg
2860 #   endif
2861 #   ifdef exp
2862 #       define F_exp_amg    exp_amg
2863 #   endif
2864 #   ifdef log
2865 #       define F_log_amg    log_amg
2866 #   endif
2867 #   ifdef pow
2868 #       define F_pow_amg    pow_amg
2869 #   endif
2870 #   ifdef sin
2871 #       define F_sin_amg    sin_amg
2872 #   endif
2873 #   ifdef sqrt
2874 #       define F_sqrt_amg   sqrt_amg
2875 #   endif
2876 #endif /* _FASTMATH */
2877
2878 #define PERLDB_ALL      0x3f            /* No _NONAME, _GOTO */
2879 #define PERLDBf_SUB     0x01            /* Debug sub enter/exit. */
2880 #define PERLDBf_LINE    0x02            /* Keep line #. */
2881 #define PERLDBf_NOOPT   0x04            /* Switch off optimizations. */
2882 #define PERLDBf_INTER   0x08            /* Preserve more data for
2883                                            later inspections.  */
2884 #define PERLDBf_SUBLINE 0x10            /* Keep subr source lines. */
2885 #define PERLDBf_SINGLE  0x20            /* Start with single-step on. */
2886 #define PERLDBf_NONAME  0x40            /* For _SUB: no name of the subr. */
2887 #define PERLDBf_GOTO    0x80            /* Report goto: call DB::goto. */
2888
2889 #define PERLDB_SUB      (PL_perldb && (PL_perldb & PERLDBf_SUB))
2890 #define PERLDB_LINE     (PL_perldb && (PL_perldb & PERLDBf_LINE))
2891 #define PERLDB_NOOPT    (PL_perldb && (PL_perldb & PERLDBf_NOOPT))
2892 #define PERLDB_INTER    (PL_perldb && (PL_perldb & PERLDBf_INTER))
2893 #define PERLDB_SUBLINE  (PL_perldb && (PL_perldb & PERLDBf_SUBLINE))
2894 #define PERLDB_SINGLE   (PL_perldb && (PL_perldb & PERLDBf_SINGLE))
2895 #define PERLDB_SUB_NN   (PL_perldb && (PL_perldb & (PERLDBf_NONAME)))
2896 #define PERLDB_GOTO     (PL_perldb && (PL_perldb & PERLDBf_GOTO))
2897
2898
2899 #ifdef USE_LOCALE_NUMERIC
2900
2901 #define SET_NUMERIC_STANDARD() \
2902     STMT_START {                                \
2903         if (! PL_numeric_standard)              \
2904             set_numeric_standard();             \
2905     } STMT_END
2906
2907 #define SET_NUMERIC_LOCAL() \
2908     STMT_START {                                \
2909         if (! PL_numeric_local)                 \
2910             set_numeric_local();                \
2911     } STMT_END
2912
2913 #define IS_NUMERIC_RADIX(c)     \
2914         ((PL_hints & HINT_LOCALE) && \
2915           PL_numeric_radix && (c) == PL_numeric_radix)
2916
2917 #define RESTORE_NUMERIC_LOCAL()         if ((PL_hints & HINT_LOCALE) && PL_numeric_standard) SET_NUMERIC_LOCAL()
2918 #define RESTORE_NUMERIC_STANDARD()      if ((PL_hints & HINT_LOCALE) && PL_numeric_local) SET_NUMERIC_STANDARD()
2919 #define Atof                            my_atof
2920
2921 #else /* !USE_LOCALE_NUMERIC */
2922
2923 #define SET_NUMERIC_STANDARD()          /**/
2924 #define SET_NUMERIC_LOCAL()             /**/
2925 #define IS_NUMERIC_RADIX(c)             (0)
2926 #define RESTORE_NUMERIC_LOCAL()         /**/
2927 #define RESTORE_NUMERIC_STANDARD()      /**/
2928 #define Atof                            Perl_atof
2929
2930 #endif /* !USE_LOCALE_NUMERIC */
2931
2932 #if !defined(PERLIO_IS_STDIO) && defined(HASATTRIBUTE)
2933 /* 
2934  * Now we have __attribute__ out of the way 
2935  * Remap printf 
2936  */
2937 #define printf PerlIO_stdoutf
2938 #endif
2939
2940 #ifndef PERL_SCRIPT_MODE
2941 #define PERL_SCRIPT_MODE "r"
2942 #endif
2943
2944 /*
2945  * nice_chunk and nice_chunk size need to be set
2946  * and queried under the protection of sv_mutex
2947  */
2948 #define offer_nice_chunk(chunk, chunk_size) do {        \
2949         LOCK_SV_MUTEX;                                  \
2950         if (!PL_nice_chunk) {                           \
2951             PL_nice_chunk = (char*)(chunk);             \
2952             PL_nice_chunk_size = (chunk_size);          \
2953         }                                               \
2954         else {                                          \
2955             Safefree(chunk);                            \
2956         }                                               \
2957         UNLOCK_SV_MUTEX;                                \
2958     } while (0)
2959
2960 #ifdef HAS_SEM
2961 #   include <sys/ipc.h>
2962 #   include <sys/sem.h>
2963 #   ifndef HAS_UNION_SEMUN      /* Provide the union semun. */
2964     union semun {
2965         int val;
2966         struct semid_ds *buf;
2967         unsigned short *array;
2968     };
2969 #   endif
2970 #   ifdef USE_SEMCTL_SEMUN
2971 #       define Semctl(id, num, cmd, semun) semctl(id, num, cmd, semun)
2972 #   else
2973 #       ifdef USE_SEMCTL_SEMID_DS
2974 #           define Semctl(id, num, cmd, semun) semctl(id, num, cmd, semun.buf)
2975 #       endif
2976 #   endif
2977 #endif
2978
2979 /* Mention
2980
2981    INSTALL_USR_BIN_PERL
2982
2983    I_SYS_MMAN
2984    HAS_MMAP
2985    HAS_MUNMAP
2986    HAS_MPROTECT
2987    HAS_MSYNC
2988    HAS_MADVISE
2989    Mmap_t
2990
2991    here so that Configure picks them up. */
2992
2993 #ifdef IAMSUID
2994
2995 #ifdef I_SYS_STATVFS
2996 #   include <sys/statvfs.h>     /* for f?statvfs() */
2997 #endif
2998 #ifdef I_SYS_MOUNT
2999 #   include <sys/mount.h>       /* for *BSD f?statfs() */
3000 #endif
3001 #ifdef I_MNTENT
3002 #   include <mntent.h>          /* for getmntent() */
3003 #endif
3004
3005 #endif /* IAMSUID */
3006
3007 /* and finally... */
3008 #define PERL_PATCHLEVEL_H_IMPLICIT
3009 #include "patchlevel.h"
3010 #undef PERL_PATCHLEVEL_H_IMPLICIT
3011
3012 #endif /* Include guard */