Aaron Ballman 0e890904ea Use functions with prototypes when appropriate; NFC
A significant number of our tests in C accidentally use functions
without prototypes. This patch converts the function signatures to have
a prototype for the situations where the test is not specific to K&R C
declarations. e.g.,

  void func();

becomes

  void func(void);
2022-03-31 13:45:39 -04:00
..
2019-05-30 15:38:02 +00:00
2018-04-06 15:14:32 +00:00
2019-08-27 20:33:05 +00:00
2017-04-04 21:18:36 +00:00
2019-03-14 14:40:48 +00:00