diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2003-05-21 19:56:38 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2003-05-21 19:56:38 +0000 |
commit | 7925835c4310c3d10b784fcb09926648dc49c600 (patch) | |
tree | cbeacd74ae43b38ba10213c471bdad1ef5494bed /proto.h | |
parent | cebd85e6fca2f450b0cc02ffa6ad2fdfdf763f59 (diff) | |
download | perl-7925835c4310c3d10b784fcb09926648dc49c600.tar.gz |
Introduce a new preprocessor symbol, PERL_DISABLE_PMC, to
disable the loading of .pmc files if defined.
Rename the function S_doopen_pmc to S_doopen_pm.
p4raw-id: //depot/perl@19586
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1127,7 +1127,7 @@ STATIC I32 S_dopoptosub(pTHX_ I32 startingblock); STATIC I32 S_dopoptosub_at(pTHX_ PERL_CONTEXT* cxstk, I32 startingblock); STATIC void S_save_lines(pTHX_ AV *array, SV *sv); STATIC OP* S_doeval(pTHX_ int gimme, OP** startop, CV* outside, U32 seq); -STATIC PerlIO * S_doopen_pmc(pTHX_ const char *name, const char *mode); +STATIC PerlIO * S_doopen_pm(pTHX_ const char *name, const char *mode); STATIC bool S_path_is_absolute(pTHX_ char *name); #endif |