This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Update the copyright years in the generated files, and nostdio.h
[perl5.git] / XSUB.h
CommitLineData
eb1102fc
NIS
1/* XSUB.h
2 *
4bb101f2 3 * Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999,
1d325971 4 * 2000, 2001, 2002, 2003, 2004, 2005 by Larry Wall and others
eb1102fc
NIS
5 *
6 * You may distribute under the terms of either the GNU General Public
7 * License or the Artistic License, as specified in the README file.
8 *
9 */
10
b4ba0ab9
GS
11#ifndef _INC_PERL_XSUB_H
12#define _INC_PERL_XSUB_H 1
13
954c1994
GS
14/* first, some documentation for xsubpp-generated items */
15
16/*
ccfc67b7
JH
17=head1 Variables created by C<xsubpp> and C<xsubpp> internal functions
18
954c1994
GS
19=for apidoc Amn|char*|CLASS
20Variable which is setup by C<xsubpp> to indicate the
21class name for a C++ XS constructor. This is always a C<char*>. See C<THIS>.
22
23=for apidoc Amn|(whatever)|RETVAL
24Variable which is setup by C<xsubpp> to hold the return value for an
25XSUB. This is always the proper type for the XSUB. See
26L<perlxs/"The RETVAL Variable">.
27
28=for apidoc Amn|(whatever)|THIS
29Variable which is setup by C<xsubpp> to designate the object in a C++
30XSUB. This is always the proper type for the C++ object. See C<CLASS> and
31L<perlxs/"Using XS With C++">.
32
9f2ea798
DM
33=for apidoc Amn|I32|ax
34Variable which is setup by C<xsubpp> to indicate the stack base offset,
35used by the C<ST>, C<XSprePUSH> and C<XSRETURN> macros. The C<dMARK> macro
36must be called prior to setup the C<MARK> variable.
37
954c1994
GS
38=for apidoc Amn|I32|items
39Variable which is setup by C<xsubpp> to indicate the number of
40items on the stack. See L<perlxs/"Variable-length Parameter Lists">.
41
42=for apidoc Amn|I32|ix
43Variable which is setup by C<xsubpp> to indicate which of an
44XSUB's aliases was used to invoke it. See L<perlxs/"The ALIAS: Keyword">.
45
46=for apidoc Am|SV*|ST|int ix
47Used to access elements on the XSUB's stack.
48
49=for apidoc AmU||XS
50Macro to declare an XSUB and its C parameter list. This is handled by
51C<xsubpp>.
52
9f2ea798
DM
53=for apidoc Ams||dAX
54Sets up the C<ax> variable.
55This is usually handled automatically by C<xsubpp> by calling C<dXSARGS>.
56
557b887a
SS
57=for apidoc Ams||dAXMARK
58Sets up the C<ax> variable and stack marker variable C<mark>.
59This is usually handled automatically by C<xsubpp> by calling C<dXSARGS>.
60
9f2ea798
DM
61=for apidoc Ams||dITEMS
62Sets up the C<items> variable.
63This is usually handled automatically by C<xsubpp> by calling C<dXSARGS>.
64
954c1994 65=for apidoc Ams||dXSARGS
9f2ea798
DM
66Sets up stack and mark pointers for an XSUB, calling dSP and dMARK.
67Sets up the C<ax> and C<items> variables by calling C<dAX> and C<dITEMS>.
68This is usually handled automatically by C<xsubpp>.
954c1994
GS
69
70=for apidoc Ams||dXSI32
71Sets up the C<ix> variable for an XSUB which has aliases. This is usually
72handled automatically by C<xsubpp>.
73
88037a85
RGS
74=for apidoc Ams||dUNDERBAR
75Sets up the C<padoff_du> variable for an XSUB that wishes to use
76C<UNDERBAR>.
77
78=for apidoc AmU||UNDERBAR
79The SV* corresponding to the $_ variable. Works even if there
80is a lexical $_ in scope.
81
954c1994
GS
82=cut
83*/
84
53c1dcc0 85#ifndef PERL_UNUSED_ARG
ad73156c
AL
86# ifdef lint
87# include <note.h>
53c1dcc0 88# define PERL_UNUSED_ARG(x) NOTE(ARGUNUSED(x))
ad73156c 89# else
53c1dcc0 90# define PERL_UNUSED_ARG(x) ((void)x)
ad73156c
AL
91# endif
92#endif
53c1dcc0
AL
93#ifndef PERL_UNUSED_VAR
94# define PERL_UNUSED_VAR(x) ((void)x)
95#endif
ad73156c 96
3280af22 97#define ST(off) PL_stack_base[ax + (off)]
a0d0e21e 98
27da23d5 99#undef XS
d308986b 100#if defined(__CYGWIN__) && defined(USE_DYNAMIC_LOADING)
acfe0abc 101# define XS(name) __declspec(dllexport) void name(pTHX_ CV* cv)
27da23d5 102#endif
a0fd4948 103#if defined(__SYMBIAN32__)
27da23d5
JH
104# define XS(name) EXPORT_C void name(pTHX_ CV* cv)
105#endif
106#ifndef XS
0dbb1585
AL
107# ifdef HASATTRIBUTE_UNUSED
108# define XS(name) void name(pTHX_ CV* cv __attribute__unused__)
88d01955
AL
109# else
110# define XS(name) void name(pTHX_ CV* cv)
111# endif
a0d0e21e
LW
112#endif
113
a3b680e6 114#define dAX const I32 ax = MARK - PL_stack_base + 1
9f2ea798 115
557b887a 116#define dAXMARK \
a3b680e6 117 I32 ax = POPMARK; \
92800dc8 118 register SV **mark = PL_stack_base + ax++
557b887a 119
9f2ea798
DM
120#define dITEMS I32 items = SP - MARK
121
53c1dcc0
AL
122#ifdef lint
123# define dXSARGS \
124 NOTE(ARGUNUSED(cv)) \
125 dSP; dAXMARK; dITEMS
126#else
127# define dXSARGS \
557b887a 128 dSP; dAXMARK; dITEMS
53c1dcc0 129#endif
a0d0e21e 130
a3b680e6 131#define dXSTARG SV * const targ = ((PL_op->op_private & OPpENTERSUB_HASTARG) \
8a7fc0dc
GS
132 ? PAD_SV(PL_op->op_targ) : sv_newmortal())
133
b26a54d0
GS
134/* Should be used before final PUSHi etc. if not in PPCODE section. */
135#define XSprePUSH (sp = PL_stack_base + ax - 1)
136
a0d0e21e
LW
137#define XSANY CvXSUBANY(cv)
138
139#define dXSI32 I32 ix = XSANY.any_i32
140
cfc02341
IZ
141#ifdef __cplusplus
142# define XSINTERFACE_CVT(ret,name) ret (*name)(...)
143#else
144# define XSINTERFACE_CVT(ret,name) ret (*name)()
145#endif
146#define dXSFUNCTION(ret) XSINTERFACE_CVT(ret,XSFUNCTION)
2554589c 147#define XSINTERFACE_FUNC(ret,cv,f) ((XSINTERFACE_CVT(ret,))(f))
cfc02341 148#define XSINTERFACE_FUNC_SET(cv,f) \
a12c3db7 149 CvXSUBANY(cv).any_dxptr = (void (*) (pTHX_ void*))(f)
cfc02341 150
8e64067c 151#define dUNDERBAR I32 padoff_du = find_rundefsvoffset()
88037a85
RGS
152#define UNDERBAR ((padoff_du == NOT_IN_PAD \
153 || PAD_COMPNAME_FLAGS(padoff_du) & SVpad_OUR) \
154 ? DEFSV : PAD_SVl(padoff_du))
155
748a9306
LW
156/* Simple macros to put new mortal values onto the stack. */
157/* Typically used to return values from XS functions. */
954c1994
GS
158
159/*
ccfc67b7
JH
160=head1 Stack Manipulation Macros
161
954c1994
GS
162=for apidoc Am|void|XST_mIV|int pos|IV iv
163Place an integer into the specified position C<pos> on the stack. The
164value is stored in a new mortal SV.
165
166=for apidoc Am|void|XST_mNV|int pos|NV nv
167Place a double into the specified position C<pos> on the stack. The value
168is stored in a new mortal SV.
169
170=for apidoc Am|void|XST_mPV|int pos|char* str
171Place a copy of a string into the specified position C<pos> on the stack.
172The value is stored in a new mortal SV.
173
174=for apidoc Am|void|XST_mNO|int pos
175Place C<&PL_sv_no> into the specified position C<pos> on the
176stack.
177
178=for apidoc Am|void|XST_mYES|int pos
179Place C<&PL_sv_yes> into the specified position C<pos> on the
180stack.
181
182=for apidoc Am|void|XST_mUNDEF|int pos
183Place C<&PL_sv_undef> into the specified position C<pos> on the
184stack.
185
186=for apidoc Am|void|XSRETURN|int nitems
187Return from XSUB, indicating number of items on the stack. This is usually
188handled by C<xsubpp>.
189
190=for apidoc Am|void|XSRETURN_IV|IV iv
191Return an integer from an XSUB immediately. Uses C<XST_mIV>.
192
108ccc45
JH
193=for apidoc Am|void|XSRETURN_UV|IV uv
194Return an integer from an XSUB immediately. Uses C<XST_mUV>.
195
954c1994 196=for apidoc Am|void|XSRETURN_NV|NV nv
d1be9408 197Return a double from an XSUB immediately. Uses C<XST_mNV>.
954c1994
GS
198
199=for apidoc Am|void|XSRETURN_PV|char* str
200Return a copy of a string from an XSUB immediately. Uses C<XST_mPV>.
201
202=for apidoc Ams||XSRETURN_NO
203Return C<&PL_sv_no> from an XSUB immediately. Uses C<XST_mNO>.
204
205=for apidoc Ams||XSRETURN_YES
206Return C<&PL_sv_yes> from an XSUB immediately. Uses C<XST_mYES>.
207
208=for apidoc Ams||XSRETURN_UNDEF
209Return C<&PL_sv_undef> from an XSUB immediately. Uses C<XST_mUNDEF>.
210
211=for apidoc Ams||XSRETURN_EMPTY
212Return an empty list from an XSUB immediately.
213
ccfc67b7
JH
214=head1 Variables created by C<xsubpp> and C<xsubpp> internal functions
215
c578083c 216=for apidoc AmU||newXSproto|char* name|XSUBADDR_t f|char* filename|const char *proto
954c1994
GS
217Used by C<xsubpp> to hook up XSUBs as Perl subs. Adds Perl prototypes to
218the subs.
219
220=for apidoc AmU||XS_VERSION
221The version identifier for an XS module. This is usually
222handled automatically by C<ExtUtils::MakeMaker>. See C<XS_VERSION_BOOTCHECK>.
223
224=for apidoc Ams||XS_VERSION_BOOTCHECK
225Macro to verify that a PM module's $VERSION variable matches the XS
226module's C<XS_VERSION> variable. This is usually handled automatically by
227C<xsubpp>. See L<perlxs/"The VERSIONCHECK: Keyword">.
228
0ca3a874
MHM
229=head1 Simple Exception Handling Macros
230
231=for apidoc Ams||dXCPT
2dfe1b17 232Set up necessary local variables for exception handling.
0ca3a874
MHM
233See L<perlguts/"Exception Handling">.
234
235=for apidoc AmU||XCPT_TRY_START
236Starts a try block. See L<perlguts/"Exception Handling">.
237
238=for apidoc AmU||XCPT_TRY_END
239Ends a try block. See L<perlguts/"Exception Handling">.
240
241=for apidoc AmU||XCPT_CATCH
242Introduces a catch block. See L<perlguts/"Exception Handling">.
243
244=for apidoc Ams||XCPT_RETHROW
245Rethrows a previously caught exception. See L<perlguts/"Exception Handling">.
246
954c1994
GS
247=cut
248*/
249
4633a7c4 250#define XST_mIV(i,v) (ST(i) = sv_2mortal(newSViv(v)) )
108ccc45 251#define XST_mUV(i,v) (ST(i) = sv_2mortal(newSVuv(v)) )
4633a7c4
LW
252#define XST_mNV(i,v) (ST(i) = sv_2mortal(newSVnv(v)) )
253#define XST_mPV(i,v) (ST(i) = sv_2mortal(newSVpv(v,0)))
79cb57f6 254#define XST_mPVN(i,v,n) (ST(i) = sv_2mortal(newSVpvn(v,n)))
3280af22
NIS
255#define XST_mNO(i) (ST(i) = &PL_sv_no )
256#define XST_mYES(i) (ST(i) = &PL_sv_yes )
257#define XST_mUNDEF(i) (ST(i) = &PL_sv_undef)
954c1994
GS
258
259#define XSRETURN(off) \
260 STMT_START { \
a02b2239
RGS
261 IV tmpXSoff = (off); \
262 PL_stack_sp = PL_stack_base + ax + (tmpXSoff - 1); \
954c1994
GS
263 return; \
264 } STMT_END
265
80b92232 266#define XSRETURN_IV(v) STMT_START { XST_mIV(0,v); XSRETURN(1); } STMT_END
108ccc45 267#define XSRETURN_UV(v) STMT_START { XST_mUV(0,v); XSRETURN(1); } STMT_END
80b92232 268#define XSRETURN_NV(v) STMT_START { XST_mNV(0,v); XSRETURN(1); } STMT_END
269#define XSRETURN_PV(v) STMT_START { XST_mPV(0,v); XSRETURN(1); } STMT_END
954c1994 270#define XSRETURN_PVN(v,n) STMT_START { XST_mPVN(0,v,n); XSRETURN(1); } STMT_END
80b92232 271#define XSRETURN_NO STMT_START { XST_mNO(0); XSRETURN(1); } STMT_END
272#define XSRETURN_YES STMT_START { XST_mYES(0); XSRETURN(1); } STMT_END
273#define XSRETURN_UNDEF STMT_START { XST_mUNDEF(0); XSRETURN(1); } STMT_END
274#define XSRETURN_EMPTY STMT_START { XSRETURN(0); } STMT_END
382b8d97 275
37120919 276#define newXSproto(a,b,c,d) sv_setpv((SV*)newXS(a,b,c), d)
720fb644 277
278#ifdef XS_VERSION
c6af7a1a 279# define XS_VERSION_BOOTCHECK \
774d564b 280 STMT_START { \
95fad918
NC
281 SV *_sv; \
282 const char *vn = Nullch, *module = SvPV_nolen_const(ST(0)); \
774d564b 283 if (items >= 2) /* version supplied as bootstrap arg */ \
3de3296f 284 _sv = ST(1); \
774d564b 285 else { \
46fc3d4c 286 /* XXX GV_ADDWARN */ \
3de3296f 287 _sv = get_sv(Perl_form(aTHX_ "%s::%s", module, \
864dbfa3 288 vn = "XS_VERSION"), FALSE); \
3de3296f
AE
289 if (!_sv || !SvOK(_sv)) \
290 _sv = get_sv(Perl_form(aTHX_ "%s::%s", module, \
864dbfa3 291 vn = "VERSION"), FALSE); \
774d564b 292 } \
639e8c3d
JP
293 if (_sv) { \
294 SV *xssv = Perl_newSVpvf(aTHX_ "%s",XS_VERSION); \
295 xssv = new_version(xssv); \
296 if ( !sv_derived_from(_sv, "version") ) \
297 _sv = new_version(_sv); \
298 if ( vcmp(_sv,xssv) ) \
014ead4b 299 Perl_croak(aTHX_ "%s object version %"SVf" does not match %s%s%s%s %"SVf,\
639e8c3d
JP
300 module, vstringify(xssv), \
301 vn ? "$" : "", vn ? module : "", vn ? "::" : "", \
302 vn ? vn : "bootstrap parameter", vstringify(_sv));\
303 } \
80b92232 304 } STMT_END
720fb644 305#else
c6af7a1a 306# define XS_VERSION_BOOTCHECK
720fb644 307#endif
76e3520e 308
9b5c3821
MHM
309#ifdef NO_XSLOCKS
310# define dXCPT dJMPENV; int rEtV = 0
311# define XCPT_TRY_START JMPENV_PUSH(rEtV); if (rEtV == 0)
312# define XCPT_TRY_END JMPENV_POP;
313# define XCPT_CATCH if (rEtV != 0)
314# define XCPT_RETHROW JMPENV_JUMP(rEtV)
315#endif
0ca3a874 316
6a31061a
PM
317/*
318 The DBM_setFilter & DBM_ckFilter macros are only used by
319 the *DB*_File modules
320*/
321
322#define DBM_setFilter(db_type,code) \
891c2e08 323 STMT_START { \
6a31061a
PM
324 if (db_type) \
325 RETVAL = sv_mortalcopy(db_type) ; \
326 ST(0) = RETVAL ; \
327 if (db_type && (code == &PL_sv_undef)) { \
328 SvREFCNT_dec(db_type) ; \
329 db_type = NULL ; \
330 } \
331 else if (code) { \
332 if (db_type) \
333 sv_setsv(db_type, code) ; \
334 else \
335 db_type = newSVsv(code) ; \
336 } \
891c2e08 337 } STMT_END
6a31061a
PM
338
339#define DBM_ckFilter(arg,type,name) \
891c2e08 340 STMT_START { \
6a31061a
PM
341 if (db->type) { \
342 if (db->filtering) { \
343 croak("recursion detected in %s", name) ; \
344 } \
345 ENTER ; \
346 SAVETMPS ; \
347 SAVEINT(db->filtering) ; \
348 db->filtering = TRUE ; \
349 SAVESPTR(DEFSV) ; \
5bbd4290
PM
350 if (name[7] == 's') \
351 arg = newSVsv(arg); \
6a31061a
PM
352 DEFSV = arg ; \
353 SvTEMP_off(arg) ; \
354 PUSHMARK(SP) ; \
355 PUTBACK ; \
356 (void) perl_call_sv(db->type, G_DISCARD); \
357 SPAGAIN ; \
358 PUTBACK ; \
359 FREETMPS ; \
360 LEAVE ; \
5bbd4290
PM
361 if (name[7] == 's'){ \
362 arg = sv_2mortal(arg); \
363 } \
364 SvOKp(arg); \
891c2e08 365 } } STMT_END
6a31061a 366
51371543 367#if 1 /* for compatibility */
dc9e4912
GS
368# define VTBL_sv &PL_vtbl_sv
369# define VTBL_env &PL_vtbl_env
370# define VTBL_envelem &PL_vtbl_envelem
371# define VTBL_sig &PL_vtbl_sig
372# define VTBL_sigelem &PL_vtbl_sigelem
373# define VTBL_pack &PL_vtbl_pack
374# define VTBL_packelem &PL_vtbl_packelem
375# define VTBL_dbline &PL_vtbl_dbline
376# define VTBL_isa &PL_vtbl_isa
377# define VTBL_isaelem &PL_vtbl_isaelem
378# define VTBL_arylen &PL_vtbl_arylen
379# define VTBL_glob &PL_vtbl_glob
380# define VTBL_mglob &PL_vtbl_mglob
381# define VTBL_nkeys &PL_vtbl_nkeys
382# define VTBL_taint &PL_vtbl_taint
383# define VTBL_substr &PL_vtbl_substr
384# define VTBL_vec &PL_vtbl_vec
385# define VTBL_pos &PL_vtbl_pos
386# define VTBL_bm &PL_vtbl_bm
387# define VTBL_fm &PL_vtbl_fm
388# define VTBL_uvar &PL_vtbl_uvar
389# define VTBL_defelem &PL_vtbl_defelem
390# define VTBL_regexp &PL_vtbl_regexp
391# define VTBL_regdata &PL_vtbl_regdata
392# define VTBL_regdatum &PL_vtbl_regdatum
393# ifdef USE_LOCALE_COLLATE
394# define VTBL_collxfrm &PL_vtbl_collxfrm
395# endif
9e7bc3e8
JD
396# define VTBL_amagic &PL_vtbl_amagic
397# define VTBL_amagicelem &PL_vtbl_amagicelem
dc9e4912
GS
398#endif
399
6f4183fe 400#include "perlapi.h"
c6af7a1a 401
e8ee3774 402#if defined(PERL_IMPLICIT_CONTEXT) && !defined(PERL_NO_GET_CONTEXT) && !defined(PERL_CORE)
c5be433b
GS
403# undef aTHX
404# undef aTHX_
54aff467
GS
405# define aTHX PERL_GET_THX
406# define aTHX_ aTHX,
54aff467
GS
407#endif
408
acfe0abc 409#if defined(PERL_IMPLICIT_SYS) && !defined(PERL_CORE)
c6af7a1a 410# ifndef NO_XSLOCKS
2986a63f
JH
411# if defined (NETWARE) && defined (USE_STDIO)
412# define times PerlProc_times
413# define setuid PerlProc_setuid
414# define setgid PerlProc_setgid
415# define getpid PerlProc_getpid
416# define pause PerlProc_pause
417# define exit PerlProc_exit
418# define _exit PerlProc__exit
419# else
c6af7a1a
GS
420# undef closedir
421# undef opendir
422# undef stdin
423# undef stdout
424# undef stderr
425# undef feof
426# undef ferror
427# undef fgetpos
428# undef ioctl
429# undef getlogin
430# undef setjmp
431# undef getc
432# undef ungetc
433# undef fileno
434
cb69f87a 435/* Following symbols were giving redefinition errors while building extensions - sgp 17th Oct 2000 */
2986a63f
JH
436#ifdef NETWARE
437# undef readdir
438# undef fstat
439# undef stat
440# undef longjmp
441# undef endhostent
442# undef endnetent
443# undef endprotoent
444# undef endservent
445# undef gethostbyaddr
446# undef gethostbyname
447# undef gethostent
448# undef getnetbyaddr
449# undef getnetbyname
450# undef getnetent
451# undef getprotobyname
452# undef getprotobynumber
453# undef getprotoent
454# undef getservbyname
455# undef getservbyport
456# undef getservent
457# undef inet_ntoa
458# undef sethostent
459# undef setnetent
460# undef setprotoent
461# undef setservent
462#endif /* NETWARE */
463
1018e26f
NIS
464# undef socketpair
465
c6af7a1a
GS
466# define mkdir PerlDir_mkdir
467# define chdir PerlDir_chdir
468# define rmdir PerlDir_rmdir
469# define closedir PerlDir_close
470# define opendir PerlDir_open
471# define readdir PerlDir_read
472# define rewinddir PerlDir_rewind
473# define seekdir PerlDir_seek
474# define telldir PerlDir_tell
475# define putenv PerlEnv_putenv
476# define getenv PerlEnv_getenv
b2af26b1 477# define uname PerlEnv_uname
197357d0
GS
478# define stdin PerlSIO_stdin
479# define stdout PerlSIO_stdout
480# define stderr PerlSIO_stderr
f9415d23
NIS
481# define fopen PerlSIO_fopen
482# define fclose PerlSIO_fclose
483# define feof PerlSIO_feof
484# define ferror PerlSIO_ferror
b6d726d6 485# define clearerr PerlSIO_clearerr
f9415d23
NIS
486# define getc PerlSIO_getc
487# define fputc PerlSIO_fputc
488# define fputs PerlSIO_fputs
489# define fflush PerlSIO_fflush
490# define ungetc PerlSIO_ungetc
491# define fileno PerlSIO_fileno
492# define fdopen PerlSIO_fdopen
493# define freopen PerlSIO_freopen
494# define fread PerlSIO_fread
495# define fwrite PerlSIO_fwrite
22a46b6e
NIS
496# define setbuf PerlSIO_setbuf
497# define setvbuf PerlSIO_setvbuf
498# define setlinebuf PerlSIO_setlinebuf
1f59ddd9
GS
499# define stdoutf PerlSIO_stdoutf
500# define vfprintf PerlSIO_vprintf
f9415d23
NIS
501# define ftell PerlSIO_ftell
502# define fseek PerlSIO_fseek
503# define fgetpos PerlSIO_fgetpos
504# define fsetpos PerlSIO_fsetpos
505# define frewind PerlSIO_rewind
506# define tmpfile PerlSIO_tmpfile
c6af7a1a
GS
507# define access PerlLIO_access
508# define chmod PerlLIO_chmod
509# define chsize PerlLIO_chsize
510# define close PerlLIO_close
511# define dup PerlLIO_dup
512# define dup2 PerlLIO_dup2
513# define flock PerlLIO_flock
514# define fstat PerlLIO_fstat
515# define ioctl PerlLIO_ioctl
516# define isatty PerlLIO_isatty
6b980173 517# define link PerlLIO_link
c6af7a1a
GS
518# define lseek PerlLIO_lseek
519# define lstat PerlLIO_lstat
520# define mktemp PerlLIO_mktemp
521# define open PerlLIO_open
522# define read PerlLIO_read
523# define rename PerlLIO_rename
524# define setmode PerlLIO_setmode
4f49e16e 525# define stat(buf,sb) PerlLIO_stat(buf,sb)
c6af7a1a
GS
526# define tmpnam PerlLIO_tmpnam
527# define umask PerlLIO_umask
528# define unlink PerlLIO_unlink
529# define utime PerlLIO_utime
530# define write PerlLIO_write
531# define malloc PerlMem_malloc
532# define realloc PerlMem_realloc
533# define free PerlMem_free
534# define abort PerlProc_abort
535# define exit PerlProc_exit
536# define _exit PerlProc__exit
537# define execl PerlProc_execl
538# define execv PerlProc_execv
539# define execvp PerlProc_execvp
540# define getuid PerlProc_getuid
541# define geteuid PerlProc_geteuid
542# define getgid PerlProc_getgid
543# define getegid PerlProc_getegid
544# define getlogin PerlProc_getlogin
545# define kill PerlProc_kill
546# define killpg PerlProc_killpg
547# define pause PerlProc_pause
548# define popen PerlProc_popen
549# define pclose PerlProc_pclose
550# define pipe PerlProc_pipe
551# define setuid PerlProc_setuid
552# define setgid PerlProc_setgid
553# define sleep PerlProc_sleep
554# define times PerlProc_times
555# define wait PerlProc_wait
556# define setjmp PerlProc_setjmp
557# define longjmp PerlProc_longjmp
558# define signal PerlProc_signal
7766f137 559# define getpid PerlProc_getpid
57ab3dfe 560# define gettimeofday PerlProc_gettimeofday
c6af7a1a
GS
561# define htonl PerlSock_htonl
562# define htons PerlSock_htons
563# define ntohl PerlSock_ntohl
564# define ntohs PerlSock_ntohs
565# define accept PerlSock_accept
566# define bind PerlSock_bind
567# define connect PerlSock_connect
568# define endhostent PerlSock_endhostent
569# define endnetent PerlSock_endnetent
570# define endprotoent PerlSock_endprotoent
571# define endservent PerlSock_endservent
572# define gethostbyaddr PerlSock_gethostbyaddr
573# define gethostbyname PerlSock_gethostbyname
574# define gethostent PerlSock_gethostent
575# define gethostname PerlSock_gethostname
576# define getnetbyaddr PerlSock_getnetbyaddr
577# define getnetbyname PerlSock_getnetbyname
578# define getnetent PerlSock_getnetent
579# define getpeername PerlSock_getpeername
580# define getprotobyname PerlSock_getprotobyname
581# define getprotobynumber PerlSock_getprotobynumber
582# define getprotoent PerlSock_getprotoent
583# define getservbyname PerlSock_getservbyname
584# define getservbyport PerlSock_getservbyport
585# define getservent PerlSock_getservent
586# define getsockname PerlSock_getsockname
587# define getsockopt PerlSock_getsockopt
588# define inet_addr PerlSock_inet_addr
589# define inet_ntoa PerlSock_inet_ntoa
590# define listen PerlSock_listen
591# define recv PerlSock_recv
592# define recvfrom PerlSock_recvfrom
593# define select PerlSock_select
594# define send PerlSock_send
595# define sendto PerlSock_sendto
596# define sethostent PerlSock_sethostent
597# define setnetent PerlSock_setnetent
598# define setprotoent PerlSock_setprotoent
599# define setservent PerlSock_setservent
600# define setsockopt PerlSock_setsockopt
601# define shutdown PerlSock_shutdown
602# define socket PerlSock_socket
603# define socketpair PerlSock_socketpair
2986a63f 604# endif /* NETWARE && USE_STDIO */
21c5e947
JH
605
606# ifdef USE_SOCKETS_AS_HANDLES
607# undef fd_set
608# undef FD_SET
609# undef FD_CLR
610# undef FD_ISSET
611# undef FD_ZERO
612# define fd_set Perl_fd_set
613# define FD_SET(n,p) PERL_FD_SET(n,p)
614# define FD_CLR(n,p) PERL_FD_CLR(n,p)
615# define FD_ISSET(n,p) PERL_FD_ISSET(n,p)
616# define FD_ZERO(p) PERL_FD_ZERO(p)
617# endif /* USE_SOCKETS_AS_HANDLES */
618
c6af7a1a 619# endif /* NO_XSLOCKS */
acfe0abc 620#endif /* PERL_IMPLICIT_SYS && !PERL_CORE */
b4ba0ab9 621
cfeeb022 622#endif /* _INC_PERL_XSUB_H */ /* include guard */
ad73156c
AL
623
624/*
625 * Local variables:
626 * c-indentation-style: bsd
627 * c-basic-offset: 4
628 * indent-tabs-mode: t
629 * End:
630 *
631 * ex: set ts=8 sts=4 sw=4 noet:
632 */