summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2008-02-10 14:56:53 +0000
committerNicholas Clark <nick@ccl4.org>2008-02-10 14:56:53 +0000
commit734c24512411de658d57d0d7ed5cef5e1bf5af87 (patch)
treea3ae31b178c56b732a3a2504c363f31b7481ad56 /proto.h
parentbcabcc50f85300b3fbf720ece84c2fd14bd909ed (diff)
downloadperl-734c24512411de658d57d0d7ed5cef5e1bf5af87.tar.gz
Two parameter names missing in embed.fnc
p4raw-id: //depot/perl@33270
Diffstat (limited to 'proto.h')
-rw-r--r--proto.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/proto.h b/proto.h
index 35e8ae2493..9ca95ae5c5 100644
--- a/proto.h
+++ b/proto.h
@@ -2663,7 +2663,7 @@ PERL_CALLCONV int Perl_yyerror(pTHX_ const char *const s)
PERL_CALLCONV int Perl_yylex(pTHX);
PERL_CALLCONV int Perl_yyparse(pTHX);
-PERL_CALLCONV void Perl_parser_free(pTHX_ const yy_parser *)
+PERL_CALLCONV void Perl_parser_free(pTHX_ const yy_parser *parser)
__attribute__nonnull__(pTHX_1);
PERL_CALLCONV int Perl_yywarn(pTHX_ const char *const s)
@@ -3689,7 +3689,7 @@ STATIC STRLEN S_reguni(pTHX_ const struct RExC_state_t *state, UV uv, char *s)
STATIC regnode* S_regclass(pTHX_ struct RExC_state_t *state, U32 depth)
__attribute__nonnull__(pTHX_1);
-STATIC I32 S_regcurly(const char *)
+STATIC I32 S_regcurly(const char *s)
__attribute__warn_unused_result__
__attribute__nonnull__(1);