summaryrefslogtreecommitdiff
path: root/av.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2005-05-22 22:03:19 +0000
committerNicholas Clark <nick@ccl4.org>2005-05-22 22:03:19 +0000
commit102d3b8a62934b6c124acd38fad140f94f743df1 (patch)
treeff247747c009493c6143eaf7cc86c1c4ea151ba1 /av.h
parent4b09a709cacc8926b531523da1d1511f3a87dcb2 (diff)
downloadperl-102d3b8a62934b6c124acd38fad140f94f743df1.tar.gz
Re-order IVX slot in SV bodies
p4raw-id: //depot/perl@24542
Diffstat (limited to 'av.h')
-rw-r--r--av.h14
1 files changed, 12 insertions, 2 deletions
diff --git a/av.h b/av.h
index 486bc5cce3..f9721d93fb 100644
--- a/av.h
+++ b/av.h
@@ -1,7 +1,7 @@
/* av.h
*
* Copyright (C) 1991, 1992, 1993, 1995, 1996, 1997, 1998, 1999,
- * 2000, 2001, 2002, by Larry Wall and others
+ * 2000, 2001, 2002, 2005, by Larry Wall and others
*
* You may distribute under the terms of either the GNU General Public
* License or the Artistic License, as specified in the README file.
@@ -9,9 +9,9 @@
*/
struct xpvav {
+ IV this_space;
SSize_t xav_fill; /* Index of last element present */
SSize_t xav_max; /* max index for which array has space */
- IV this_space;
union {
NV xnvu_nv;
struct {
@@ -86,3 +86,13 @@ Same as C<av_len()>. Deprecated, use C<av_len()> instead.
? mg_size((SV *) av) : AvFILLp(av))
#define NEGATIVE_INDICES_VAR "NEGATIVE_INDICES"
+
+/*
+ * Local variables:
+ * c-indentation-style: bsd
+ * c-basic-offset: 4
+ * indent-tabs-mode: t
+ * End:
+ *
+ * ex: set ts=8 sts=4 sw=4 noet:
+ */