diff options
author | Aaron Ballman <aaron@aaronballman.com> | 2022-02-03 16:39:21 -0500 |
---|---|---|
committer | Aaron Ballman <aaron@aaronballman.com> | 2022-02-03 16:42:27 -0500 |
commit | e765e0bc8ed06ebb186a9905227273517f0b7240 (patch) | |
tree | 664d59a817113df1787d55045a5b0545ca126487 /llvm/lib/Support/VirtualFileSystem.cpp | |
parent | 4db89e23190d1d1590d88df08056d327e651c94c (diff) | |
download | llvm-e765e0bc8ed06ebb186a9905227273517f0b7240.zip llvm-e765e0bc8ed06ebb186a9905227273517f0b7240.tar.gz llvm-e765e0bc8ed06ebb186a9905227273517f0b7240.tar.bz2 |
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);
This is the first batch of tests being updated (there are a significant
number of other tests left to be updated).
Diffstat (limited to 'llvm/lib/Support/VirtualFileSystem.cpp')
0 files changed, 0 insertions, 0 deletions