From: Anna Zaks Date: Mon, 16 Apr 2012 21:51:03 +0000 (+0000) Subject: [analyzer] Fixup for a test case. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5a389f1da1d4c8e2b2b7934e5855882347e6f2f9;p=clang [analyzer] Fixup for a test case. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@154864 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Analysis/redefined_system.c b/test/Analysis/redefined_system.c index 3f585c4ef6..3c08b5e896 100644 --- a/test/Analysis/redefined_system.c +++ b/test/Analysis/redefined_system.c @@ -12,6 +12,6 @@ char strdup(); char atoi(); int foo () { - return memmove() + malloc() + system + stdin() + memccpy() + free() + strdup() + atoi(); + return memmove() + malloc() + system() + stdin() + memccpy() + free() + strdup() + atoi(); }