diff options
author | Steve Hay <SteveHay@planit.com> | 2008-02-13 12:27:56 +0000 |
---|---|---|
committer | Steve Hay <SteveHay@planit.com> | 2008-02-13 12:27:56 +0000 |
commit | a3e405b265335c7002fb234702f4c800f4a9accb (patch) | |
tree | 0ba31c0939a1b3954c1e4ed57fa061d7d02a710a /proto.h | |
parent | 589df73be52bdf2b31fafebfe4ce5149122a5c09 (diff) | |
download | perl-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.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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); |