diff options
author | Nicholas Clark <nick@ccl4.org> | 2011-01-08 13:49:21 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2011-01-09 12:22:53 +0000 |
commit | 60504e186da3226f64f36cdc4c9e700993e6f372 (patch) | |
tree | afca9944b071e6a828748364167bac09e7be41b2 /pp_proto.h | |
parent | 6f3ed33686edc657dce73f7b5a70e096a40970aa (diff) | |
download | perl-60504e186da3226f64f36cdc4c9e700993e6f372.tar.gz |
Rename pp_send to pp_syswrite, making send an alias for syswrite.
Previously syswrite was an alias for send. However, syswrite is always
available, whereas send is not implemented if HAS_SOCKET is not defined.
Diffstat (limited to 'pp_proto.h')
-rw-r--r-- | pp_proto.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pp_proto.h b/pp_proto.h index dfba483de0..41f03e0a4f 100644 --- a/pp_proto.h +++ b/pp_proto.h @@ -216,7 +216,6 @@ PERL_CALLCONV OP *Perl_pp_seekdir(pTHX); PERL_CALLCONV OP *Perl_pp_select(pTHX); PERL_CALLCONV OP *Perl_pp_semctl(pTHX); PERL_CALLCONV OP *Perl_pp_semget(pTHX); -PERL_CALLCONV OP *Perl_pp_send(pTHX); PERL_CALLCONV OP *Perl_pp_seq(pTHX); PERL_CALLCONV OP *Perl_pp_setpgrp(pTHX); PERL_CALLCONV OP *Perl_pp_setpriority(pTHX); @@ -257,6 +256,7 @@ PERL_CALLCONV OP *Perl_pp_sysopen(pTHX); PERL_CALLCONV OP *Perl_pp_sysread(pTHX); PERL_CALLCONV OP *Perl_pp_sysseek(pTHX); PERL_CALLCONV OP *Perl_pp_system(pTHX); +PERL_CALLCONV OP *Perl_pp_syswrite(pTHX); PERL_CALLCONV OP *Perl_pp_tell(pTHX); PERL_CALLCONV OP *Perl_pp_telldir(pTHX); PERL_CALLCONV OP *Perl_pp_tie(pTHX); |