summaryrefslogtreecommitdiff
path: root/src/lextest/lextest.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lextest/lextest.c')
-rw-r--r--src/lextest/lextest.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/lextest/lextest.c b/src/lextest/lextest.c
index 29542c89506..ccd8feb2b35 100644
--- a/src/lextest/lextest.c
+++ b/src/lextest/lextest.c
@@ -4,13 +4,15 @@
** tests for flex 2.5.3 bug
*/
-int main()
+int
+main()
{
yylex();
return 0;
}
-int yywrap()
+int
+yywrap()
{
return 1;
};