diff options
Diffstat (limited to 'pp_proto.h')
-rw-r--r-- | pp_proto.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/pp_proto.h b/pp_proto.h index f919313ed1..17241d38ea 100644 --- a/pp_proto.h +++ b/pp_proto.h @@ -293,4 +293,9 @@ PERL_CALLCONV OP *Perl_pp_warn(pTHX); PERL_CALLCONV OP *Perl_pp_xor(pTHX); PERL_CALLCONV OP *Perl_unimplemented_op(pTHX); +/* alternative functions */ +#if defined(__GLIBC__) && IVSIZE == 8 && ( __GLIBC__ < 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ < 8)) +PERL_CALLCONV OP *Perl_pp_i_modulo_glibc_bugfix(pTHX); +#endif + /* ex: set ro: */ |