diff options
author | Nicholas Clark <nick@ccl4.org> | 2006-10-21 23:01:45 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2006-10-21 23:01:45 +0000 |
commit | ac5a684e91b96c66e134bedef4a18360ad57a796 (patch) | |
tree | 0e6e2a945fd32067064b3b48883ed44ebfcbfac3 /vms | |
parent | d0ade26cf1fee91934267b3f3efb9fd9fbf4ecfe (diff) | |
download | perl-ac5a684e91b96c66e134bedef4a18360ad57a796.tar.gz |
Add PERLIO_INIT and PERLIO_TERM to PERL_SYS_INIT* and PERL_SYS_TERM*
in */*ish.h headers.
p4raw-id: //depot/perl@29077
Diffstat (limited to 'vms')
-rw-r--r-- | vms/vmsish.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vms/vmsish.h b/vms/vmsish.h index 243277b385..328da311bb 100644 --- a/vms/vmsish.h +++ b/vms/vmsish.h @@ -397,8 +397,8 @@ struct interp_intern { #else #define BIT_BUCKET "/dev/null" #endif -#define PERL_SYS_INIT(c,v) MALLOC_CHECK_TAINT2(*c,*v) vms_image_init((c),(v)); MALLOC_INIT -#define PERL_SYS_TERM() HINTS_REFCNT_TERM; OP_REFCNT_TERM; MALLOC_TERM +#define PERL_SYS_INIT(c,v) MALLOC_CHECK_TAINT2(*c,*v) vms_image_init((c),(v)); PERLIO_INIT; MALLOC_INIT +#define PERL_SYS_TERM() HINTS_REFCNT_TERM; OP_REFCNT_TERM; PERLIO_TERM; MALLOC_TERM #define dXSUB_SYS #define HAS_KILL #define HAS_WAIT |