diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-11-14 19:46:25 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-11-14 19:46:25 +0000 |
commit | 5f7fde29e6223390b222de18e00bc300ef0fa8c9 (patch) | |
tree | aae0b3153b18136477311e5ffe1d3477adfb3207 /perl.h | |
parent | 4265b575712fd23c947cb9e96cb5215190d6fae8 (diff) | |
download | perl-5f7fde29e6223390b222de18e00bc300ef0fa8c9.tar.gz |
cosmetic tweaks
p4raw-id: //depot/perl@4584
Diffstat (limited to 'perl.h')
-rw-r--r-- | perl.h | 20 |
1 files changed, 10 insertions, 10 deletions
@@ -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) |