summaryrefslogtreecommitdiffstats
path: root/hl/src/H5LTanalyze.l
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2021-05-07 17:56:07 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2021-05-07 17:56:07 (GMT)
commit7f58a89578b64df2b040d97294cb1cf2a82bebd3 (patch)
treede9971f9f1537a23e2ab59fa1ad4c2631164d20e /hl/src/H5LTanalyze.l
parent79b92df2a262c09eb7461c5bbd9500209573653b (diff)
downloadhdf5-7f58a89578b64df2b040d97294cb1cf2a82bebd3.zip
hdf5-7f58a89578b64df2b040d97294cb1cf2a82bebd3.tar.gz
hdf5-7f58a89578b64df2b040d97294cb1cf2a82bebd3.tar.bz2
Misc normalization from develop
Diffstat (limited to 'hl/src/H5LTanalyze.l')
-rw-r--r--hl/src/H5LTanalyze.l4
1 files changed, 2 insertions, 2 deletions
diff --git a/hl/src/H5LTanalyze.l b/hl/src/H5LTanalyze.l
index fd1cbe5..5006612 100644
--- a/hl/src/H5LTanalyze.l
+++ b/hl/src/H5LTanalyze.l
@@ -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;