diff options
Diffstat (limited to 'tests/projects/other/native_module/modules/binary/bar/src')
| -rw-r--r-- | tests/projects/other/native_module/modules/binary/bar/src/add.cpp | 9 | ||||
| -rw-r--r-- | tests/projects/other/native_module/modules/binary/bar/src/sub.cpp | 10 |
2 files changed, 0 insertions, 19 deletions
diff --git a/tests/projects/other/native_module/modules/binary/bar/src/add.cpp b/tests/projects/other/native_module/modules/binary/bar/src/add.cpp deleted file mode 100644 index e19d07e12..000000000 --- a/tests/projects/other/native_module/modules/binary/bar/src/add.cpp +++ /dev/null @@ -1,9 +0,0 @@ -#include <stdio.h> -#include <stdlib.h> - -int main(int argc, char** argv) { - int a = atoi(argv[1]); - int b = atoi(argv[2]); - printf("%d", a + b); - return 0; -} diff --git a/tests/projects/other/native_module/modules/binary/bar/src/sub.cpp b/tests/projects/other/native_module/modules/binary/bar/src/sub.cpp deleted file mode 100644 index 980289d1a..000000000 --- a/tests/projects/other/native_module/modules/binary/bar/src/sub.cpp +++ /dev/null @@ -1,10 +0,0 @@ -#include <stdio.h> -#include <stdlib.h> - -int main(int argc, char** argv) { - int a = atoi(argv[1]); - int b = atoi(argv[2]); - printf("%d", a - b); - return 0; -} - |
