preproc: expand_mmac_param_range() should be static

expand_mmac_params_range() lost its "static" in checkin
e99a946390. Put it back.

Signed-off-by: H. Peter Anvin (Intel) <hpa@zytor.com>
This commit is contained in:
H. Peter Anvin (Intel) 2020-06-30 17:33:39 -07:00
parent 8877a3ddb0
commit c0d0f88261

View File

@ -4835,7 +4835,7 @@ static int mmac_rotate(const MMacro *mac, unsigned int n)
/*
* expands to a list of tokens from %{x:y}
*/
void expand_mmac_params_range(MMacro *mac, Token *tline, Token ***tail)
static void expand_mmac_params_range(MMacro *mac, Token *tline, Token ***tail)
{
Token *t;
const char *arg = tok_text(tline) + 1;