Made private my_yyinput function static (#618)

This prevents it being exported as a public symbol.
This commit is contained in:
Sean McBride 2021-05-04 16:56:33 -04:00 committed by GitHub
parent dbe7204085
commit dc639bddb8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -916,7 +916,7 @@ char *yytext;
#include "H5LTparse.h"
static char *trim_quotes(const char *);
int my_yyinput(char *, int);
static int my_yyinput(char *, int);
#undef YY_INPUT
#define YY_INPUT(b, r, ms) (r=my_yyinput(b, ms))
#define token(x) (int)x
@ -2554,7 +2554,7 @@ trim_quotes(const char *quoted)
return trimmed;
}
int my_yyinput(char *buf, int max_size)
static int my_yyinput(char *buf, int max_size)
{
int ret;

View File

@ -27,7 +27,7 @@
#include "H5LTparse.h"
static char *trim_quotes(const char *);
int my_yyinput(char *, int);
static int my_yyinput(char *, int);
#undef YY_INPUT
#define YY_INPUT(b, r, ms) (r=my_yyinput(b, ms))
#define token(x) (int)x
@ -144,7 +144,7 @@ trim_quotes(const char *quoted)
return trimmed;
}
int my_yyinput(char *buf, int max_size)
static int my_yyinput(char *buf, int max_size)
{
int ret;