Subject: | Could you add PERLIO_FUNCS_DECL and PERLIO_FUNCS_CAST to ppport.h? |
From v5.8.7 on, perliol.h has PERLIO_FUNCS_DECL and PERLIO_FUNCS_DECL
macros. Could you add these macros to ppport.h ?
#ifndef PERLIO_FUNCS_DECL
#ifdef PERLIO_FUNCS_CONST
#define PERLIO_FUNCS_DECL(funcs) const PerlIO_funcs funcs
#define PERLIO_FUNCS_CAST(funcs) (PerlIO_funcs*)(funcs)
#else
#define PERLIO_FUNCS_DECL(funcs) PerlIO_funcs funcs
#define PERLIO_FUNCS_CAST(funcs) (funcs)
#endif
#endif /* PERLIO_FUNCS_DECL */
--
Goro Fuji (GFUJI at CPAN.org)