This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
newCONSTSUB added (XSUB equivalent for inlinable sub () { 123 }).
[perl5.git] / perlenv.h
1 #ifndef H_PERLENV
2 #define H_PERLENV 1
3
4 #ifdef PERL_OBJECT
5 #else
6 #define PerlEnv_putenv(str) putenv((str))
7 #define PerlEnv_getenv(str) getenv((str))
8 #endif  /* PERL_OBJECT */
9
10 #endif /* Include guard */