summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorSteve Hay <SteveHay@planit.com>2008-02-13 12:05:49 +0000
committerSteve Hay <SteveHay@planit.com>2008-02-13 12:05:49 +0000
commit16bf6295de74199eccc4e88487e3c499c94de5d3 (patch)
treea3082942534e0da5b35475ddd428c784dd051cfd /proto.h
parent6ba536972b10525e985c307bc39be08fad8ed272 (diff)
downloadperl-16bf6295de74199eccc4e88487e3c499c94de5d3.tar.gz
Correct another variable name in embed.fnc
(Fixes my DEBUGGING builds on Win32) p4raw-id: //depot/perl@33298
Diffstat (limited to 'proto.h')
-rw-r--r--proto.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/proto.h b/proto.h
index e62bc6a765..86beec75e5 100644
--- a/proto.h
+++ b/proto.h
@@ -19,7 +19,7 @@
START_EXTERN_C
#if defined(PERL_IMPLICIT_SYS)
-PERL_CALLCONV PerlInterpreter* perl_alloc_using(struct IPerlMem *ipM, struct IPerlMem *ipMS, struct IPerlMem *ipMP, struct IPerlEnv *ipE, struct IPerlStdIO *ipStd, struct IPerlLIO *ipLio, struct IPerlDir *ipD, struct IPerlSock *ipS, struct IPerlProc *ipP)
+PERL_CALLCONV PerlInterpreter* perl_alloc_using(struct IPerlMem *ipM, struct IPerlMem *ipMS, struct IPerlMem *ipMP, struct IPerlEnv *ipE, struct IPerlStdIO *ipStd, struct IPerlLIO *ipLIO, struct IPerlDir *ipD, struct IPerlSock *ipS, struct IPerlProc *ipP)
__attribute__nonnull__(1)
__attribute__nonnull__(2)
__attribute__nonnull__(3)
@@ -30,7 +30,7 @@ PERL_CALLCONV PerlInterpreter* perl_alloc_using(struct IPerlMem *ipM, struct IPe
__attribute__nonnull__(8)
__attribute__nonnull__(9);
#define PERL_ARGS_ASSERT_PERL_ALLOC_USING \
- assert(ipM); assert(ipMS); assert(ipMP); assert(ipE); assert(ipStd); assert(ipLio); assert(ipD); assert(ipS); assert(ipP)
+ assert(ipM); assert(ipMS); assert(ipMP); assert(ipE); assert(ipStd); assert(ipLIO); assert(ipD); assert(ipS); assert(ipP)
#endif
PERL_CALLCONV PerlInterpreter* perl_alloc(void);