diff options
author | Nicholas Clark <nick@ccl4.org> | 2010-11-04 09:42:52 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2010-11-04 09:42:52 +0000 |
commit | 4bf035ef9384dfbe85a500502cc3866c87c59b26 (patch) | |
tree | 2960450fbda044e7547d3b1257abe11a284cd14e | |
parent | 88048be8050a116536a463b77f1c535e7d1656a6 (diff) | |
download | perl-4bf035ef9384dfbe85a500502cc3866c87c59b26.tar.gz |
Remove two use of dXSI32; superfluous because xsubpp automatically adds it.
-rw-r--r-- | ext/Hash-Util/Util.xs | 1 | ||||
-rw-r--r-- | ext/SDBM_File/SDBM_File.xs | 2 |
2 files changed, 0 insertions, 3 deletions
diff --git a/ext/Hash-Util/Util.xs b/ext/Hash-Util/Util.xs index d835edeb85..483db73514 100644 --- a/ext/Hash-Util/Util.xs +++ b/ext/Hash-Util/Util.xs @@ -31,7 +31,6 @@ hidden_ref_keys(hash) ALIAS: Hash::Util::legal_ref_keys = 1 PREINIT: - dXSI32; SV *key; HE *he; PPCODE: diff --git a/ext/SDBM_File/SDBM_File.xs b/ext/SDBM_File/SDBM_File.xs index 0c139fffa5..291e41bcd6 100644 --- a/ext/SDBM_File/SDBM_File.xs +++ b/ext/SDBM_File/SDBM_File.xs @@ -108,8 +108,6 @@ sdbm_error(db) SDBM_File db ALIAS: sdbm_clearerr = 1 - PREINIT: - dXSI32; CODE: RETVAL = ix ? sdbm_clearerr(db->dbp) : sdbm_error(db->dbp); OUTPUT: |