mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
Made private my_yyinput function static (#618)
This prevents it being exported as a public symbol.
This commit is contained in:
parent
dbe7204085
commit
dc639bddb8
@ -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;
|
||||
|
||||
|
@ -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;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user