aboutsummaryrefslogtreecommitdiffstats
path: root/bfd/test
diff options
context:
space:
mode:
authorbloodstalker <thabogre@gmail.com>2018-02-01 09:46:07 +0000
committerbloodstalker <thabogre@gmail.com>2018-02-01 09:46:07 +0000
commit8f0f9ac6910dc5a2402bfe6eceeefda89f0bd592 (patch)
treec4e8916788b9626b3c77502ac5410591ef8bf6dc /bfd/test
parentupdate (diff)
downloadmutator-8f0f9ac6910dc5a2402bfe6eceeefda89f0bd592.tar.gz
mutator-8f0f9ac6910dc5a2402bfe6eceeefda89f0bd592.zip
update [ci skip]
Diffstat (limited to 'bfd/test')
-rw-r--r--bfd/test/test.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/bfd/test/test.c b/bfd/test/test.c
index 1a9461a..a62769a 100644
--- a/bfd/test/test.c
+++ b/bfd/test/test.c
@@ -11,6 +11,8 @@ int sub2(int a, int b) {return a - b;}
double adddouble(double a, double b) {return a+b;}
double subdouble(double a, double b) {return a-b;}
double triple(double a, double b, double c) {return a+b+c;}
+int quad(int a, int b, int c, int d) {return add2(a,b) + add2(c,d);}
+const char* passthrough(const char* a) {return a;}
int myvar1 = 1;
int myvar2 = 2;