summaryrefslogtreecommitdiff
path: root/Tests/Module/CheckIPOSupported-C/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/Module/CheckIPOSupported-C/main.c')
-rw-r--r--Tests/Module/CheckIPOSupported-C/main.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/Tests/Module/CheckIPOSupported-C/main.c b/Tests/Module/CheckIPOSupported-C/main.c
index 99204abce..28ab26f64 100644
--- a/Tests/Module/CheckIPOSupported-C/main.c
+++ b/Tests/Module/CheckIPOSupported-C/main.c
@@ -1,8 +1,9 @@
int foo();
+int bar();
int main()
{
- if (foo() == 0) {
+ if (foo() != bar()) {
return 1;
}
return 0;