Dimitry Andric 939cb349b2 Adjust db_flush_line() definition to avoid clang 15 warning
With clang 15, the following -Werror warnings is produced:

    sys/ddb/db_lex.c:94:14: error: a function declaration without a prototype is deprecated in all versions of C [-Werror,-Wstrict-prototypes]
    db_flush_line()
                 ^
                  void

This is because db_flush_line() is declared with a (void) argument
list, but defined with an empty argument list. Make the definition match
the declaration.

MFC after:	3 days
2022-07-19 20:37:15 +02:00
..
2022-01-07 09:25:33 -07:00
2022-01-07 09:25:33 -07:00
2022-07-18 22:06:13 +00:00
2021-05-05 15:26:09 -06:00
2021-03-14 16:04:27 -07:00
2022-01-07 09:25:33 -07:00
2022-07-18 22:06:15 +00:00