diff options
author | bloodstalker <thabogre@gmail.com> | 2018-01-22 22:22:39 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2018-01-22 22:22:39 +0000 |
commit | 0e63c73b593b5792fb4f96e8fb1255181b523bd2 (patch) | |
tree | 312729a7bc76b01d57c1114c8933730fcc1e7ec9 /bfd/test | |
parent | fixed some issues with the way bruiser handled integers, added some initial t... (diff) | |
download | mutator-0e63c73b593b5792fb4f96e8fb1255181b523bd2.tar.gz mutator-0e63c73b593b5792fb4f96e8fb1255181b523bd2.zip |
some tests for the ffi funcitonality on bruiuser
Diffstat (limited to '')
-rw-r--r-- | bfd/test/test.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bfd/test/test.c b/bfd/test/test.c index fa9f74d..1a9461a 100644 --- a/bfd/test/test.c +++ b/bfd/test/test.c @@ -8,6 +8,9 @@ int myfunc5(void) {return 5;} int myfunc6(void) {return 6;} int add2(int a, int b) {return a + b;} 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 myvar1 = 1; int myvar2 = 2; |