-
package Devel::PPPort;
=head1 NAME
dTHXa
dTHXoa
ERRSV
+ get_av
+ get_cv
+ get_hv
+ get_sv
gv_stashpvn(str,len,flags)
INT2PTR(type,int)
IVdf
use strict;
use vars qw( $VERSION @ISA @EXPORT @EXPORT_OK $data );
-$VERSION = "2.0002";
+$VERSION = "2.003";
@ISA = qw(Exporter DynaLoader);
@EXPORT = qw();
}
#endif
+#ifndef get_cv
+# define get_cv(name,create) perl_get_cv(name,create)
+#endif
+
+#ifndef get_sv
+# define get_sv(name,create) perl_get_sv(name,create)
+#endif
+
+#ifndef get_av
+# define get_av(name,create) perl_get_av(name,create)
+#endif
+
+#ifndef get_hv
+# define get_hv(name,create) perl_get_hv(name,create)
+#endif
+
#endif /* _P_P_PORTABILITY_H_ */
/* End of File ppport.h */