diff options
author | Adrian M. Enache <enache@rdslink.ro> | 2003-09-02 06:45:11 +0300 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2003-09-02 14:40:54 +0000 |
commit | c7e45529067e5669196da1c88cb491070e8fe1ea (patch) | |
tree | e2d19bd7f4154ce402b79c558b1704046860e3f1 /embed.h | |
parent | 1d2654e1d58ad544e6568f317af5402a9dbaff80 (diff) | |
download | perl-c7e45529067e5669196da1c88cb491070e8fe1ea.tar.gz |
Re: ByteLoader and MSWin32
Message-ID: <20030902004511.GA1442@ratsnest.hole>
p4raw-id: //depot/perl@20993
Diffstat (limited to 'embed.h')
-rw-r--r-- | embed.h | 20 |
1 files changed, 6 insertions, 14 deletions
@@ -1387,14 +1387,10 @@ #ifdef PERL_CORE #define apply_attrs_my S_apply_attrs_my #endif -# if defined(PL_OP_SLAB_ALLOC) -#ifdef PERL_CORE -#define Slab_Alloc S_Slab_Alloc -#endif -#ifdef PERL_CORE -#define Slab_Free S_Slab_Free #endif -# endif +#if defined(PL_OP_SLAB_ALLOC) +#define Slab_Alloc Perl_Slab_Alloc +#define Slab_Free Perl_Slab_Free #endif #if defined(PERL_IN_PERL_C) || defined(PERL_DECL_PROT) #ifdef PERL_CORE @@ -3873,14 +3869,10 @@ #ifdef PERL_CORE #define apply_attrs_my(a,b,c,d) S_apply_attrs_my(aTHX_ a,b,c,d) #endif -# if defined(PL_OP_SLAB_ALLOC) -#ifdef PERL_CORE -#define Slab_Alloc(a,b) S_Slab_Alloc(aTHX_ a,b) -#endif -#ifdef PERL_CORE -#define Slab_Free(a) S_Slab_Free(aTHX_ a) #endif -# endif +#if defined(PL_OP_SLAB_ALLOC) +#define Slab_Alloc(a,b) Perl_Slab_Alloc(aTHX_ a,b) +#define Slab_Free(a) Perl_Slab_Free(aTHX_ a) #endif #if defined(PERL_IN_PERL_C) || defined(PERL_DECL_PROT) #ifdef PERL_CORE |