clang-tools-extra/test/clang-tidy/modernize-redundant-void-arg.c: Use <stddef.h> provided by clang, instead of <stdio.h>.

llvm-svn: 251503
This commit is contained in:
NAKAMURA Takumi 2015-10-28 09:22:21 +00:00
parent f1d6029016
commit 257fc92826
1 changed files with 1 additions and 1 deletions

View File

@ -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;