summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2010-06-13 12:12:43 +0200
committerNicholas Clark <nick@ccl4.org>2010-06-13 12:12:43 +0200
commitbc0c81caab3813b2d61b70f94e5075bbf3a3ef69 (patch)
tree5acf0fb020c6a82c1dc2a5b9296104c3608c1795 /proto.h
parentebc1fde647268c1d49a6096baf6ca8a708363f5b (diff)
downloadperl-bc0c81caab3813b2d61b70f94e5075bbf3a3ef69.tar.gz
Change S_tied_handle_method() to varargs to allow extra SV parameters.
This enables "BINMODE", "EOF" and "SYSSEEK" to use it.
Diffstat (limited to 'proto.h')
-rw-r--r--proto.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/proto.h b/proto.h
index 2721faccfa..714b3c9d8c 100644
--- a/proto.h
+++ b/proto.h
@@ -5350,7 +5350,7 @@ STATIC SV * S_space_join_names_mortal(pTHX_ char *const *array)
#define PERL_ARGS_ASSERT_SPACE_JOIN_NAMES_MORTAL \
assert(array)
-STATIC OP * S_tied_handle_method(pTHX_ const char *const methname, SV **sp, IO *const io, MAGIC *const mg)
+STATIC OP * S_tied_handle_method(pTHX_ const char *const methname, SV **sp, IO *const io, MAGIC *const mg, unsigned int argc, ...)
__attribute__nonnull__(pTHX_1)
__attribute__nonnull__(pTHX_2)
__attribute__nonnull__(pTHX_3)