diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2003-07-04 08:33:32 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2003-07-04 08:33:32 +0000 |
commit | b089116590f5bd8ca52e6ccd2a029c8fc0abb2ae (patch) | |
tree | c5cf380d0ab303e0cb6686a1027ab9005ff019d6 /os2 | |
parent | 228cf569ab8135ec43daadaff1c31143a0539e1e (diff) | |
download | perl-b089116590f5bd8ca52e6ccd2a029c8fc0abb2ae.tar.gz |
Remove PL_earlytaint since the hash seed code
can be delayed until perl_parse().
p4raw-id: //depot/perl@19979
Diffstat (limited to 'os2')
-rw-r--r-- | os2/os2ish.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/os2/os2ish.h b/os2/os2ish.h index 45e80b5208..225d271236 100644 --- a/os2/os2ish.h +++ b/os2/os2ish.h @@ -218,7 +218,6 @@ void Perl_OS2_term(void **excH, int exitstatus, int flags); # define PERL_SYS_INIT3(argcp, argvp, envp) \ { void *xreg[2]; \ - EARLY_INIT3(argcp, argvp, envp) \ MALLOC_CHECK_TAINT(*argcp, *argvp, *envp) \ _response(argcp, argvp); \ _wildcard(argcp, argvp); \ @@ -226,7 +225,6 @@ void Perl_OS2_term(void **excH, int exitstatus, int flags); # define PERL_SYS_INIT(argcp, argvp) { \ { void *xreg[2]; \ - EARLY_INIT2(argcp, argvp) \ _response(argcp, argvp); \ _wildcard(argcp, argvp); \ Perl_OS2_init3(NULL, xreg, 0) @@ -235,11 +233,9 @@ void Perl_OS2_term(void **excH, int exitstatus, int flags); # define PERL_SYS_INIT3(argcp, argvp, envp) \ { void *xreg[2]; \ - EARLY_INIT3(argcp, argvp, envp) \ Perl_OS2_init3(*envp, xreg, 0) # define PERL_SYS_INIT(argcp, argvp) { \ { void *xreg[2]; \ - EARLY_INIT2(argcp, argvp) \ Perl_OS2_init3(NULL, xreg, 0) #endif |