diff options
author | Bruce Momjian | 1997-09-07 05:04:48 +0000 |
---|---|---|
committer | Bruce Momjian | 1997-09-07 05:04:48 +0000 |
commit | 1ccd423235a48739d6f7a4d7889705b5f9ecc69b (patch) | |
tree | 8001c4e839dfad8f29ceda7f8c5f5dbb8759b564 /src/lextest/lextest.c | |
parent | 8fecd4febf8357f3cc20383ed29ced484877d5ac (diff) |
Massive commit to run PGINDENT on all *.c and *.h files.
Diffstat (limited to 'src/lextest/lextest.c')
-rw-r--r-- | src/lextest/lextest.c | 6 |
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; }; |