diff options
author | Father Chrysostomos <sprout@cpan.org> | 2012-08-18 12:58:38 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2012-08-21 16:38:35 -0700 |
commit | 541377b1bd73cdee43dd47958251827cfdc59320 (patch) | |
tree | f41b9042edd1e71110e72d7568da6c560db3a3d7 /perl.h | |
parent | 75e16a44f58a9b54834e043a988a36289179c4ab (diff) | |
download | perl-541377b1bd73cdee43dd47958251827cfdc59320.tar.gz |
Static inline functions for SvPADTMP and SvPADSTALE
This allows non-GCC compilers to have assertions and avoids
repeating the macros.
Diffstat (limited to 'perl.h')
-rw-r--r-- | perl.h | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -5083,9 +5083,6 @@ END_EXTERN_C #undef PERLVARI #undef PERLVARIC -/* Static inline functions that depend on headers included above */ -#include "inline.h" - START_EXTERN_C /* dummy variables that hold pointers to both runops functions, thus forcing @@ -5153,6 +5150,8 @@ EXTCONST bool PL_valid_types_NV_set[]; #endif +/* Static inline funcs that depend on includes and declarations above */ +#include "inline.h" #include "overload.h" |