Remove unnecessary include.

llvm-svn: 80275
This commit is contained in:
Eli Friedman 2009-08-27 19:02:44 +00:00
parent 972931e25d
commit ba7908796a
1 changed files with 0 additions and 2 deletions

View File

@ -1,7 +1,5 @@
// RUN: clang-cc -fsyntax-only -pedantic -verify %s
#include <stddef.h>
int test(char *C) { // nothing here should warn.
return C != ((void*)0);
return C != (void*)0;