mirror of
https://github.com/postgres/postgres.git
synced 2025-11-01 21:31:19 +03:00
14 lines
226 B
Plaintext
14 lines
226 B
Plaintext
%{
|
|
/*
|
|
This should work, but non-patched flex 2.5.3 fails because input()
|
|
doesn't return EOF or '\0'
|
|
Bruce Momjian <root@candle.pha.pa.us>
|
|
*/
|
|
%}
|
|
%%
|
|
. {
|
|
int ch;
|
|
while ((ch = input()) != EOF && ch != '\0')
|
|
;
|
|
}
|