diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-06-02 16:48:26 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-06-02 16:48:26 +0000 |
commit | 8fa7f3676ed75809365905727fbae97dc8767f29 (patch) | |
tree | 2c626750a9a8493a188833eb82d96b24e79fa03f /ext/POSIX/POSIX.xs | |
parent | a126002e7fdcd66f0996dbe9b5b1c2d7960cf31b (diff) | |
download | perl-8fa7f3676ed75809365905727fbae97dc8767f29.tar.gz |
-Wall cleanup continues.
p4raw-id: //depot/perl@10392
Diffstat (limited to 'ext/POSIX/POSIX.xs')
-rw-r--r-- | ext/POSIX/POSIX.xs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/ext/POSIX/POSIX.xs b/ext/POSIX/POSIX.xs index 842131e115..f079b7b257 100644 --- a/ext/POSIX/POSIX.xs +++ b/ext/POSIX/POSIX.xs @@ -3181,7 +3181,6 @@ sigaction(sig, optaction, oldaction = 0) PL_sig_name[sig], strlen(PL_sig_name[sig]), TRUE); - STRLEN n_a; /* Check optaction and set action */ if(SvTRUE(optaction)) { @@ -3740,7 +3739,6 @@ getcwd() #ifdef HAS_GETCWD char * buf; int buflen = 128; - int i; New(0, buf, buflen, char); /* Many getcwd()s know how to automatically allocate memory |