summaryrefslogtreecommitdiffstats
path: root/test/Analysis/redefined_system.c
blob: 3f585c4ef689e5c709542a87c2160b66335e2a5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// 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();

}