summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2011-08-24 23:15:17 -0700
committerFather Chrysostomos <sprout@cpan.org>2011-08-24 23:15:17 -0700
commite92f843df4fffff9b210a84828d09e0af4499cd2 (patch)
tree638336469f0f59df61600470e1b32153e499bc3a /proto.h
parent0c9ebd17aa42014b9f4412c8a0077a694d8112da (diff)
downloadperl-e92f843df4fffff9b210a84828d09e0af4499cd2.tar.gz
Revert "Test CORE::break’s prototype"
This reverts commit e52d58aa5bea245b66786b4c9029e849a2be69d3. I don’t quite know how I managed it, but I really screw up this time! Two completely unrelated commits ended up getting merged into one, so, to avoid confusion down the road, I’m reverting it, only to reapply it shortly....
Diffstat (limited to 'proto.h')
-rw-r--r--proto.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/proto.h b/proto.h
index 73a322db2d..7784a7a30e 100644
--- a/proto.h
+++ b/proto.h
@@ -5513,17 +5513,17 @@ STATIC const char* S_gv_ename(pTHX_ GV *gv)
#define PERL_ARGS_ASSERT_GV_ENAME \
assert(gv)
-STATIC void S_inplace_aassign(pTHX_ OP* o)
- __attribute__nonnull__(pTHX_1);
-#define PERL_ARGS_ASSERT_INPLACE_AASSIGN \
- assert(o)
-
STATIC bool S_is_handle_constructor(const OP *o, I32 numargs)
__attribute__warn_unused_result__
__attribute__nonnull__(1);
#define PERL_ARGS_ASSERT_IS_HANDLE_CONSTRUCTOR \
assert(o)
+STATIC OP* S_is_inplace_av(pTHX_ OP* o, OP* oright)
+ __attribute__nonnull__(pTHX_1);
+#define PERL_ARGS_ASSERT_IS_INPLACE_AV \
+ assert(o)
+
STATIC I32 S_is_list_assignment(pTHX_ const OP *o)
__attribute__warn_unused_result__;