diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2015-10-28 09:22:21 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2015-10-28 09:22:21 +0000 |
commit | 257fc928266f19fe8b5667ecc30d7fc2e2adb5ea (patch) | |
tree | fef093108173da6dcbb5036990103265c78c52dc /clang-tools-extra/test/clang-tidy/modernize-redundant-void-arg.c | |
parent | f1d6029016cb8100940de9ae03aaeecccc1bdb00 (diff) | |
download | bcm5719-llvm-257fc928266f19fe8b5667ecc30d7fc2e2adb5ea.tar.gz bcm5719-llvm-257fc928266f19fe8b5667ecc30d7fc2e2adb5ea.zip |
clang-tools-extra/test/clang-tidy/modernize-redundant-void-arg.c: Use <stddef.h> provided by clang, instead of <stdio.h>.
llvm-svn: 251503
Diffstat (limited to 'clang-tools-extra/test/clang-tidy/modernize-redundant-void-arg.c')
-rw-r--r-- | clang-tools-extra/test/clang-tidy/modernize-redundant-void-arg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang-tools-extra/test/clang-tidy/modernize-redundant-void-arg.c b/clang-tools-extra/test/clang-tidy/modernize-redundant-void-arg.c index 6498a74e186..831bf229f88 100644 --- a/clang-tools-extra/test/clang-tidy/modernize-redundant-void-arg.c +++ b/clang-tools-extra/test/clang-tidy/modernize-redundant-void-arg.c @@ -1,6 +1,6 @@ // RUN: clang-tidy -checks=-*,modernize-redundant-void-arg %s -- -x c | count 0 -#include <stdio.h> +#include <stddef.h> extern int i; |