This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
DB_File-1.60
[perl5.git] / perl.h
CommitLineData
a0d0e21e 1/* perl.h
a687059c 2 *
9607fc9c 3 * Copyright (c) 1987-1997, Larry Wall
a687059c 4 *
352d5a3a
LW
5 * You may distribute under the terms of either the GNU General Public
6 * License or the Artistic License, as specified in the README file.
8d063cd8 7 *
8d063cd8 8 */
85e6fe83
LW
9#ifndef H_PERL
10#define H_PERL 1
a0d0e21e 11#define OVERLOAD
8d063cd8 12
760ac839
LW
13#ifdef PERL_FOR_X2P
14/*
15 * This file is being used for x2p stuff.
16 * Above symbol is defined via -D in 'x2p/Makefile.SH'
17 * Decouple x2p stuff from some of perls more extreme eccentricities.
18 */
760ac839 19#undef EMBED
55497cff 20#undef NO_EMBED
21#define NO_EMBED
22#undef MULTIPLICITY
760ac839
LW
23#undef USE_STDIO
24#define USE_STDIO
25#endif /* PERL_FOR_X2P */
26
76e3520e 27#ifdef PERL_OBJECT
3dfd1da1
GS
28
29/* PERL_OBJECT explained - DickH and DougL @ ActiveState.com
30
31Defining PERL_OBJECT turns on creation of a C++ object that
32contains all writable core perl global variables and functions.
33Stated another way, all necessary global variables and functions
34are members of a big C++ object. This object's class is CPerlObj.
35This allows a Perl Host to have multiple, independent perl
36interpreters in the same process space. This is very important on
37Win32 systems as the overhead of process creation is quite high --
38this could be even higher than the script compile and execute time
39for small scripts.
40
41The perl executable implementation on Win32 is composed of perl.exe
42(the Perl Host) and perlX.dll. (the Perl Core). This allows the
43same Perl Core to easily be embedded in other applications that use
44the perl interpreter.
45
46+-----------+
47| Perl Host |
48+-----------+
49 ^
50 |
51 v
52+-----------+ +-----------+
53| Perl Core |<->| Extension |
54+-----------+ +-----------+ ...
55
56Defining PERL_OBJECT has the following effects:
57
58PERL CORE
591. CPerlObj is defined (this is the PERL_OBJECT)
602. all static functions that needed to access either global
61variables or functions needed are made member functions
623. all writable static variables are made member variables
634. all global variables and functions are defined as:
64 #define var CPerlObj::Perl_var
65 #define func CPerlObj::Perl_func
66 * these are in objpp.h
67This necessitated renaming some local variables and functions that
68had the same name as a global variable or function. This was
69probably a _good_ thing anyway.
70
71
72EXTENSIONS
731. Access to global variables and perl functions is through a
74pointer to the PERL_OBJECT. This pointer type is CPerlObj*. This is
75made transparent to extension developers by the following macros:
76 #define var pPerl->Perl_var
77 #define func pPerl->Perl_func
78 * these are done in ObjXSub.h
79This requires that the extension be compiled as C++, which means
80that the code must be ANSI C and not K&R C. For K&R extensions,
81please see the C API notes located in Win32/GenCAPI.pl. This script
82creates a PerlCAPI.lib that provides a K & R compatible C interface
83to the PERL_OBJECT.
842. Local variables and functions cannot have the same name as perl's
85variables or functions since the macros will redefine these. Look for
86this if you get some strange error message and it does not look like
87the code that you had written. This often happens with variables that
88are local to a function.
89
90PERL HOST
911. The perl host is linked with perlX.lib to get perl_alloc. This
92function will return a pointer to CPerlObj (the PERL_OBJECT). It
93takes pointers to the various PerlXXX_YYY interfaces (see ipdir.h for
94information on this).
952. The perl host calls the same functions as normally would be
96called in setting up and running a perl script, except that the
97functions are now member functions of the PERL_OBJECT.
98
99*/
100
101
76e3520e
GS
102class CPerlObj;
103
104#define STATIC
105#define CPERLscope(x) CPerlObj::x
106#define CPERLproto CPerlObj *
e3b8966e 107#define _CPERLproto ,CPERLproto
76e3520e
GS
108#define CPERLarg CPerlObj *pPerl
109#define CPERLarg_ CPERLarg,
e3b8966e 110#define _CPERLarg ,CPERLarg
1d583055
GS
111#define PERL_OBJECT_THIS this
112#define _PERL_OBJECT_THIS ,this
113#define PERL_OBJECT_THIS_ this,
76e3520e
GS
114#define CALLRUNOPS (this->*runops)
115
116#else /* !PERL_OBJECT */
117
118#define STATIC static
119#define CPERLscope(x) x
120#define CPERLproto
e3b8966e 121#define _CPERLproto
565764a8 122#define CPERLarg void
76e3520e 123#define CPERLarg_
e3b8966e 124#define _CPERLarg
1d583055
GS
125#define PERL_OBJECT_THIS
126#define _PERL_OBJECT_THIS
127#define PERL_OBJECT_THIS_
76e3520e
GS
128#define CALLRUNOPS runops
129
130#endif /* PERL_OBJECT */
131
71be2cbc 132#define VOIDUSED 1
133#include "config.h"
134
135#include "embed.h"
136
326b05e3
GS
137#undef START_EXTERN_C
138#undef END_EXTERN_C
139#undef EXTERN_C
32f822de
GS
140#ifdef __cplusplus
141# define START_EXTERN_C extern "C" {
142# define END_EXTERN_C }
143# define EXTERN_C extern "C"
144#else
145# define START_EXTERN_C
146# define END_EXTERN_C
147# define EXTERN_C
148#endif
149
462e5cf6
MB
150#ifdef OP_IN_REGISTER
151# ifdef __GNUC__
152# define stringify_immed(s) #s
153# define stringify(s) stringify_immed(s)
d1ca3daa
GA
154#ifdef EMBED
155register struct op *Perl_op asm(stringify(OP_IN_REGISTER));
156#else
462e5cf6 157register struct op *op asm(stringify(OP_IN_REGISTER));
d1ca3daa 158#endif
462e5cf6
MB
159# endif
160#endif
161
728e2803 162/*
163 * STMT_START { statements; } STMT_END;
164 * can be used as a single statement, as in
165 * if (x) STMT_START { ... } STMT_END; else ...
166 *
167 * Trying to select a version that gives no warnings...
168 */
169#if !(defined(STMT_START) && defined(STMT_END))
169d69b2 170# if defined(__GNUC__) && !defined(__STRICT_ANSI__) && !defined(__cplusplus)
728e2803 171# define STMT_START (void)( /* gcc supports ``({ STATEMENTS; })'' */
172# define STMT_END )
173# else
174 /* Now which other defined()s do we need here ??? */
175# if (VOIDFLAGS) && (defined(sun) || defined(__sun__))
176# define STMT_START if (1)
177# define STMT_END else (void)0
178# else
179# define STMT_START do
180# define STMT_END while (0)
181# endif
182# endif
183#endif
184
462e5cf6
MB
185#define NOOP (void)0
186
61bb5906 187#define WITH_THR(s) STMT_START { dTHR; s; } STMT_END
ea0efc06 188
55497cff 189/*
190 * SOFT_CAST can be used for args to prototyped functions to retain some
191 * type checking; it only casts if the compiler does not know prototypes.
192 */
193#if defined(CAN_PROTOTYPE) && defined(DEBUGGING_COMPILE)
194#define SOFT_CAST(type)
195#else
196#define SOFT_CAST(type) (type)
197#endif
79072805 198
6ee623d5 199#ifndef BYTEORDER /* Should never happen -- byteorder is in config.h */
79072805
LW
200# define BYTEORDER 0x1234
201#endif
202
203/* Overall memory policy? */
204#ifndef CONSERVATIVE
205# define LIBERAL 1
206#endif
207
208/*
209 * The following contortions are brought to you on behalf of all the
210 * standards, semi-standards, de facto standards, not-so-de-facto standards
211 * of the world, as well as all the other botches anyone ever thought of.
212 * The basic theory is that if we work hard enough here, the rest of the
213 * code can be a lot prettier. Well, so much for theory. Sorry, Henry...
214 */
ac58e20f 215
ee0007ab 216/* define this once if either system, instead of cluttering up the src */
68dc0745 217#if defined(MSDOS) || defined(atarist) || defined(WIN32)
ee0007ab
LW
218#define DOSISH 1
219#endif
220
a0d0e21e 221#if defined(__STDC__) || defined(vax11c) || defined(_AIX) || defined(__stdc__) || defined(__cplusplus)
352d5a3a
LW
222# define STANDARD_C 1
223#endif
224
09b7f37c 225#if defined(__cplusplus) || defined(WIN32) || defined(__sgi) || defined(OS2) || defined(__DGUX)
68dc0745 226# define DONT_DECLARE_STD 1
227#endif
228
352d5a3a 229#if defined(HASVOLATILE) || defined(STANDARD_C)
79072805
LW
230# ifdef __cplusplus
231# define VOL // to temporarily suppress warnings
232# else
233# define VOL volatile
234# endif
663a0e37 235#else
79072805 236# define VOL
663a0e37
LW
237#endif
238
bbce6d69 239#define TAINT (tainted = TRUE)
240#define TAINT_NOT (tainted = FALSE)
241#define TAINT_IF(c) if (c) { tainted = TRUE; }
242#define TAINT_ENV() if (tainting) { taint_env(); }
243#define TAINT_PROPER(s) if (tainting) { taint_proper(no_security, s); }
a687059c 244
a6e633de 245/* XXX All process group stuff is handled in pp_sys.c. Should these
246 defines move there? If so, I could simplify this a lot. --AD 9/96.
247*/
248/* Process group stuff changed from traditional BSD to POSIX.
249 perlfunc.pod documents the traditional BSD-style syntax, so we'll
250 try to preserve that, if possible.
251*/
252#ifdef HAS_SETPGID
253# define BSD_SETPGRP(pid, pgrp) setpgid((pid), (pgrp))
c07a80fd 254#else
a6e633de 255# if defined(HAS_SETPGRP) && defined(USE_BSD_SETPGRP)
256# define BSD_SETPGRP(pid, pgrp) setpgrp((pid), (pgrp))
257# else
258# ifdef HAS_SETPGRP2 /* DG/UX */
259# define BSD_SETPGRP(pid, pgrp) setpgrp2((pid), (pgrp))
260# endif
261# endif
262#endif
263#if defined(BSD_SETPGRP) && !defined(HAS_SETPGRP)
264# define HAS_SETPGRP /* Well, effectively it does . . . */
265#endif
266
267/* getpgid isn't POSIX, but at least Solaris and Linux have it, and it makes
268 our life easier :-) so we'll try it.
269*/
270#ifdef HAS_GETPGID
271# define BSD_GETPGRP(pid) getpgid((pid))
272#else
273# if defined(HAS_GETPGRP) && defined(USE_BSD_GETPGRP)
274# define BSD_GETPGRP(pid) getpgrp((pid))
275# else
276# ifdef HAS_GETPGRP2 /* DG/UX */
277# define BSD_GETPGRP(pid) getpgrp2((pid))
278# endif
279# endif
280#endif
281#if defined(BSD_GETPGRP) && !defined(HAS_GETPGRP)
282# define HAS_GETPGRP /* Well, effectively it does . . . */
283#endif
284
285/* These are not exact synonyms, since setpgrp() and getpgrp() may
286 have different behaviors, but perl.h used to define USE_BSDPGRP
287 (prior to 5.003_05) so some extension might depend on it.
288*/
289#if defined(USE_BSD_SETPGRP) || defined(USE_BSD_GETPGRP)
290# ifndef USE_BSDPGRP
291# define USE_BSDPGRP
292# endif
663a0e37
LW
293#endif
294
760ac839
LW
295#ifndef _TYPES_ /* If types.h defines this it's easy. */
296# ifndef major /* Does everyone's types.h define this? */
297# include <sys/types.h>
c07a80fd 298# endif
663a0e37
LW
299#endif
300
760ac839
LW
301#ifdef __cplusplus
302# ifndef I_STDARG
303# define I_STDARG 1
304# endif
305#endif
306
307#ifdef I_STDARG
308# include <stdarg.h>
309#else
310# ifdef I_VARARGS
311# include <varargs.h>
312# endif
313#endif
314
315#include "perlio.h"
76e3520e 316#include "perlmem.h"
6ad3d225
GS
317#include "perllio.h"
318#include "perlsock.h"
319#include "perlproc.h"
320#include "perlenv.h"
321#include "perldir.h"
0c30d9ec 322
4633a7c4 323#ifdef USE_NEXT_CTYPE
0c30d9ec 324
325#if NX_CURRENT_COMPILER_RELEASE >= 400
326#include <objc/NXCType.h>
327#else /* NX_CURRENT_COMPILER_RELEASE < 400 */
a0d0e21e 328#include <appkit/NXCType.h>
0c30d9ec 329#endif /* NX_CURRENT_COMPILER_RELEASE >= 400 */
330
331#else /* !USE_NEXT_CTYPE */
fe14fcc3 332#include <ctype.h>
0c30d9ec 333#endif /* USE_NEXT_CTYPE */
a0d0e21e
LW
334
335#ifdef METHOD /* Defined by OSF/1 v3.0 by ctype.h */
336#undef METHOD
a0d0e21e
LW
337#endif
338
4633a7c4 339#ifdef I_LOCALE
36477c24 340# include <locale.h>
4633a7c4
LW
341#endif
342
36477c24 343#if !defined(NO_LOCALE) && defined(HAS_SETLOCALE)
344# define USE_LOCALE
345# if !defined(NO_LOCALE_COLLATE) && defined(LC_COLLATE) \
346 && defined(HAS_STRXFRM)
347# define USE_LOCALE_COLLATE
348# endif
349# if !defined(NO_LOCALE_CTYPE) && defined(LC_CTYPE)
350# define USE_LOCALE_CTYPE
351# endif
352# if !defined(NO_LOCALE_NUMERIC) && defined(LC_NUMERIC)
353# define USE_LOCALE_NUMERIC
354# endif
355#endif /* !NO_LOCALE && HAS_SETLOCALE */
a0d0e21e 356
fe14fcc3 357#include <setjmp.h>
79072805 358
a0d0e21e 359#ifdef I_SYS_PARAM
79072805
LW
360# ifdef PARAM_NEEDS_TYPES
361# include <sys/types.h>
362# endif
363# include <sys/param.h>
352d5a3a 364#endif
79072805
LW
365
366
367/* Use all the "standard" definitions? */
a0d0e21e 368#if defined(STANDARD_C) && defined(I_STDLIB)
79072805 369# include <stdlib.h>
ff68c719 370#endif
03a14243 371
c31fac66
GS
372#define MEM_SIZE Size_t
373
55497cff 374/* This comes after <stdlib.h> so we don't try to change the standard
375 * library prototypes; we'll use our own in proto.h instead. */
03a14243 376
4633a7c4 377#ifdef MYMALLOC
55497cff 378
4633a7c4 379# ifdef HIDEMYMALLOC
55497cff 380# define malloc Mymalloc
381# define calloc Mycalloc
4633a7c4 382# define realloc Myremalloc
55497cff 383# define free Myfree
c31fac66
GS
384Malloc_t Mymalloc _((MEM_SIZE nbytes));
385Malloc_t Mycalloc _((MEM_SIZE elements, MEM_SIZE size));
386Malloc_t Myrealloc _((Malloc_t where, MEM_SIZE nbytes));
387Free_t Myfree _((Malloc_t where));
55497cff 388# endif
389# ifdef EMBEDMYMALLOC
390# define malloc Perl_malloc
391# define calloc Perl_calloc
392# define realloc Perl_realloc
393# define free Perl_free
c31fac66
GS
394Malloc_t Perl_malloc _((MEM_SIZE nbytes));
395Malloc_t Perl_calloc _((MEM_SIZE elements, MEM_SIZE size));
396Malloc_t Perl_realloc _((Malloc_t where, MEM_SIZE nbytes));
397Free_t Perl_free _((Malloc_t where));
4633a7c4 398# endif
55497cff 399
400# undef safemalloc
401# undef safecalloc
402# undef saferealloc
403# undef safefree
404# define safemalloc malloc
405# define safecalloc calloc
4633a7c4 406# define saferealloc realloc
55497cff 407# define safefree free
408
409#endif /* MYMALLOC */
4633a7c4 410
ff68c719 411#if defined(STANDARD_C) && defined(I_STDDEF)
412# include <stddef.h>
71be2cbc 413# define STRUCT_OFFSET(s,m) offsetof(s,m)
ff68c719 414#else
71be2cbc 415# define STRUCT_OFFSET(s,m) (Size_t)(&(((s *)0)->m))
ff68c719 416#endif
417
a0d0e21e
LW
418#if defined(I_STRING) || defined(__cplusplus)
419# include <string.h>
420#else
421# include <strings.h>
422#endif
423
424#if !defined(HAS_STRCHR) && defined(HAS_INDEX) && !defined(strchr)
425#define strchr index
426#define strrchr rindex
427#endif
428
16d20bd9
AD
429#ifdef I_MEMORY
430# include <memory.h>
431#endif
432
fe14fcc3 433#ifdef HAS_MEMCPY
85e6fe83 434# if !defined(STANDARD_C) && !defined(I_STRING) && !defined(I_MEMORY)
fe14fcc3 435# ifndef memcpy
a0d0e21e 436 extern char * memcpy _((char*, char*, int));
ee0007ab
LW
437# endif
438# endif
439#else
440# ifndef memcpy
441# ifdef HAS_BCOPY
442# define memcpy(d,s,l) bcopy(s,d,l)
443# else
444# define memcpy(d,s,l) my_bcopy(s,d,l)
445# endif
446# endif
447#endif /* HAS_MEMCPY */
fe14fcc3 448
ee0007ab 449#ifdef HAS_MEMSET
85e6fe83 450# if !defined(STANDARD_C) && !defined(I_STRING) && !defined(I_MEMORY)
ee0007ab 451# ifndef memset
a0d0e21e 452 extern char *memset _((char*, int, int));
ee0007ab
LW
453# endif
454# endif
ee0007ab 455#else
fc36a67e 456# define memset(d,c,l) my_memset(d,c,l)
ee0007ab
LW
457#endif /* HAS_MEMSET */
458
85e6fe83 459#if !defined(HAS_MEMMOVE) && !defined(memmove)
2304df62 460# if defined(HAS_BCOPY) && defined(HAS_SAFE_BCOPY)
79072805
LW
461# define memmove(d,s,l) bcopy(s,d,l)
462# else
2304df62 463# if defined(HAS_MEMCPY) && defined(HAS_SAFE_MEMCPY)
79072805 464# define memmove(d,s,l) memcpy(d,s,l)
ee0007ab 465# else
79072805 466# define memmove(d,s,l) my_bcopy(s,d,l)
ee0007ab 467# endif
352d5a3a 468# endif
d9d8d8de 469#endif
ee0007ab 470
36477c24 471#if defined(mips) && defined(ultrix) && !defined(__STDC__)
472# undef HAS_MEMCMP
473#endif
474
475#if defined(HAS_MEMCMP) && defined(HAS_SANE_MEMCMP)
85e6fe83 476# if !defined(STANDARD_C) && !defined(I_STRING) && !defined(I_MEMORY)
ee0007ab 477# ifndef memcmp
a0d0e21e 478 extern int memcmp _((char*, char*, int));
ee0007ab
LW
479# endif
480# endif
36477c24 481# ifdef BUGGY_MSC
482 # pragma function(memcmp)
483# endif
ee0007ab
LW
484#else
485# ifndef memcmp
ecfc5424 486# define memcmp my_memcmp
352d5a3a 487# endif
36477c24 488#endif /* HAS_MEMCMP && HAS_SANE_MEMCMP */
8d063cd8 489
fc36a67e 490#ifndef memzero
c635e13b 491# ifdef HAS_MEMSET
492# define memzero(d,l) memset(d,0,l)
79072805 493# else
c635e13b 494# ifdef HAS_BZERO
495# define memzero(d,l) bzero(d,l)
79072805 496# else
fc36a67e 497# define memzero(d,l) my_bzero(d,l)
79072805
LW
498# endif
499# endif
d9d8d8de 500#endif
378cc40b 501
36477c24 502#ifndef HAS_BCMP
503# ifndef bcmp
504# define bcmp(s1,s2,l) memcmp(s1,s2,l)
79072805 505# endif
36477c24 506#endif /* !HAS_BCMP */
378cc40b 507
ae986130 508#ifdef I_NETINET_IN
79072805 509# include <netinet/in.h>
ae986130
LW
510#endif
511
84902520
TB
512#if defined(SF_APPEND) && defined(USE_SFIO) && defined(I_SFIO)
513/* <sfio.h> defines SF_APPEND and <sys/stat.h> might define SF_APPEND
514 * (the neo-BSD seem to do this). */
515# undef SF_APPEND
516#endif
517
1aef975c 518#ifdef I_SYS_STAT
84902520 519# include <sys/stat.h>
1aef975c 520#endif
79072805 521
a0d0e21e
LW
522/* The stat macros for Amdahl UTS, Unisoft System V/88 (and derivatives
523 like UTekV) are broken, sometimes giving false positives. Undefine
524 them here and let the code below set them to proper values.
525
526 The ghs macro stands for GreenHills Software C-1.8.5 which
527 is the C compiler for sysV88 and the various derivatives.
528 This header file bug is corrected in gcc-2.5.8 and later versions.
529 --Kaveh Ghazi (ghazi@noc.rutgers.edu) 10/3/94. */
530
531#if defined(uts) || (defined(m88k) && defined(ghs))
79072805
LW
532# undef S_ISDIR
533# undef S_ISCHR
534# undef S_ISBLK
535# undef S_ISREG
536# undef S_ISFIFO
537# undef S_ISLNK
ee0007ab 538#endif
135863df 539
663a0e37
LW
540#ifdef I_TIME
541# include <time.h>
ffed7fef 542#endif
663a0e37 543
fe14fcc3 544#ifdef I_SYS_TIME
85e6fe83 545# ifdef I_SYS_TIME_KERNEL
663a0e37
LW
546# define KERNEL
547# endif
548# include <sys/time.h>
85e6fe83 549# ifdef I_SYS_TIME_KERNEL
663a0e37
LW
550# undef KERNEL
551# endif
a687059c 552#endif
135863df 553
55497cff 554#if defined(HAS_TIMES) && defined(I_SYS_TIMES)
85e6fe83 555# include <sys/times.h>
d9d8d8de 556#endif
8d063cd8 557
fe14fcc3 558#if defined(HAS_STRERROR) && (!defined(HAS_MKDIR) || !defined(HAS_RMDIR))
79072805 559# undef HAS_STRERROR
663a0e37
LW
560#endif
561
a0d0e21e
LW
562#ifndef HAS_MKFIFO
563# ifndef mkfifo
564# define mkfifo(path, mode) (mknod((path), (mode) | S_IFIFO, 0))
565# endif
566#endif /* !HAS_MKFIFO */
567
663a0e37 568#include <errno.h>
ed6116ce 569#ifdef HAS_SOCKET
85e6fe83 570# ifdef I_NET_ERRNO
ed6116ce
LW
571# include <net/errno.h>
572# endif
573#endif
f86702cc 574
575#ifdef VMS
576# define SETERRNO(errcode,vmserrcode) \
577 STMT_START { \
578 set_errno(errcode); \
579 set_vaxc_errno(vmserrcode); \
580 } STMT_END
748a9306 581#else
f86702cc 582# define SETERRNO(errcode,vmserrcode) errno = (errcode)
748a9306 583#endif
ed6116ce 584
38a03e6e
MB
585#ifdef USE_THREADS
586# define ERRSV (thr->errsv)
587# define ERRHV (thr->errhv)
940cb80d
MB
588# define DEFSV THREADSV(0)
589# define SAVE_DEFSV save_threadsv(0)
38a03e6e
MB
590#else
591# define ERRSV GvSV(errgv)
592# define ERRHV GvHV(errgv)
54b9620d
MB
593# define DEFSV GvSV(defgv)
594# define SAVE_DEFSV SAVESPTR(GvSV(defgv))
38a03e6e
MB
595#endif /* USE_THREADS */
596
55497cff 597#ifndef errno
79072805 598 extern int errno; /* ANSI allows errno to be an lvalue expr */
d9d8d8de 599#endif
663a0e37 600
2304df62 601#ifdef HAS_STRERROR
a0d0e21e
LW
602# ifdef VMS
603 char *strerror _((int,...));
604# else
68dc0745 605#ifndef DONT_DECLARE_STD
a0d0e21e 606 char *strerror _((int));
68dc0745 607#endif
a0d0e21e 608# endif
2304df62
AD
609# ifndef Strerror
610# define Strerror strerror
611# endif
612#else
613# ifdef HAS_SYS_ERRLIST
79072805
LW
614 extern int sys_nerr;
615 extern char *sys_errlist[];
2304df62
AD
616# ifndef Strerror
617# define Strerror(e) \
79072805 618 ((e) < 0 || (e) >= sys_nerr ? "(unknown)" : sys_errlist[e])
2304df62 619# endif
79072805 620# endif
35c8bce7 621#endif
663a0e37 622
2304df62 623#ifdef I_SYS_IOCTL
79072805
LW
624# ifndef _IOCTL_
625# include <sys/ioctl.h>
626# endif
a687059c
LW
627#endif
628
ee0007ab 629#if defined(mc300) || defined(mc500) || defined(mc700) || defined(mc6000)
79072805
LW
630# ifdef HAS_SOCKETPAIR
631# undef HAS_SOCKETPAIR
632# endif
2304df62
AD
633# ifdef I_NDBM
634# undef I_NDBM
79072805 635# endif
a687059c
LW
636#endif
637
a687059c 638#if INTSIZE == 2
79072805
LW
639# define htoni htons
640# define ntohi ntohs
a687059c 641#else
79072805
LW
642# define htoni htonl
643# define ntohi ntohl
a687059c
LW
644#endif
645
a0d0e21e 646/* Configure already sets Direntry_t */
35c8bce7 647#if defined(I_DIRENT)
663a0e37 648# include <dirent.h>
a0d0e21e
LW
649# if defined(NeXT) && defined(I_SYS_DIR) /* NeXT needs dirent + sys/dir.h */
650# include <sys/dir.h>
651# endif
ae986130 652#else
fe14fcc3 653# ifdef I_SYS_NDIR
79a0689e 654# include <sys/ndir.h>
663a0e37 655# else
fe14fcc3 656# ifdef I_SYS_DIR
79a0689e
LW
657# ifdef hp9000s500
658# include <ndir.h> /* may be wrong in the future */
659# else
660# include <sys/dir.h>
661# endif
663a0e37
LW
662# endif
663# endif
4633a7c4 664#endif
a687059c 665
352d5a3a
LW
666#ifdef FPUTS_BOTCH
667/* work around botch in SunOS 4.0.1 and 4.0.2 */
668# ifndef fputs
79072805 669# define fputs(sv,fp) fprintf(fp,"%s",sv)
352d5a3a
LW
670# endif
671#endif
672
c623bd54
LW
673/*
674 * The following gobbledygook brought to you on behalf of __STDC__.
675 * (I could just use #ifndef __STDC__, but this is more bulletproof
676 * in the face of half-implementations.)
677 */
678
679#ifndef S_IFMT
680# ifdef _S_IFMT
681# define S_IFMT _S_IFMT
682# else
683# define S_IFMT 0170000
684# endif
685#endif
686
687#ifndef S_ISDIR
688# define S_ISDIR(m) ((m & S_IFMT) == S_IFDIR)
689#endif
690
691#ifndef S_ISCHR
692# define S_ISCHR(m) ((m & S_IFMT) == S_IFCHR)
693#endif
694
695#ifndef S_ISBLK
fe14fcc3
LW
696# ifdef S_IFBLK
697# define S_ISBLK(m) ((m & S_IFMT) == S_IFBLK)
698# else
699# define S_ISBLK(m) (0)
700# endif
c623bd54
LW
701#endif
702
703#ifndef S_ISREG
704# define S_ISREG(m) ((m & S_IFMT) == S_IFREG)
705#endif
706
707#ifndef S_ISFIFO
fe14fcc3
LW
708# ifdef S_IFIFO
709# define S_ISFIFO(m) ((m & S_IFMT) == S_IFIFO)
710# else
711# define S_ISFIFO(m) (0)
712# endif
c623bd54
LW
713#endif
714
715#ifndef S_ISLNK
716# ifdef _S_ISLNK
717# define S_ISLNK(m) _S_ISLNK(m)
718# else
719# ifdef _S_IFLNK
720# define S_ISLNK(m) ((m & S_IFMT) == _S_IFLNK)
721# else
722# ifdef S_IFLNK
723# define S_ISLNK(m) ((m & S_IFMT) == S_IFLNK)
724# else
725# define S_ISLNK(m) (0)
726# endif
727# endif
728# endif
729#endif
730
731#ifndef S_ISSOCK
732# ifdef _S_ISSOCK
733# define S_ISSOCK(m) _S_ISSOCK(m)
734# else
735# ifdef _S_IFSOCK
736# define S_ISSOCK(m) ((m & S_IFMT) == _S_IFSOCK)
737# else
738# ifdef S_IFSOCK
739# define S_ISSOCK(m) ((m & S_IFMT) == S_IFSOCK)
740# else
741# define S_ISSOCK(m) (0)
742# endif
743# endif
744# endif
745#endif
746
747#ifndef S_IRUSR
748# ifdef S_IREAD
749# define S_IRUSR S_IREAD
750# define S_IWUSR S_IWRITE
751# define S_IXUSR S_IEXEC
752# else
753# define S_IRUSR 0400
754# define S_IWUSR 0200
755# define S_IXUSR 0100
756# endif
757# define S_IRGRP (S_IRUSR>>3)
758# define S_IWGRP (S_IWUSR>>3)
759# define S_IXGRP (S_IXUSR>>3)
760# define S_IROTH (S_IRUSR>>6)
761# define S_IWOTH (S_IWUSR>>6)
762# define S_IXOTH (S_IXUSR>>6)
763#endif
764
765#ifndef S_ISUID
766# define S_ISUID 04000
767#endif
768
769#ifndef S_ISGID
770# define S_ISGID 02000
771#endif
772
79072805
LW
773#ifdef ff_next
774# undef ff_next
352d5a3a
LW
775#endif
776
a0d0e21e 777#if defined(cray) || defined(gould) || defined(i860) || defined(pyr)
45d8adaa
LW
778# define SLOPPYDIVIDE
779#endif
780
748a9306
LW
781#ifdef UV
782#undef UV
783#endif
784
27d4fb96 785/* XXX QUAD stuff is not currently supported on most systems.
786 Specifically, perl internals don't support long long. Among
787 the many problems is that some compilers support long long,
788 but the underlying library functions (such as sprintf) don't.
789 Some things do work (such as quad pack/unpack on convex);
790 also some systems use long long for the fpos_t typedef. That
791 seems to work too.
792
793 The IV type is supposed to be long enough to hold any integral
794 value or a pointer.
795 --Andy Dougherty August 1996
796*/
797
f86702cc 798#ifdef cray
799# define Quad_t int
800#else
801# ifdef convex
802# define Quad_t long long
45d8adaa 803# else
6ee623d5 804# if LONGSIZE == 8
ecfc5424 805# define Quad_t long
45d8adaa
LW
806# endif
807# endif
f86702cc 808#endif
809
6ee623d5
GS
810/* XXX Experimental set-up for long long. Just add -DUSE_LONG_LONG
811 to your ccflags. --Andy Dougherty 4/1998
812*/
813#ifdef USE_LONG_LONG
814# if defined(HAS_LONG_LONG) && LONGLONGSIZE == 8
815# define Quad_t long long
816# endif
817#endif
818
f86702cc 819#ifdef Quad_t
820# define HAS_QUAD
748a9306
LW
821 typedef Quad_t IV;
822 typedef unsigned Quad_t UV;
27d4fb96 823# define IV_MAX PERL_QUAD_MAX
824# define IV_MIN PERL_QUAD_MIN
825# define UV_MAX PERL_UQUAD_MAX
826# define UV_MIN PERL_UQUAD_MIN
79072805 827#else
748a9306
LW
828 typedef long IV;
829 typedef unsigned long UV;
27d4fb96 830# define IV_MAX PERL_LONG_MAX
831# define IV_MIN PERL_LONG_MIN
832# define UV_MAX PERL_ULONG_MAX
833# define UV_MIN PERL_ULONG_MIN
79072805
LW
834#endif
835
760ac839
LW
836/* Previously these definitions used hardcoded figures.
837 * It is hoped these formula are more portable, although
838 * no data one way or another is presently known to me.
839 * The "PERL_" names are used because these calculated constants
840 * do not meet the ANSI requirements for LONG_MAX, etc., which
841 * need to be constants acceptable to #if - kja
842 * define PERL_LONG_MAX 2147483647L
843 * define PERL_LONG_MIN (-LONG_MAX - 1)
844 * define PERL ULONG_MAX 4294967295L
845 */
846
847#ifdef I_LIMITS /* Needed for cast_xxx() functions below. */
848# include <limits.h>
849#else
850#ifdef I_VALUES
851# include <values.h>
852#endif
853#endif
854
99abf803 855/*
856 * Try to figure out max and min values for the integral types. THE CORRECT
857 * SOLUTION TO THIS MESS: ADAPT enquire.c FROM GCC INTO CONFIGURE. The
858 * following hacks are used if neither limits.h or values.h provide them:
859 * U<TYPE>_MAX: for types >= int: ~(unsigned TYPE)0
860 * for types < int: (unsigned TYPE)~(unsigned)0
861 * The argument to ~ must be unsigned so that later signed->unsigned
862 * conversion can't modify the value's bit pattern (e.g. -0 -> +0),
863 * and it must not be smaller than int because ~ does integral promotion.
864 * <type>_MAX: (<type>) (U<type>_MAX >> 1)
865 * <type>_MIN: -<type>_MAX - <is_twos_complement_architecture: (3 & -1) == 3>.
866 * The latter is a hack which happens to work on some machines but
867 * does *not* catch any random system, or things like integer types
868 * with NaN if that is possible.
869 *
870 * All of the types are explicitly cast to prevent accidental loss of
871 * numeric range, and in the hope that they will be less likely to confuse
872 * over-eager optimizers.
873 *
874 */
27d4fb96 875
99abf803 876#define PERL_UCHAR_MIN ((unsigned char)0)
877
878#ifdef UCHAR_MAX
879# define PERL_UCHAR_MAX ((unsigned char)UCHAR_MAX)
27d4fb96 880#else
99abf803 881# ifdef MAXUCHAR
882# define PERL_UCHAR_MAX ((unsigned char)MAXUCHAR)
27d4fb96 883# else
99abf803 884# define PERL_UCHAR_MAX ((unsigned char)~(unsigned)0)
27d4fb96 885# endif
886#endif
99abf803 887
888/*
889 * CHAR_MIN and CHAR_MAX are not included here, as the (char) type may be
890 * ambiguous. It may be equivalent to (signed char) or (unsigned char)
891 * depending on local options. Until Configure detects this (or at least
892 * detects whether the "signed" keyword is available) the CHAR ranges
893 * will not be included. UCHAR functions normally.
894 * - kja
895 */
27d4fb96 896
99abf803 897#define PERL_USHORT_MIN ((unsigned short)0)
898
899#ifdef USHORT_MAX
900# define PERL_USHORT_MAX ((unsigned short)USHORT_MAX)
27d4fb96 901#else
99abf803 902# ifdef MAXUSHORT
903# define PERL_USHORT_MAX ((unsigned short)MAXUSHORT)
27d4fb96 904# else
ef2f54b0
CB
905# ifdef USHRT_MAX
906# define PERL_USHORT_MAX ((unsigned short)USHRT_MAX)
907# else
908# define PERL_USHORT_MAX ((unsigned short)~(unsigned)0)
909# endif
27d4fb96 910# endif
911#endif
912
27d4fb96 913#ifdef SHORT_MAX
99abf803 914# define PERL_SHORT_MAX ((short)SHORT_MAX)
27d4fb96 915#else
916# ifdef MAXSHORT /* Often used in <values.h> */
99abf803 917# define PERL_SHORT_MAX ((short)MAXSHORT)
27d4fb96 918# else
ef2f54b0
CB
919# ifdef SHRT_MAX
920# define PERL_SHORT_MAX ((short)SHRT_MAX)
921# else
922# define PERL_SHORT_MAX ((short) (PERL_USHORT_MAX >> 1))
923# endif
27d4fb96 924# endif
925#endif
926
927#ifdef SHORT_MIN
99abf803 928# define PERL_SHORT_MIN ((short)SHORT_MIN)
27d4fb96 929#else
930# ifdef MINSHORT
99abf803 931# define PERL_SHORT_MIN ((short)MINSHORT)
27d4fb96 932# else
ef2f54b0
CB
933# ifdef SHRT_MIN
934# define PERL_SHORT_MIN ((short)SHRT_MIN)
935# else
936# define PERL_SHORT_MIN (-PERL_SHORT_MAX - ((3 & -1) == 3))
937# endif
27d4fb96 938# endif
939#endif
940
99abf803 941#ifdef UINT_MAX
942# define PERL_UINT_MAX ((unsigned int)UINT_MAX)
27d4fb96 943#else
99abf803 944# ifdef MAXUINT
945# define PERL_UINT_MAX ((unsigned int)MAXUINT)
27d4fb96 946# else
99abf803 947# define PERL_UINT_MAX (~(unsigned int)0)
27d4fb96 948# endif
949#endif
950
99abf803 951#define PERL_UINT_MIN ((unsigned int)0)
27d4fb96 952
953#ifdef INT_MAX
99abf803 954# define PERL_INT_MAX ((int)INT_MAX)
27d4fb96 955#else
956# ifdef MAXINT /* Often used in <values.h> */
99abf803 957# define PERL_INT_MAX ((int)MAXINT)
27d4fb96 958# else
99abf803 959# define PERL_INT_MAX ((int)(PERL_UINT_MAX >> 1))
27d4fb96 960# endif
961#endif
962
963#ifdef INT_MIN
99abf803 964# define PERL_INT_MIN ((int)INT_MIN)
27d4fb96 965#else
966# ifdef MININT
99abf803 967# define PERL_INT_MIN ((int)MININT)
27d4fb96 968# else
969# define PERL_INT_MIN (-PERL_INT_MAX - ((3 & -1) == 3))
970# endif
971#endif
972
99abf803 973#ifdef ULONG_MAX
974# define PERL_ULONG_MAX ((unsigned long)ULONG_MAX)
27d4fb96 975#else
99abf803 976# ifdef MAXULONG
977# define PERL_ULONG_MAX ((unsigned long)MAXULONG)
27d4fb96 978# else
99abf803 979# define PERL_ULONG_MAX (~(unsigned long)0)
27d4fb96 980# endif
981#endif
982
99abf803 983#define PERL_ULONG_MIN ((unsigned long)0L)
27d4fb96 984
760ac839 985#ifdef LONG_MAX
99abf803 986# define PERL_LONG_MAX ((long)LONG_MAX)
760ac839
LW
987#else
988# ifdef MAXLONG /* Often used in <values.h> */
99abf803 989# define PERL_LONG_MAX ((long)MAXLONG)
760ac839 990# else
99abf803 991# define PERL_LONG_MAX ((long) (PERL_ULONG_MAX >> 1))
760ac839
LW
992# endif
993#endif
994
995#ifdef LONG_MIN
99abf803 996# define PERL_LONG_MIN ((long)LONG_MIN)
760ac839
LW
997#else
998# ifdef MINLONG
99abf803 999# define PERL_LONG_MIN ((long)MINLONG)
760ac839 1000# else
27d4fb96 1001# define PERL_LONG_MIN (-PERL_LONG_MAX - ((3 & -1) == 3))
760ac839
LW
1002# endif
1003#endif
1004
99abf803 1005#ifdef HAS_QUAD
1006
1007# ifdef UQUAD_MAX
1008# define PERL_UQUAD_MAX ((UV)UQUAD_MAX)
760ac839 1009# else
99abf803 1010# define PERL_UQUAD_MAX (~(UV)0)
760ac839 1011# endif
760ac839 1012
99abf803 1013# define PERL_UQUAD_MIN ((UV)0)
27d4fb96 1014
27d4fb96 1015# ifdef QUAD_MAX
99abf803 1016# define PERL_QUAD_MAX ((IV)QUAD_MAX)
27d4fb96 1017# else
99abf803 1018# define PERL_QUAD_MAX ((IV) (PERL_UQUAD_MAX >> 1))
27d4fb96 1019# endif
1020
1021# ifdef QUAD_MIN
99abf803 1022# define PERL_QUAD_MIN ((IV)QUAD_MIN)
27d4fb96 1023# else
a6e633de 1024# define PERL_QUAD_MIN (-PERL_QUAD_MAX - ((3 & -1) == 3))
27d4fb96 1025# endif
1026
79072805
LW
1027#endif
1028
ee0007ab 1029typedef MEM_SIZE STRLEN;
450a55e4 1030
79072805
LW
1031typedef struct op OP;
1032typedef struct cop COP;
1033typedef struct unop UNOP;
1034typedef struct binop BINOP;
1035typedef struct listop LISTOP;
1036typedef struct logop LOGOP;
1037typedef struct condop CONDOP;
1038typedef struct pmop PMOP;
1039typedef struct svop SVOP;
1040typedef struct gvop GVOP;
1041typedef struct pvop PVOP;
79072805
LW
1042typedef struct loop LOOP;
1043
1044typedef struct Outrec Outrec;
93a17b20 1045typedef struct interpreter PerlInterpreter;
3e3baf6d
TB
1046#ifndef __BORLANDC__
1047typedef struct ff FF; /* XXX not defined anywhere, should go? */
1048#endif
79072805
LW
1049typedef struct sv SV;
1050typedef struct av AV;
1051typedef struct hv HV;
1052typedef struct cv CV;
378cc40b 1053typedef struct regexp REGEXP;
79072805 1054typedef struct gp GP;
0c30d9ec 1055typedef struct gv GV;
8990e307 1056typedef struct io IO;
c09156bb 1057typedef struct context PERL_CONTEXT;
79072805
LW
1058typedef struct block BLOCK;
1059
1060typedef struct magic MAGIC;
ed6116ce 1061typedef struct xrv XRV;
79072805
LW
1062typedef struct xpv XPV;
1063typedef struct xpviv XPVIV;
ff68c719 1064typedef struct xpvuv XPVUV;
79072805
LW
1065typedef struct xpvnv XPVNV;
1066typedef struct xpvmg XPVMG;
1067typedef struct xpvlv XPVLV;
1068typedef struct xpvav XPVAV;
1069typedef struct xpvhv XPVHV;
1070typedef struct xpvgv XPVGV;
1071typedef struct xpvcv XPVCV;
1072typedef struct xpvbm XPVBM;
1073typedef struct xpvfm XPVFM;
8990e307 1074typedef struct xpvio XPVIO;
79072805
LW
1075typedef struct mgvtbl MGVTBL;
1076typedef union any ANY;
8d063cd8 1077
378cc40b 1078#include "handy.h"
a0d0e21e 1079
873ef191
GS
1080#ifdef PERL_OBJECT
1081typedef I32 (*filter_t) _((CPerlObj*, int, SV *, int));
1082#else
16d20bd9 1083typedef I32 (*filter_t) _((int, SV *, int));
873ef191
GS
1084#endif
1085
16d20bd9
AD
1086#define FILTER_READ(idx, sv, len) filter_read(idx, sv, len)
1087#define FILTER_DATA(idx) (AvARRAY(rsfp_filters)[idx])
93965878 1088#define FILTER_ISREADER(idx) (idx >= AvFILLp(rsfp_filters))
16d20bd9 1089
748a9306 1090#ifdef DOSISH
4633a7c4
LW
1091# if defined(OS2)
1092# include "os2ish.h"
1093# else
748a9306 1094# include "dosish.h"
4633a7c4 1095# endif
a0d0e21e 1096#else
748a9306
LW
1097# if defined(VMS)
1098# include "vmsish.h"
1099# else
0c30d9ec 1100# if defined(PLAN9)
1101# include "./plan9/plan9ish.h"
1102# else
1103# include "unixish.h"
1104# endif
748a9306 1105# endif
32f822de
GS
1106#endif
1107
ac4c12e7
GS
1108#ifndef FUNC_NAME_TO_PTR
1109#define FUNC_NAME_TO_PTR(name) name
1110#endif
1111
32f822de 1112/*
dd96f567
IZ
1113 * USE_THREADS needs to be after unixish.h as <pthread.h> includes
1114 * <sys/signal.h> which defines NSIG - which will stop inclusion of <signal.h>
32f822de
GS
1115 * this results in many functions being undeclared which bothers C++
1116 * May make sense to have threads after "*ish.h" anyway
1117 */
1118
1119#ifdef USE_THREADS
1120# ifdef FAKE_THREADS
1121# include "fakethr.h"
1122# else
1123# ifdef WIN32
1124# include <win32thread.h>
1125# else
dd96f567
IZ
1126# ifdef OS2
1127# include "os2thread.h"
1128# else
1129# include <pthread.h>
c6ee37c5 1130typedef pthread_t perl_os_thread;
32f822de
GS
1131typedef pthread_mutex_t perl_mutex;
1132typedef pthread_cond_t perl_cond;
1133typedef pthread_key_t perl_key;
dd96f567 1134# endif /* OS2 */
32f822de
GS
1135# endif /* WIN32 */
1136# endif /* FAKE_THREADS */
1137#endif /* USE_THREADS */
1138
1139
3fc1aec6 1140
68dc0745 1141#ifdef VMS
1142# define STATUS_NATIVE statusvalue_vms
1143# define STATUS_NATIVE_EXPORT \
1144 ((I32)statusvalue_vms == -1 ? 44 : statusvalue_vms)
1145# define STATUS_NATIVE_SET(n) \
1146 STMT_START { \
1147 statusvalue_vms = (n); \
1148 if ((I32)statusvalue_vms == -1) \
1149 statusvalue = -1; \
1150 else if (statusvalue_vms & STS$M_SUCCESS) \
1151 statusvalue = 0; \
1152 else if ((statusvalue_vms & STS$M_SEVERITY) == 0) \
1153 statusvalue = 1 << 8; \
1154 else \
1155 statusvalue = (statusvalue_vms & STS$M_SEVERITY) << 8; \
1156 } STMT_END
1157# define STATUS_POSIX statusvalue
1158# ifdef VMSISH_STATUS
1159# define STATUS_CURRENT (VMSISH_STATUS ? STATUS_NATIVE : STATUS_POSIX)
1160# else
1161# define STATUS_CURRENT STATUS_POSIX
1162# endif
1163# define STATUS_POSIX_SET(n) \
1164 STMT_START { \
1165 statusvalue = (n); \
1166 if (statusvalue != -1) { \
1167 statusvalue &= 0xFFFF; \
1168 statusvalue_vms = statusvalue ? 44 : 1; \
1169 } \
1170 else statusvalue_vms = -1; \
1171 } STMT_END
1172# define STATUS_ALL_SUCCESS (statusvalue = 0, statusvalue_vms = 1)
1173# define STATUS_ALL_FAILURE (statusvalue = 1, statusvalue_vms = 44)
1174#else
1175# define STATUS_NATIVE STATUS_POSIX
1176# define STATUS_NATIVE_EXPORT STATUS_POSIX
1177# define STATUS_NATIVE_SET STATUS_POSIX_SET
1178# define STATUS_POSIX statusvalue
1179# define STATUS_POSIX_SET(n) \
1180 STMT_START { \
1181 statusvalue = (n); \
1182 if (statusvalue != -1) \
1183 statusvalue &= 0xFFFF; \
1184 } STMT_END
1185# define STATUS_CURRENT STATUS_POSIX
1186# define STATUS_ALL_SUCCESS (statusvalue = 0)
1187# define STATUS_ALL_FAILURE (statusvalue = 1)
1188#endif
1189
3fc1aec6 1190/* Some unistd.h's give a prototype for pause() even though
1191 HAS_PAUSE ends up undefined. This causes the #define
1192 below to be rejected by the compmiler. Sigh.
1193*/
1194#ifdef HAS_PAUSE
1195#define Pause pause
1196#else
1197#define Pause() sleep((32767<<16)+32767)
748a9306
LW
1198#endif
1199
1200#ifndef IOCPARM_LEN
1201# ifdef IOCPARM_MASK
1202 /* on BSDish systes we're safe */
1203# define IOCPARM_LEN(x) (((x) >> 16) & IOCPARM_MASK)
1204# else
1205 /* otherwise guess at what's safe */
1206# define IOCPARM_LEN(x) 256
1207# endif
a0d0e21e
LW
1208#endif
1209
79072805
LW
1210union any {
1211 void* any_ptr;
1212 I32 any_i32;
a0d0e21e 1213 IV any_iv;
85e6fe83 1214 long any_long;
565764a8 1215 void (CPERLscope(*any_dptr)) _((void*));
e3b8966e
GS
1216#if defined(WIN32) && !defined(PERL_OBJECT)
1217 /* Visual C thinks that a pointer to a member variable is 16 bytes in size. */
1218 char handle_VC_problem[16];
1219#endif
79072805
LW
1220};
1221
11343788 1222#ifdef USE_THREADS
52e1cb5e 1223#define ARGSproto struct perl_thread *thr
11343788
MB
1224#else
1225#define ARGSproto void
1226#endif /* USE_THREADS */
1227
5aabfad6 1228/* Work around some cygwin32 problems with importing global symbols */
1229#if defined(CYGWIN32) && defined(DLLIMPORT)
1230# include "cw32imp.h"
1231#endif
1232
378cc40b 1233#include "regexp.h"
79072805 1234#include "sv.h"
378cc40b 1235#include "util.h"
8d063cd8 1236#include "form.h"
79072805
LW
1237#include "gv.h"
1238#include "cv.h"
1239#include "opcode.h"
1240#include "op.h"
1241#include "cop.h"
1242#include "av.h"
1243#include "hv.h"
1244#include "mg.h"
1245#include "scope.h"
d613ef02
GS
1246#include "bytecode.h"
1247#include "byterun.h"
8d063cd8 1248
7fae4e64
GS
1249/* Current curly descriptor */
1250typedef struct curcur CURCUR;
1251struct curcur {
1252 int parenfloor; /* how far back to strip paren data */
1253 int cur; /* how many instances of scan we've matched */
1254 int min; /* the minimal number of scans to match */
1255 int max; /* the maximal number of scans to match */
1256 int minmod; /* whether to work our way up or down */
1257 regnode * scan; /* the thing to match */
1258 regnode * next; /* what has to match after it */
1259 char * lastloc; /* where we started matching this scan */
1260 CURCUR * oldcc; /* current curly before we started this one */
1261};
1262
1263typedef struct _sublex_info SUBLEXINFO;
1264struct _sublex_info {
1265 I32 super_state; /* lexer state to save */
1266 I32 sub_inwhat; /* "lex_inwhat" to use */
1267 OP *sub_op; /* "lex_op" to use */
1268};
1269
76e3520e
GS
1270#ifdef PERL_OBJECT
1271struct magic_state {
1272 SV* mgs_sv;
1273 U32 mgs_flags;
1274};
1275typedef struct magic_state MGS;
1276
1277typedef struct {
1278 I32 len_min;
1279 I32 len_delta;
1280 I32 pos_min;
1281 I32 pos_delta;
1282 SV *last_found;
1283 I32 last_end; /* min value, <0 unless valid. */
1284 I32 last_start_min;
1285 I32 last_start_max;
1286 SV **longest; /* Either &l_fixed, or &l_float. */
1287 SV *longest_fixed;
1288 I32 offset_fixed;
1289 SV *longest_float;
1290 I32 offset_float_min;
1291 I32 offset_float_max;
1292 I32 flags;
1293} scan_data_t;
1294
1295typedef I32 CHECKPOINT;
1296#endif /* PERL_OBJECT */
1297
4633a7c4
LW
1298/* work around some libPW problems */
1299#ifdef DOINIT
1300EXT char Error[1];
1301#endif
1302
450a55e4 1303#if defined(iAPX286) || defined(M_I286) || defined(I80286)
a687059c
LW
1304# define I286
1305#endif
1306
fe14fcc3
LW
1307#if defined(htonl) && !defined(HAS_HTONL)
1308#define HAS_HTONL
ae986130 1309#endif
fe14fcc3
LW
1310#if defined(htons) && !defined(HAS_HTONS)
1311#define HAS_HTONS
ae986130 1312#endif
fe14fcc3
LW
1313#if defined(ntohl) && !defined(HAS_NTOHL)
1314#define HAS_NTOHL
ae986130 1315#endif
fe14fcc3
LW
1316#if defined(ntohs) && !defined(HAS_NTOHS)
1317#define HAS_NTOHS
ae986130 1318#endif
fe14fcc3 1319#ifndef HAS_HTONL
d9d8d8de 1320#if (BYTEORDER & 0xffff) != 0x4321
fe14fcc3
LW
1321#define HAS_HTONS
1322#define HAS_HTONL
1323#define HAS_NTOHS
1324#define HAS_NTOHL
a687059c
LW
1325#define MYSWAP
1326#define htons my_swap
1327#define htonl my_htonl
1328#define ntohs my_swap
1329#define ntohl my_ntohl
1330#endif
1331#else
d9d8d8de 1332#if (BYTEORDER & 0xffff) == 0x4321
fe14fcc3
LW
1333#undef HAS_HTONS
1334#undef HAS_HTONL
1335#undef HAS_NTOHS
1336#undef HAS_NTOHL
a687059c
LW
1337#endif
1338#endif
1339
988174c1
LW
1340/*
1341 * Little-endian byte order functions - 'v' for 'VAX', or 'reVerse'.
1342 * -DWS
1343 */
1344#if BYTEORDER != 0x1234
1345# define HAS_VTOHL
1346# define HAS_VTOHS
1347# define HAS_HTOVL
1348# define HAS_HTOVS
1349# if BYTEORDER == 0x4321
1350# define vtohl(x) ((((x)&0xFF)<<24) \
1351 +(((x)>>24)&0xFF) \
1352 +(((x)&0x0000FF00)<<8) \
1353 +(((x)&0x00FF0000)>>8) )
1354# define vtohs(x) ((((x)&0xFF)<<8) + (((x)>>8)&0xFF))
1355# define htovl(x) vtohl(x)
1356# define htovs(x) vtohs(x)
1357# endif
1358 /* otherwise default to functions in util.c */
1359#endif
1360
0f85fab0 1361#ifdef CASTNEGFLOAT
79072805 1362#define U_S(what) ((U16)(what))
0f85fab0 1363#define U_I(what) ((unsigned int)(what))
79072805 1364#define U_L(what) ((U32)(what))
0f85fab0 1365#else
32f822de 1366EXTERN_C U32 cast_ulong _((double));
232e078e
AD
1367#define U_S(what) ((U16)cast_ulong((double)(what)))
1368#define U_I(what) ((unsigned int)cast_ulong((double)(what)))
1369#define U_L(what) (cast_ulong((double)(what)))
ee0007ab
LW
1370#endif
1371
ed6116ce
LW
1372#ifdef CASTI32
1373#define I_32(what) ((I32)(what))
a0d0e21e 1374#define I_V(what) ((IV)(what))
5d94fbed 1375#define U_V(what) ((UV)(what))
ed6116ce 1376#else
32f822de 1377START_EXTERN_C
a0d0e21e 1378I32 cast_i32 _((double));
a0d0e21e 1379IV cast_iv _((double));
5d94fbed 1380UV cast_uv _((double));
32f822de 1381END_EXTERN_C
a6e633de 1382#define I_32(what) (cast_i32((double)(what)))
1383#define I_V(what) (cast_iv((double)(what)))
5d94fbed 1384#define U_V(what) (cast_uv((double)(what)))
ed6116ce
LW
1385#endif
1386
79072805
LW
1387struct Outrec {
1388 I32 o_lines;
d9d8d8de 1389 char *o_str;
79072805 1390 U32 o_len;
8d063cd8
LW
1391};
1392
352d5a3a
LW
1393#ifndef MAXSYSFD
1394# define MAXSYSFD 2
1395#endif
ee0007ab 1396
f82b3d41 1397#ifndef TMPPATH
1398# define TMPPATH "/tmp/perl-eXXXXXX"
a0d0e21e 1399#endif
79072805
LW
1400
1401#ifndef __cplusplus
a0d0e21e
LW
1402Uid_t getuid _((void));
1403Uid_t geteuid _((void));
1404Gid_t getgid _((void));
1405Gid_t getegid _((void));
79072805 1406#endif
8d063cd8
LW
1407
1408#ifdef DEBUGGING
0c30d9ec 1409#ifndef Perl_debug_log
760ac839 1410#define Perl_debug_log PerlIO_stderr()
0c30d9ec 1411#endif
d96024cf 1412#define YYDEBUG 1
79072805
LW
1413#define DEB(a) a
1414#define DEBUG(a) if (debug) a
1415#define DEBUG_p(a) if (debug & 1) a
1416#define DEBUG_s(a) if (debug & 2) a
1417#define DEBUG_l(a) if (debug & 4) a
1418#define DEBUG_t(a) if (debug & 8) a
1419#define DEBUG_o(a) if (debug & 16) a
1420#define DEBUG_c(a) if (debug & 32) a
1421#define DEBUG_P(a) if (debug & 64) a
0c30d9ec 1422#define DEBUG_m(a) if (curinterp && debug & 128) a
79072805
LW
1423#define DEBUG_f(a) if (debug & 256) a
1424#define DEBUG_r(a) if (debug & 512) a
1425#define DEBUG_x(a) if (debug & 1024) a
1426#define DEBUG_u(a) if (debug & 2048) a
1427#define DEBUG_L(a) if (debug & 4096) a
1428#define DEBUG_H(a) if (debug & 8192) a
1429#define DEBUG_X(a) if (debug & 16384) a
8990e307 1430#define DEBUG_D(a) if (debug & 32768) a
79072805
LW
1431#else
1432#define DEB(a)
1433#define DEBUG(a)
1434#define DEBUG_p(a)
1435#define DEBUG_s(a)
1436#define DEBUG_l(a)
1437#define DEBUG_t(a)
1438#define DEBUG_o(a)
1439#define DEBUG_c(a)
1440#define DEBUG_P(a)
1441#define DEBUG_m(a)
1442#define DEBUG_f(a)
1443#define DEBUG_r(a)
1444#define DEBUG_x(a)
1445#define DEBUG_u(a)
1446#define DEBUG_L(a)
1447#define DEBUG_H(a)
1448#define DEBUG_X(a)
8990e307 1449#define DEBUG_D(a)
8d063cd8 1450#endif
fe14fcc3 1451#define YYMAXDEPTH 300
8d063cd8 1452
a6e633de 1453#ifndef assert /* <assert.h> might have been included somehow */
79072805
LW
1454#define assert(what) DEB( { \
1455 if (!(what)) { \
463ee0b2 1456 croak("Assertion failed: file \"%s\", line %d", \
79072805 1457 __FILE__, __LINE__); \
6ad3d225 1458 PerlProc_exit(1); \
79072805 1459 }})
a6e633de 1460#endif
8d063cd8 1461
450a55e4 1462struct ufuncs {
a0d0e21e
LW
1463 I32 (*uf_val)_((IV, SV*));
1464 I32 (*uf_set)_((IV, SV*));
1465 IV uf_index;
450a55e4
LW
1466};
1467
fe14fcc3 1468/* Fix these up for __STDC__ */
68dc0745 1469#ifndef DONT_DECLARE_STD
a0d0e21e
LW
1470char *mktemp _((char*));
1471double atof _((const char*));
1472#endif
79072805 1473
352d5a3a 1474#ifndef STANDARD_C
fe14fcc3 1475/* All of these are in stdlib.h or time.h for ANSI C */
85e6fe83 1476Time_t time();
8d063cd8 1477struct tm *gmtime(), *localtime();
93a17b20 1478char *strchr(), *strrchr();
378cc40b 1479char *strcpy(), *strcat();
352d5a3a 1480#endif /* ! STANDARD_C */
8d063cd8 1481
79072805
LW
1482
1483#ifdef I_MATH
1484# include <math.h>
1485#else
32f822de 1486START_EXTERN_C
a0d0e21e 1487 double exp _((double));
a0d0e21e 1488 double log _((double));
c635e13b 1489 double log10 _((double));
a0d0e21e 1490 double sqrt _((double));
c635e13b 1491 double frexp _((double,int*));
1492 double ldexp _((double,int));
a0d0e21e
LW
1493 double modf _((double,double*));
1494 double sin _((double));
1495 double cos _((double));
1496 double atan2 _((double,double));
1497 double pow _((double,double));
32f822de 1498END_EXTERN_C
79072805
LW
1499#endif
1500
a0d0e21e 1501#ifndef __cplusplus
26618a56 1502# ifdef __NeXT__ /* or whatever catches all NeXTs */
3fc1aec6 1503char *crypt (); /* Maybe more hosts will need the unprototyped version */
26618a56
GS
1504# else
1505# if !defined(WIN32) || !defined(HAVE_DES_FCRYPT)
a0d0e21e 1506char *crypt _((const char*, const char*));
26618a56
GS
1507# endif /* !WIN32 && !HAVE_CRYPT_SOURCE */
1508# endif /* !__NeXT__ */
1509# ifndef DONT_DECLARE_STD
1510# ifndef getenv
a0d0e21e 1511char *getenv _((const char*));
26618a56 1512# endif /* !getenv */
a0d0e21e 1513Off_t lseek _((int,Off_t,int));
26618a56 1514# endif /* !DONT_DECLARE_STD */
a0d0e21e 1515char *getlogin _((void));
26618a56 1516#endif /* !__cplusplus */
79072805 1517
16d20bd9 1518#ifdef UNLINK_ALL_VERSIONS /* Currently only makes sense for VMS */
378cc40b 1519#define UNLINK unlnk
a0d0e21e 1520I32 unlnk _((char*));
8d063cd8
LW
1521#else
1522#define UNLINK unlink
1523#endif
a687059c 1524
fe14fcc3 1525#ifndef HAS_SETREUID
85e6fe83
LW
1526# ifdef HAS_SETRESUID
1527# define setreuid(r,e) setresuid(r,e,(Uid_t)-1)
1528# define HAS_SETREUID
1529# endif
a687059c 1530#endif
fe14fcc3 1531#ifndef HAS_SETREGID
85e6fe83
LW
1532# ifdef HAS_SETRESGID
1533# define setregid(r,e) setresgid(r,e,(Gid_t)-1)
1534# define HAS_SETREGID
1535# endif
a687059c 1536#endif
ee0007ab 1537
ff68c719 1538typedef Signal_t (*Sighandler_t) _((int));
1539
1540#ifdef HAS_SIGACTION
1541typedef struct sigaction Sigsave_t;
1542#else
1543typedef Sighandler_t Sigsave_t;
1544#endif
1545
ee0007ab
LW
1546#define SCAN_DEF 0
1547#define SCAN_TR 1
1548#define SCAN_REPL 2
79072805
LW
1549
1550#ifdef DEBUGGING
4633a7c4 1551# ifndef register
a0d0e21e
LW
1552# define register
1553# endif
1554# define PAD_SV(po) pad_sv(po)
2ddcc7aa 1555# define RUNOPS_DEFAULT runops_debug
79072805 1556#else
a0d0e21e 1557# define PAD_SV(po) curpad[po]
2ddcc7aa 1558# define RUNOPS_DEFAULT runops_standard
79072805
LW
1559#endif
1560
18f739ee
IZ
1561#ifdef MYMALLOC
1562# define MALLOC_INIT MUTEX_INIT(&malloc_mutex)
1563# define MALLOC_TERM MUTEX_DESTROY(&malloc_mutex)
1564#else
1565# define MALLOC_INIT
1566# define MALLOC_TERM
1567#endif
1568
b6d9d515 1569
44a0ac01
MB
1570/*
1571 * These need prototyping here because <proto.h> isn't
1572 * included until after runops is initialised.
1573 */
1574
76e3520e 1575#ifndef PERL_OBJECT
49f531da 1576typedef int runops_proc_t _((void));
44a0ac01
MB
1577int runops_standard _((void));
1578#ifdef DEBUGGING
1579int runops_debug _((void));
1580#endif
76e3520e 1581#endif /* PERL_OBJECT */
44a0ac01 1582
940cb80d 1583/* _ (for $_) must be first in the following list (DEFSV requires it) */
54b9620d 1584#define THREADSV_NAMES "_123456789&`'+/.,\\\";^-%=|~:\001\005!@"
a863c7d1 1585
0c30d9ec 1586/* VMS doesn't use environ array and NeXT has problems with crt0.o globals */
1587#if !defined(VMS) && !(defined(NeXT) && defined(__DYNAMIC__))
16de4a3e
RS
1588#if !defined(DONT_DECLARE_STD) \
1589 || (defined(__svr4__) && defined(__GNUC__) && defined(sun)) \
1590 || defined(__sgi) || defined(__DGUX)
79072805 1591extern char ** environ; /* environment variables supplied via exec */
a0d0e21e 1592#endif
0c30d9ec 1593#else
1594# if defined(NeXT) && defined(__DYNAMIC__)
1595
1596# include <mach-o/dyld.h>
1597EXT char *** environ_pointer;
1598# define environ (*environ_pointer)
1599# endif
1600#endif /* environ processing */
1601
79072805
LW
1602
1603/* for tmp use in stupid debuggers */
1604EXT int * di;
1605EXT short * ds;
1606EXT char * dc;
1607
1608/* handy constants */
3e3baf6d 1609EXTCONST char warn_uninit[]
a0d0e21e 1610 INIT("Use of uninitialized value");
3e3baf6d 1611EXTCONST char warn_nosemi[]
463ee0b2 1612 INIT("Semicolon seems to be missing");
3e3baf6d 1613EXTCONST char warn_reserved[]
463ee0b2 1614 INIT("Unquoted string \"%s\" may clash with future reserved word");
3e3baf6d 1615EXTCONST char warn_nl[]
93a17b20 1616 INIT("Unsuccessful %s on filename containing newline");
3e3baf6d 1617EXTCONST char no_wrongref[]
a0d0e21e 1618 INIT("Can't use %s ref as %s ref");
3e3baf6d 1619EXTCONST char no_symref[]
748a9306 1620 INIT("Can't use string (\"%.32s\") as %s ref while \"strict refs\" in use");
3e3baf6d 1621EXTCONST char no_usym[]
8990e307 1622 INIT("Can't use an undefined value as %s reference");
3e3baf6d 1623EXTCONST char no_aelem[]
93a17b20 1624 INIT("Modification of non-creatable array value attempted, subscript %d");
3e3baf6d 1625EXTCONST char no_helem[]
93a17b20 1626 INIT("Modification of non-creatable hash value attempted, subscript \"%s\"");
3e3baf6d 1627EXTCONST char no_modify[]
93a17b20 1628 INIT("Modification of a read-only value attempted");
3e3baf6d 1629EXTCONST char no_mem[]
93a17b20 1630 INIT("Out of memory!\n");
3e3baf6d 1631EXTCONST char no_security[]
463ee0b2 1632 INIT("Insecure dependency in %s%s");
3e3baf6d 1633EXTCONST char no_sock_func[]
93a17b20 1634 INIT("Unsupported socket function \"%s\" called");
3e3baf6d 1635EXTCONST char no_dir_func[]
93a17b20 1636 INIT("Unsupported directory function \"%s\" called");
3e3baf6d 1637EXTCONST char no_func[]
93a17b20 1638 INIT("The %s function is unimplemented");
3e3baf6d 1639EXTCONST char no_myglob[]
748a9306 1640 INIT("\"my\" variable %s can't be in a package");
93a17b20 1641
79072805 1642#ifdef DOINIT
8e07c86e
AD
1643EXT char *sig_name[] = { SIG_NAME };
1644EXT int sig_num[] = { SIG_NUM };
0c30d9ec 1645EXT SV * psig_ptr[sizeof(sig_num)/sizeof(*sig_num)];
1646EXT SV * psig_name[sizeof(sig_num)/sizeof(*sig_num)];
79072805
LW
1647#else
1648EXT char *sig_name[];
8e07c86e 1649EXT int sig_num[];
0c30d9ec 1650EXT SV * psig_ptr[];
1651EXT SV * psig_name[];
79072805
LW
1652#endif
1653
bbce6d69 1654/* fast case folding tables */
1655
79072805 1656#ifdef DOINIT
36477c24 1657EXTCONST unsigned char fold[] = {
79072805
LW
1658 0, 1, 2, 3, 4, 5, 6, 7,
1659 8, 9, 10, 11, 12, 13, 14, 15,
1660 16, 17, 18, 19, 20, 21, 22, 23,
1661 24, 25, 26, 27, 28, 29, 30, 31,
1662 32, 33, 34, 35, 36, 37, 38, 39,
1663 40, 41, 42, 43, 44, 45, 46, 47,
1664 48, 49, 50, 51, 52, 53, 54, 55,
1665 56, 57, 58, 59, 60, 61, 62, 63,
1666 64, 'a', 'b', 'c', 'd', 'e', 'f', 'g',
1667 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o',
1668 'p', 'q', 'r', 's', 't', 'u', 'v', 'w',
1669 'x', 'y', 'z', 91, 92, 93, 94, 95,
1670 96, 'A', 'B', 'C', 'D', 'E', 'F', 'G',
1671 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O',
1672 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W',
1673 'X', 'Y', 'Z', 123, 124, 125, 126, 127,
1674 128, 129, 130, 131, 132, 133, 134, 135,
1675 136, 137, 138, 139, 140, 141, 142, 143,
1676 144, 145, 146, 147, 148, 149, 150, 151,
1677 152, 153, 154, 155, 156, 157, 158, 159,
1678 160, 161, 162, 163, 164, 165, 166, 167,
1679 168, 169, 170, 171, 172, 173, 174, 175,
1680 176, 177, 178, 179, 180, 181, 182, 183,
1681 184, 185, 186, 187, 188, 189, 190, 191,
1682 192, 193, 194, 195, 196, 197, 198, 199,
1683 200, 201, 202, 203, 204, 205, 206, 207,
1684 208, 209, 210, 211, 212, 213, 214, 215,
1685 216, 217, 218, 219, 220, 221, 222, 223,
1686 224, 225, 226, 227, 228, 229, 230, 231,
1687 232, 233, 234, 235, 236, 237, 238, 239,
1688 240, 241, 242, 243, 244, 245, 246, 247,
1689 248, 249, 250, 251, 252, 253, 254, 255
1690};
1691#else
71be2cbc 1692EXTCONST unsigned char fold[];
79072805
LW
1693#endif
1694
1695#ifdef DOINIT
bbce6d69 1696EXT unsigned char fold_locale[] = {
79072805
LW
1697 0, 1, 2, 3, 4, 5, 6, 7,
1698 8, 9, 10, 11, 12, 13, 14, 15,
1699 16, 17, 18, 19, 20, 21, 22, 23,
1700 24, 25, 26, 27, 28, 29, 30, 31,
1701 32, 33, 34, 35, 36, 37, 38, 39,
1702 40, 41, 42, 43, 44, 45, 46, 47,
1703 48, 49, 50, 51, 52, 53, 54, 55,
1704 56, 57, 58, 59, 60, 61, 62, 63,
1705 64, 'a', 'b', 'c', 'd', 'e', 'f', 'g',
1706 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o',
1707 'p', 'q', 'r', 's', 't', 'u', 'v', 'w',
1708 'x', 'y', 'z', 91, 92, 93, 94, 95,
1709 96, 'A', 'B', 'C', 'D', 'E', 'F', 'G',
1710 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O',
1711 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W',
1712 'X', 'Y', 'Z', 123, 124, 125, 126, 127,
1713 128, 129, 130, 131, 132, 133, 134, 135,
1714 136, 137, 138, 139, 140, 141, 142, 143,
1715 144, 145, 146, 147, 148, 149, 150, 151,
1716 152, 153, 154, 155, 156, 157, 158, 159,
1717 160, 161, 162, 163, 164, 165, 166, 167,
1718 168, 169, 170, 171, 172, 173, 174, 175,
1719 176, 177, 178, 179, 180, 181, 182, 183,
1720 184, 185, 186, 187, 188, 189, 190, 191,
1721 192, 193, 194, 195, 196, 197, 198, 199,
1722 200, 201, 202, 203, 204, 205, 206, 207,
1723 208, 209, 210, 211, 212, 213, 214, 215,
1724 216, 217, 218, 219, 220, 221, 222, 223,
1725 224, 225, 226, 227, 228, 229, 230, 231,
1726 232, 233, 234, 235, 236, 237, 238, 239,
1727 240, 241, 242, 243, 244, 245, 246, 247,
1728 248, 249, 250, 251, 252, 253, 254, 255
1729};
1730#else
bbce6d69 1731EXT unsigned char fold_locale[];
79072805
LW
1732#endif
1733
1734#ifdef DOINIT
71be2cbc 1735EXTCONST unsigned char freq[] = { /* letter frequencies for mixed English/C */
79072805
LW
1736 1, 2, 84, 151, 154, 155, 156, 157,
1737 165, 246, 250, 3, 158, 7, 18, 29,
1738 40, 51, 62, 73, 85, 96, 107, 118,
1739 129, 140, 147, 148, 149, 150, 152, 153,
1740 255, 182, 224, 205, 174, 176, 180, 217,
1741 233, 232, 236, 187, 235, 228, 234, 226,
1742 222, 219, 211, 195, 188, 193, 185, 184,
1743 191, 183, 201, 229, 181, 220, 194, 162,
1744 163, 208, 186, 202, 200, 218, 198, 179,
1745 178, 214, 166, 170, 207, 199, 209, 206,
1746 204, 160, 212, 216, 215, 192, 175, 173,
1747 243, 172, 161, 190, 203, 189, 164, 230,
1748 167, 248, 227, 244, 242, 255, 241, 231,
1749 240, 253, 169, 210, 245, 237, 249, 247,
1750 239, 168, 252, 251, 254, 238, 223, 221,
1751 213, 225, 177, 197, 171, 196, 159, 4,
1752 5, 6, 8, 9, 10, 11, 12, 13,
1753 14, 15, 16, 17, 19, 20, 21, 22,
1754 23, 24, 25, 26, 27, 28, 30, 31,
1755 32, 33, 34, 35, 36, 37, 38, 39,
1756 41, 42, 43, 44, 45, 46, 47, 48,
1757 49, 50, 52, 53, 54, 55, 56, 57,
1758 58, 59, 60, 61, 63, 64, 65, 66,
1759 67, 68, 69, 70, 71, 72, 74, 75,
1760 76, 77, 78, 79, 80, 81, 82, 83,
1761 86, 87, 88, 89, 90, 91, 92, 93,
1762 94, 95, 97, 98, 99, 100, 101, 102,
1763 103, 104, 105, 106, 108, 109, 110, 111,
1764 112, 113, 114, 115, 116, 117, 119, 120,
1765 121, 122, 123, 124, 125, 126, 127, 128,
1766 130, 131, 132, 133, 134, 135, 136, 137,
1767 138, 139, 141, 142, 143, 144, 145, 146
1768};
1769#else
71be2cbc 1770EXTCONST unsigned char freq[];
79072805
LW
1771#endif
1772
8990e307
LW
1773#ifdef DEBUGGING
1774#ifdef DOINIT
71be2cbc 1775EXTCONST char* block_type[] = {
8990e307
LW
1776 "NULL",
1777 "SUB",
1778 "EVAL",
1779 "LOOP",
1780 "SUBST",
1781 "BLOCK",
1782};
1783#else
71be2cbc 1784EXTCONST char* block_type[];
8990e307
LW
1785#endif
1786#endif
1787
79072805
LW
1788/*****************************************************************************/
1789/* This lexer/parser stuff is currently global since yacc is hard to reenter */
1790/*****************************************************************************/
8990e307 1791/* XXX This needs to be revisited, since BEGIN makes yacc re-enter... */
79072805 1792
a0d0e21e
LW
1793#include "perly.h"
1794
fb73857a 1795#define LEX_NOTPARSING 11 /* borrowed from toke.c */
1796
79072805
LW
1797typedef enum {
1798 XOPERATOR,
1799 XTERM,
79072805 1800 XREF,
8990e307 1801 XSTATE,
a0d0e21e
LW
1802 XBLOCK,
1803 XTERMBLOCK
79072805
LW
1804} expectation;
1805
85e6fe83
LW
1806
1807 /* Note: the lowest 8 bits are reserved for
1808 stuffing into op->op_private */
1809#define HINT_INTEGER 0x00000001
1810#define HINT_STRICT_REFS 0x00000002
1811
1812#define HINT_BLOCK_SCOPE 0x00000100
1813#define HINT_STRICT_SUBS 0x00000200
1814#define HINT_STRICT_VARS 0x00000400
bbce6d69 1815#define HINT_LOCALE 0x00000800
85e6fe83 1816
d4cce5f1
NIS
1817/* Various states of an input record separator SV (rs, nrs) */
1818#define RsSNARF(sv) (! SvOK(sv))
1819#define RsSIMPLE(sv) (SvOK(sv) && SvCUR(sv))
1820#define RsPARA(sv) (SvOK(sv) && ! SvCUR(sv))
79072805 1821
22239a37
NIS
1822/* Set up PERLVAR macros for populating structs */
1823#define PERLVAR(var,type) type var;
1824#define PERLVARI(var,type,init) type var;
3fe35a81 1825#define PERLVARIC(var,type,init) type var;
22239a37 1826
58a50f62
GS
1827/* Interpreter exitlist entry */
1828typedef struct exitlistentry {
1829#ifdef PERL_OBJECT
1830 void (*fn) _((CPerlObj*, void*));
1831#else
1832 void (*fn) _((void*));
1833#endif
1834 void *ptr;
1835} PerlExitListEntry;
1836
76e3520e
GS
1837#ifdef PERL_OBJECT
1838extern "C" CPerlObj* perl_alloc _((IPerlMem*, IPerlEnv*, IPerlStdIO*, IPerlLIO*, IPerlDir*, IPerlSock*, IPerlProc*));
1839
1840typedef int (CPerlObj::*runops_proc_t) _((void));
1841#undef EXT
1842#define EXT
1843#undef EXTCONST
1844#define EXTCONST
1845#undef INIT
1846#define INIT(x)
1847
1848class CPerlObj {
1849public:
1850 CPerlObj(IPerlMem*, IPerlEnv*, IPerlStdIO*, IPerlLIO*, IPerlDir*, IPerlSock*, IPerlProc*);
1851 void Init(void);
1852 void* operator new(size_t nSize, IPerlMem *pvtbl);
1853#endif /* PERL_OBJECT */
1854
22239a37
NIS
1855#ifdef PERL_GLOBAL_STRUCT
1856struct perl_vars {
1857#include "perlvars.h"
1858};
1859
1860#ifdef PERL_CORE
1861EXT struct perl_vars Perl_Vars;
1862EXT struct perl_vars *Perl_VarsPtr INIT(&Perl_Vars);
1863#else
1864#if !defined(__GNUC__) || !defined(WIN32)
1865EXT
1866#endif
1867struct perl_vars *Perl_VarsPtr;
1868#define Perl_Vars (*((Perl_VarsPtr) ? Perl_VarsPtr : (Perl_VarsPtr = Perl_GetVars())))
1869#endif
1870#endif /* PERL_GLOBAL_STRUCT */
1871
8990e307 1872#ifdef MULTIPLICITY
d4cce5f1
NIS
1873/* If we have multiple interpreters define a struct
1874 holding variables which must be per-interpreter
1875 If we don't have threads anything that would have
1876 be per-thread is per-interpreter.
1877*/
1878
79072805 1879struct interpreter {
d4cce5f1
NIS
1880#ifndef USE_THREADS
1881#include "thrdvar.h"
1882#endif
1883#include "intrpvar.h"
49f531da 1884};
d4cce5f1 1885
79072805 1886#else
49f531da
NIS
1887struct interpreter {
1888 char broiled;
1889};
79072805
LW
1890#endif
1891
d4cce5f1
NIS
1892#ifdef USE_THREADS
1893/* If we have threads define a struct with all the variables
1894 * that have to be per-thread
49f531da 1895 */
8023c3ce 1896
79072805 1897
49f531da 1898struct perl_thread {
49f531da 1899#include "thrdvar.h"
79072805 1900};
d4cce5f1 1901
22fae026
TM
1902typedef struct perl_thread *Thread;
1903
1904#else
1905typedef void *Thread;
22239a37
NIS
1906#endif
1907
1908/* Done with PERLVAR macros for now ... */
d4cce5f1
NIS
1909#undef PERLVAR
1910#undef PERLVARI
3fe35a81 1911#undef PERLVARIC
79072805 1912
22239a37 1913#include "thread.h"
79072805 1914#include "pp.h"
79072805
LW
1915#include "proto.h"
1916
a0d0e21e
LW
1917#ifdef EMBED
1918#define Perl_sv_setptrobj(rv,ptr,name) Perl_sv_setref_iv(rv,name,(IV)ptr)
1919#define Perl_sv_setptrref(rv,ptr) Perl_sv_setref_iv(rv,Nullch,(IV)ptr)
1920#else
1921#define sv_setptrobj(rv,ptr,name) sv_setref_iv(rv,name,(IV)ptr)
1922#define sv_setptrref(rv,ptr) sv_setref_iv(rv,Nullch,(IV)ptr)
1923#endif
1924
d4cce5f1
NIS
1925/* The following must follow proto.h as #defines mess up syntax */
1926
1927#include "embedvar.h"
1928
1929/* Now include all the 'global' variables
1930 * If we don't have threads or multiple interpreters
1931 * these include variables that would have been their struct-s
1932 */
1933
1934#define PERLVAR(var,type) EXT type var;
1935#define PERLVARI(var,type,init) EXT type var INIT(init);
3fe35a81 1936#define PERLVARIC(var,type,init) EXTCONST type var INIT(init);
d4cce5f1 1937
22239a37 1938#ifndef PERL_GLOBAL_STRUCT
d4cce5f1 1939#include "perlvars.h"
22239a37 1940#endif
d4cce5f1
NIS
1941
1942#ifndef MULTIPLICITY
d4cce5f1
NIS
1943
1944#ifndef USE_THREADS
1945#include "thrdvar.h"
1946#endif
1947
22239a37
NIS
1948#include "intrpvar.h"
1949#endif
1950
76e3520e 1951#ifdef PERL_OBJECT
76e3520e
GS
1952};
1953
1954#include "objpp.h"
1955#ifdef DOINIT
1956#include "INTERN.h"
1957#else
1958#include "EXTERN.h"
1959#endif
1960#endif /* PERL_OBJECT */
1961
22239a37 1962
d4cce5f1
NIS
1963#undef PERLVAR
1964#undef PERLVARI
0f3f18a6 1965#undef PERLVARIC
79072805 1966
a835ef8a
NIS
1967#if defined(HASATTRIBUTE) && defined(WIN32)
1968/*
1969 * This provides a layer of functions and macros to ensure extensions will
1970 * get to use the same RTL functions as the core.
1971 * It has to go here or #define of printf messes up __attribute__
1972 * stuff in proto.h
1973 */
76e3520e 1974#ifndef PERL_OBJECT
a835ef8a 1975# include <win32iop.h>
76e3520e 1976#endif /* PERL_OBJECT */
a835ef8a
NIS
1977#endif /* WIN32 */
1978
79072805 1979#ifdef DOINIT
bbce6d69 1980
4633a7c4 1981EXT MGVTBL vtbl_sv = {magic_get,
463ee0b2
LW
1982 magic_set,
1983 magic_len,
1984 0, 0};
fb73857a 1985EXT MGVTBL vtbl_env = {0, magic_set_all_env,
1986 0, magic_clear_all_env,
66b1d557 1987 0};
4633a7c4 1988EXT MGVTBL vtbl_envelem = {0, magic_setenv,
85e6fe83
LW
1989 0, magic_clearenv,
1990 0};
4633a7c4 1991EXT MGVTBL vtbl_sig = {0, 0, 0, 0, 0};
0c30d9ec 1992EXT MGVTBL vtbl_sigelem = {magic_getsig,
1993 magic_setsig,
1994 0, magic_clearsig,
1995 0};
93965878 1996EXT MGVTBL vtbl_pack = {0, 0, magic_sizepack, magic_wipepack,
a0d0e21e 1997 0};
4633a7c4 1998EXT MGVTBL vtbl_packelem = {magic_getpack,
463ee0b2
LW
1999 magic_setpack,
2000 0, magic_clearpack,
2001 0};
4633a7c4 2002EXT MGVTBL vtbl_dbline = {0, magic_setdbline,
463ee0b2 2003 0, 0, 0};
4633a7c4 2004EXT MGVTBL vtbl_isa = {0, magic_setisa,
fb73857a 2005 0, magic_setisa,
2006 0};
4633a7c4 2007EXT MGVTBL vtbl_isaelem = {0, magic_setisa,
463ee0b2 2008 0, 0, 0};
4633a7c4 2009EXT MGVTBL vtbl_arylen = {magic_getarylen,
463ee0b2
LW
2010 magic_setarylen,
2011 0, 0, 0};
4633a7c4 2012EXT MGVTBL vtbl_glob = {magic_getglob,
463ee0b2
LW
2013 magic_setglob,
2014 0, 0, 0};
4633a7c4 2015EXT MGVTBL vtbl_mglob = {0, magic_setmglob,
463ee0b2 2016 0, 0, 0};
6ff81951
GS
2017EXT MGVTBL vtbl_nkeys = {magic_getnkeys,
2018 magic_setnkeys,
99abf803 2019 0, 0, 0};
4633a7c4 2020EXT MGVTBL vtbl_taint = {magic_gettaint,magic_settaint,
463ee0b2 2021 0, 0, 0};
6ff81951 2022EXT MGVTBL vtbl_substr = {magic_getsubstr, magic_setsubstr,
463ee0b2 2023 0, 0, 0};
6ff81951
GS
2024EXT MGVTBL vtbl_vec = {magic_getvec,
2025 magic_setvec,
463ee0b2 2026 0, 0, 0};
4633a7c4 2027EXT MGVTBL vtbl_pos = {magic_getpos,
a0d0e21e
LW
2028 magic_setpos,
2029 0, 0, 0};
4633a7c4 2030EXT MGVTBL vtbl_bm = {0, magic_setbm,
463ee0b2 2031 0, 0, 0};
55497cff 2032EXT MGVTBL vtbl_fm = {0, magic_setfm,
2033 0, 0, 0};
4633a7c4 2034EXT MGVTBL vtbl_uvar = {magic_getuvar,
463ee0b2
LW
2035 magic_setuvar,
2036 0, 0, 0};
f93b4edd
MB
2037#ifdef USE_THREADS
2038EXT MGVTBL vtbl_mutex = {0, 0, 0, 0, magic_mutexfree};
2039#endif /* USE_THREADS */
68dc0745 2040EXT MGVTBL vtbl_defelem = {magic_getdefelem,magic_setdefelem,
2041 0, 0, magic_freedefelem};
a0d0e21e 2042
c277df42
IZ
2043EXT MGVTBL vtbl_regexp = {0,0,0,0, magic_freeregexp};
2044
36477c24 2045#ifdef USE_LOCALE_COLLATE
bbce6d69 2046EXT MGVTBL vtbl_collxfrm = {0,
2047 magic_setcollxfrm,
2048 0, 0, 0};
2049#endif
a0d0e21e
LW
2050
2051#ifdef OVERLOAD
4633a7c4 2052EXT MGVTBL vtbl_amagic = {0, magic_setamagic,
748a9306 2053 0, 0, magic_setamagic};
4633a7c4 2054EXT MGVTBL vtbl_amagicelem = {0, magic_setamagic,
748a9306 2055 0, 0, magic_setamagic};
a0d0e21e
LW
2056#endif /* OVERLOAD */
2057
bbce6d69 2058#else /* !DOINIT */
2059
79072805
LW
2060EXT MGVTBL vtbl_sv;
2061EXT MGVTBL vtbl_env;
2062EXT MGVTBL vtbl_envelem;
2063EXT MGVTBL vtbl_sig;
2064EXT MGVTBL vtbl_sigelem;
463ee0b2
LW
2065EXT MGVTBL vtbl_pack;
2066EXT MGVTBL vtbl_packelem;
79072805 2067EXT MGVTBL vtbl_dbline;
463ee0b2
LW
2068EXT MGVTBL vtbl_isa;
2069EXT MGVTBL vtbl_isaelem;
79072805
LW
2070EXT MGVTBL vtbl_arylen;
2071EXT MGVTBL vtbl_glob;
93a17b20 2072EXT MGVTBL vtbl_mglob;
99abf803 2073EXT MGVTBL vtbl_nkeys;
463ee0b2 2074EXT MGVTBL vtbl_taint;
79072805
LW
2075EXT MGVTBL vtbl_substr;
2076EXT MGVTBL vtbl_vec;
a0d0e21e 2077EXT MGVTBL vtbl_pos;
79072805 2078EXT MGVTBL vtbl_bm;
55497cff 2079EXT MGVTBL vtbl_fm;
79072805 2080EXT MGVTBL vtbl_uvar;
a0d0e21e 2081
f93b4edd
MB
2082#ifdef USE_THREADS
2083EXT MGVTBL vtbl_mutex;
2084#endif /* USE_THREADS */
2085
68dc0745 2086EXT MGVTBL vtbl_defelem;
c277df42 2087EXT MGVTBL vtbl_regexp;
a0d0e21e 2088
36477c24 2089#ifdef USE_LOCALE_COLLATE
bbce6d69 2090EXT MGVTBL vtbl_collxfrm;
2091#endif
a0d0e21e
LW
2092
2093#ifdef OVERLOAD
2094EXT MGVTBL vtbl_amagic;
2095EXT MGVTBL vtbl_amagicelem;
2096#endif /* OVERLOAD */
2097
bbce6d69 2098#endif /* !DOINIT */
85e6fe83 2099
a0d0e21e 2100#ifdef OVERLOAD
c0315cdf 2101
a6006777 2102#define NofAMmeth 58
a0d0e21e 2103#ifdef DOINIT
a6006777 2104EXTCONST char * AMG_names[NofAMmeth] = {
2105 "fallback", "abs", /* "fallback" should be the first. */
2106 "bool", "nomethod",
2107 "\"\"", "0+",
2108 "+", "+=",
2109 "-", "-=",
2110 "*", "*=",
2111 "/", "/=",
2112 "%", "%=",
2113 "**", "**=",
2114 "<<", "<<=",
2115 ">>", ">>=",
2116 "&", "&=",
2117 "|", "|=",
2118 "^", "^=",
2119 "<", "<=",
2120 ">", ">=",
2121 "==", "!=",
2122 "<=>", "cmp",
2123 "lt", "le",
2124 "gt", "ge",
2125 "eq", "ne",
2126 "!", "~",
2127 "++", "--",
2128 "atan2", "cos",
2129 "sin", "exp",
2130 "log", "sqrt",
2131 "x", "x=",
2132 ".", ".=",
2133 "=", "neg"
a0d0e21e
LW
2134};
2135#else
a6006777 2136EXTCONST char * AMG_names[NofAMmeth];
a0d0e21e
LW
2137#endif /* def INITAMAGIC */
2138
a6006777 2139struct am_table {
a0d0e21e
LW
2140 long was_ok_sub;
2141 long was_ok_am;
a6006777 2142 U32 flags;
2143 CV* table[NofAMmeth];
a0d0e21e
LW
2144 long fallback;
2145};
a6006777 2146struct am_table_short {
2147 long was_ok_sub;
2148 long was_ok_am;
2149 U32 flags;
2150};
a0d0e21e 2151typedef struct am_table AMT;
a6006777 2152typedef struct am_table_short AMTS;
a0d0e21e
LW
2153
2154#define AMGfallNEVER 1
2155#define AMGfallNO 2
2156#define AMGfallYES 3
2157
a6006777 2158#define AMTf_AMAGIC 1
2159#define AMT_AMAGIC(amt) ((amt)->flags & AMTf_AMAGIC)
2160#define AMT_AMAGIC_on(amt) ((amt)->flags |= AMTf_AMAGIC)
2161#define AMT_AMAGIC_off(amt) ((amt)->flags &= ~AMTf_AMAGIC)
2162
a0d0e21e
LW
2163enum {
2164 fallback_amg, abs_amg,
2165 bool__amg, nomethod_amg,
2166 string_amg, numer_amg,
2167 add_amg, add_ass_amg,
2168 subtr_amg, subtr_ass_amg,
2169 mult_amg, mult_ass_amg,
2170 div_amg, div_ass_amg,
76e3520e 2171 modulo_amg, modulo_ass_amg,
a0d0e21e
LW
2172 pow_amg, pow_ass_amg,
2173 lshift_amg, lshift_ass_amg,
2174 rshift_amg, rshift_ass_amg,
748a9306
LW
2175 band_amg, band_ass_amg,
2176 bor_amg, bor_ass_amg,
2177 bxor_amg, bxor_ass_amg,
a0d0e21e
LW
2178 lt_amg, le_amg,
2179 gt_amg, ge_amg,
2180 eq_amg, ne_amg,
2181 ncmp_amg, scmp_amg,
2182 slt_amg, sle_amg,
2183 sgt_amg, sge_amg,
2184 seq_amg, sne_amg,
a0d0e21e
LW
2185 not_amg, compl_amg,
2186 inc_amg, dec_amg,
2187 atan2_amg, cos_amg,
2188 sin_amg, exp_amg,
2189 log_amg, sqrt_amg,
2190 repeat_amg, repeat_ass_amg,
748a9306
LW
2191 concat_amg, concat_ass_amg,
2192 copy_amg, neg_amg
a0d0e21e 2193};
c0315cdf
JH
2194
2195/*
2196 * some compilers like to redefine cos et alia as faster
2197 * (and less accurate?) versions called F_cos et cetera (Quidquid
2198 * latine dictum sit, altum viditur.) This trick collides with
2199 * the Perl overloading (amg). The following #defines fool both.
2200 */
2201
2202#ifdef _FASTMATH
2203# ifdef atan2
2204# define F_atan2_amg atan2_amg
2205# endif
2206# ifdef cos
2207# define F_cos_amg cos_amg
2208# endif
2209# ifdef exp
2210# define F_exp_amg exp_amg
2211# endif
2212# ifdef log
2213# define F_log_amg log_amg
2214# endif
2215# ifdef pow
2216# define F_pow_amg pow_amg
2217# endif
2218# ifdef sin
2219# define F_sin_amg sin_amg
2220# endif
2221# ifdef sqrt
2222# define F_sqrt_amg sqrt_amg
2223# endif
2224#endif /* _FASTMATH */
2225
a0d0e21e
LW
2226#endif /* OVERLOAD */
2227
491527d0 2228#define PERLDB_ALL 0x3f /* No _NONAME, _GOTO */
84902520
TB
2229#define PERLDBf_SUB 0x01 /* Debug sub enter/exit. */
2230#define PERLDBf_LINE 0x02 /* Keep line #. */
2231#define PERLDBf_NOOPT 0x04 /* Switch off optimizations. */
2232#define PERLDBf_INTER 0x08 /* Preserve more data for
2233 later inspections. */
2234#define PERLDBf_SUBLINE 0x10 /* Keep subr source lines. */
2235#define PERLDBf_SINGLE 0x20 /* Start with single-step on. */
491527d0
GS
2236#define PERLDBf_NONAME 0x40 /* For _SUB: no name of the subr. */
2237#define PERLDBf_GOTO 0x80 /* Report goto: call DB::goto. */
84902520
TB
2238
2239#define PERLDB_SUB (perldb && (perldb & PERLDBf_SUB))
2240#define PERLDB_LINE (perldb && (perldb & PERLDBf_LINE))
2241#define PERLDB_NOOPT (perldb && (perldb & PERLDBf_NOOPT))
2242#define PERLDB_INTER (perldb && (perldb & PERLDBf_INTER))
2243#define PERLDB_SUBLINE (perldb && (perldb & PERLDBf_SUBLINE))
2244#define PERLDB_SINGLE (perldb && (perldb & PERLDBf_SINGLE))
491527d0
GS
2245#define PERLDB_SUB_NN (perldb && (perldb & (PERLDBf_NONAME)))
2246#define PERLDB_GOTO (perldb && (perldb & PERLDBf_GOTO))
84902520 2247
bbce6d69 2248
36477c24 2249#ifdef USE_LOCALE_NUMERIC
bbce6d69 2250
36477c24 2251#define SET_NUMERIC_STANDARD() \
2252 STMT_START { \
2253 if (! numeric_standard) \
2254 perl_set_numeric_standard(); \
2255 } STMT_END
2256
2257#define SET_NUMERIC_LOCAL() \
2258 STMT_START { \
2259 if (! numeric_local) \
2260 perl_set_numeric_local(); \
2261 } STMT_END
bbce6d69 2262
36477c24 2263#else /* !USE_LOCALE_NUMERIC */
bbce6d69 2264
36477c24 2265#define SET_NUMERIC_STANDARD() /**/
2266#define SET_NUMERIC_LOCAL() /**/
bbce6d69 2267
36477c24 2268#endif /* !USE_LOCALE_NUMERIC */
a0d0e21e 2269
e5c9fcd0 2270#if !defined(PERLIO_IS_STDIO) && defined(HASATTRIBUTE)
760ac839
LW
2271/*
2272 * Now we have __attribute__ out of the way
2273 * Remap printf
2274 */
2275#define printf PerlIO_stdoutf
2276#endif
2277
a868473f
NIS
2278#ifndef PERL_SCRIPT_MODE
2279#define PERL_SCRIPT_MODE "r"
2280#endif
2281
fba3b22e
MB
2282/*
2283 * nice_chunk and nice_chunk size need to be set
2284 * and queried under the protection of sv_mutex
2285 */
2286#define offer_nice_chunk(chunk, chunk_size) do { \
940cb80d 2287 LOCK_SV_MUTEX; \
fba3b22e
MB
2288 if (!nice_chunk) { \
2289 nice_chunk = (char*)(chunk); \
2290 nice_chunk_size = (chunk_size); \
2291 } \
fc80cf79
GS
2292 else { \
2293 Safefree(chunk); \
2294 } \
940cb80d 2295 UNLOCK_SV_MUTEX; \
fba3b22e
MB
2296 } while (0)
2297
bd89102f
AD
2298#ifdef HAS_SEM
2299# include <sys/ipc.h>
2300# include <sys/sem.h>
2301# ifndef HAS_UNION_SEMUN /* Provide the union semun. */
2302 union semun {
2303 int val;
2304 struct semid_ds *buf;
2305 unsigned short *array;
2306 };
2307# endif
2308# ifdef USE_SEMCTL_SEMUN
2309# define Semctl(id, num, cmd, semun) semctl(id, num, cmd, semun)
2310# else
2311# ifdef USE_SEMCTL_SEMID_DS
2312# define Semctl(id, num, cmd, semun) semctl(id, num, cmd, semun.buf)
2313# endif
2314# endif
2315# ifndef Semctl /* Place our bets on the semun horse. */
2316# define Semctl(id, num, cmd, semun) semctl(id, num, cmd, semun)
2317# endif
2318#endif
49f531da 2319
85e6fe83 2320#endif /* Include guard */