diff options
Diffstat (limited to 'tests/projects/other/native_module/modules/binary/src/main.cpp')
| -rw-r--r-- | tests/projects/other/native_module/modules/binary/src/main.cpp | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/tests/projects/other/native_module/modules/binary/src/main.cpp b/tests/projects/other/native_module/modules/binary/src/main.cpp index 7c435d251..740142372 100644 --- a/tests/projects/other/native_module/modules/binary/src/main.cpp +++ b/tests/projects/other/native_module/modules/binary/src/main.cpp @@ -1,9 +1,6 @@ -#include <iostream> +#include <stdio.h> -using namespace std; - -int main(int argc, char** argv) -{ - cout << "hello world!" << endl; +int main(int argc, char** argv) { + printf("%s %s\n", argv[1], argv[2]); return 0; } |
