diff options
author | Nicholas Clark <nick@ccl4.org> | 2008-11-26 23:35:59 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2008-11-26 23:35:59 +0000 |
commit | af41e527c8e130b652c27870cfc5eef3f1e00711 (patch) | |
tree | e6c97219cde79854b571262b7b0b50b4dfffe16c | |
parent | 051b305ded17acbcebcc33237adf2a68c22c2001 (diff) | |
download | perl-af41e527c8e130b652c27870cfc5eef3f1e00711.tar.gz |
ywarn() is actually only used inside toke.c, so it can be static.
p4raw-id: //depot/perl@34941
-rw-r--r-- | embed.fnc | 4 | ||||
-rw-r--r-- | embed.h | 12 | ||||
-rw-r--r-- | proto.h | 4 | ||||
-rw-r--r-- | toke.c | 4 |
4 files changed, 18 insertions, 6 deletions
@@ -1054,7 +1054,9 @@ p |int |yyerror |NN const char *const s EXp |int |yylex p |int |yyparse p |void |parser_free |NN const yy_parser *parser -p |int |yywarn |NN const char *const s +#if defined(PERL_IN_TOKE_C) || defined(PERL_DECL_PROT) +s |int |yywarn |NN const char *const s +#endif #if defined(MYMALLOC) Ap |void |dump_mstats |NN const char* s Ap |int |get_mstats |NN perl_mstats_t *buf|int buflen|int level @@ -1050,7 +1050,11 @@ #ifdef PERL_CORE #define yyparse Perl_yyparse #define parser_free Perl_parser_free -#define yywarn Perl_yywarn +#endif +#if defined(PERL_IN_TOKE_C) || defined(PERL_DECL_PROT) +#ifdef PERL_CORE +#define yywarn S_yywarn +#endif #endif #if defined(MYMALLOC) #define dump_mstats Perl_dump_mstats @@ -3393,7 +3397,11 @@ #ifdef PERL_CORE #define yyparse() Perl_yyparse(aTHX) #define parser_free(a) Perl_parser_free(aTHX_ a) -#define yywarn(a) Perl_yywarn(aTHX_ a) +#endif +#if defined(PERL_IN_TOKE_C) || defined(PERL_DECL_PROT) +#ifdef PERL_CORE +#define yywarn(a) S_yywarn(aTHX_ a) +#endif #endif #if defined(MYMALLOC) #define dump_mstats(a) Perl_dump_mstats(aTHX_ a) @@ -3733,11 +3733,13 @@ PERL_CALLCONV void Perl_parser_free(pTHX_ const yy_parser *parser) #define PERL_ARGS_ASSERT_PARSER_FREE \ assert(parser) -PERL_CALLCONV int Perl_yywarn(pTHX_ const char *const s) +#if defined(PERL_IN_TOKE_C) || defined(PERL_DECL_PROT) +STATIC int S_yywarn(pTHX_ const char *const s) __attribute__nonnull__(pTHX_1); #define PERL_ARGS_ASSERT_YYWARN \ assert(s) +#endif #if defined(MYMALLOC) PERL_CALLCONV void Perl_dump_mstats(pTHX_ const char* s) __attribute__nonnull__(pTHX_1); @@ -12575,8 +12575,8 @@ Perl_start_subparse(pTHX_ I32 is_format, U32 flags) #ifdef __SC__ #pragma segment Perl_yylex #endif -int -Perl_yywarn(pTHX_ const char *const s) +static int +S_yywarn(pTHX_ const char *const s) { dVAR; |