blob: 3c08b5e8964263fc972618eeb2b989e342651a2f [file] [log] [blame]
// 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();
}