in perl_clone() move common code outside ifdef/else blocks
authorDavid Mitchell <davem@iabyn.com>
Fri, 8 Jan 2010 19:30:14 +0000 (19:30 +0000)
committerDavid Mitchell <davem@iabyn.com>
Fri, 8 Jan 2010 19:30:14 +0000 (19:30 +0000)
commitb59cce4c9ab9c747c4b96a99d059821ace37a09a
treed76bf3aecb549fb6e3edd93a94f71c3c95110eec
parent742421a6d27bb72693477d2ace6f6c1fbb417709
in perl_clone() move common code outside ifdef/else blocks

e diff looks confusing, but basically it changes:

    #ifdef PERL_IMPLICIT_SYS
      ...
      COMMON_BLOCK
    #else
      ...
      COMMON_BLOCK
    #end

into
    #ifdef PERL_IMPLICIT_SYS
      ...
    #else
      ...
    #end
    COMMON_BLOCK
sv.c