summaryrefslogtreecommitdiff
path: root/src/lex.l
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2013-07-31 22:54:01 -0700
committerAlan Coopersmith <alan.coopersmith@oracle.com>2013-07-31 22:54:01 -0700
commitce4e11143f982234be1076e384b31228f1cc84ae (patch)
treeaf718100e164c7f87ea7412d453aedf33162b591 /src/lex.l
parent8a3d3a58350506a99efd24f9856466a99bbb9c51 (diff)
Make more functions static that aren't called from other files
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'src/lex.l')
-rw-r--r--src/lex.l2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lex.l b/src/lex.l
index 6f0f627..f880673 100644
--- a/src/lex.l
+++ b/src/lex.l
@@ -72,7 +72,7 @@ int yylineno;
#undef YY_INPUT
#define YY_INPUT(buf,result,size) ((result) = doinput((buf),(size)))
-int doinput (char *buf, int size)
+static int doinput (char *buf, int size)
{
int c;