summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorSteve Hay <SteveHay@planit.com>2008-02-13 12:27:56 +0000
committerSteve Hay <SteveHay@planit.com>2008-02-13 12:27:56 +0000
commita3e405b265335c7002fb234702f4c800f4a9accb (patch)
tree0ba31c0939a1b3954c1e4ed57fa061d7d02a710a /proto.h
parent589df73be52bdf2b31fafebfe4ce5149122a5c09 (diff)
downloadperl-a3e405b265335c7002fb234702f4c800f4a9accb.tar.gz
pp_system explicitly passes NULL to do_aspawn, so NULL must be "OK"
*Now* my Win32 DEBUGGING build works :-) p4raw-id: //depot/perl@33300
Diffstat (limited to 'proto.h')
-rw-r--r--proto.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/proto.h b/proto.h
index cd6aac5fc3..7b2d14b6b5 100644
--- a/proto.h
+++ b/proto.h
@@ -584,11 +584,10 @@ PERL_CALLCONV bool Perl_do_exec(pTHX_ const char* cmd)
#if defined(WIN32) || defined(__SYMBIAN32__)
PERL_CALLCONV int Perl_do_aspawn(pTHX_ SV* really, SV** mark, SV** sp)
- __attribute__nonnull__(pTHX_1)
__attribute__nonnull__(pTHX_2)
__attribute__nonnull__(pTHX_3);
#define PERL_ARGS_ASSERT_DO_ASPAWN \
- assert(really); assert(mark); assert(sp)
+ assert(mark); assert(sp)
PERL_CALLCONV int Perl_do_spawn(pTHX_ char* cmd)
__attribute__nonnull__(pTHX_1);