diff options
author | Nicholas Clark <nick@ccl4.org> | 2010-06-13 12:12:43 +0200 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2010-06-13 12:12:43 +0200 |
commit | bc0c81caab3813b2d61b70f94e5075bbf3a3ef69 (patch) | |
tree | 5acf0fb020c6a82c1dc2a5b9296104c3608c1795 /proto.h | |
parent | ebc1fde647268c1d49a6096baf6ca8a708363f5b (diff) | |
download | perl-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.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |