Files
clang-p2996/clang/test/Analysis/redefined_system.c
Anna Zaks fa76ff0e53 [analyzer] Fixup for a test case.
llvm-svn: 154864
2012-04-16 21:51:03 +00:00

18 lines
414 B
C

// RUN: %clang_cc1 -analyze -analyzer-checker=unix,core,experimental.security.taint -w -verify %s
// Make sure we don't crash when someone redefines a system function we reason about.
char memmove ();
char malloc();
char system();
char stdin();
char memccpy();
char free();
char strdup();
char atoi();
int foo () {
return memmove() + malloc() + system() + stdin() + memccpy() + free() + strdup() + atoi();
}