summaryrefslogtreecommitdiff
path: root/perl.h
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1999-11-14 19:46:25 +0000
committerGurusamy Sarathy <gsar@cpan.org>1999-11-14 19:46:25 +0000
commit5f7fde29e6223390b222de18e00bc300ef0fa8c9 (patch)
treeaae0b3153b18136477311e5ffe1d3477adfb3207 /perl.h
parent4265b575712fd23c947cb9e96cb5215190d6fae8 (diff)
downloadperl-5f7fde29e6223390b222de18e00bc300ef0fa8c9.tar.gz
cosmetic tweaks
p4raw-id: //depot/perl@4584
Diffstat (limited to 'perl.h')
-rw-r--r--perl.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/perl.h b/perl.h
index 3bcc032537..b3ea9fb8db 100644
--- a/perl.h
+++ b/perl.h
@@ -1322,8 +1322,8 @@ typedef struct xpvfm XPVFM;
typedef struct xpvio XPVIO;
typedef struct mgvtbl MGVTBL;
typedef union any ANY;
-typedef struct svtblent SVTBLENT;
-typedef struct svtbl SVTBL;
+typedef struct ptr_tbl_ent PTR_TBL_ENT_t;
+typedef struct ptr_tbl PTR_TBL_t;
#include "handy.h"
@@ -1754,16 +1754,16 @@ struct scan_data_t; /* Used in S_* functions in regcomp.c */
typedef I32 CHECKPOINT;
-struct svtblent {
- struct svtblent* next;
- SV* oldval;
- SV* newval;
+struct ptr_tbl_ent {
+ struct ptr_tbl_ent* next;
+ void* oldval;
+ void* newval;
};
-struct svtbl {
- struct svtblent** tbl_ary;
- UV tbl_max;
- UV tbl_items;
+struct ptr_tbl {
+ struct ptr_tbl_ent** tbl_ary;
+ UV tbl_max;
+ UV tbl_items;
};
#if defined(iAPX286) || defined(M_I286) || defined(I80286)