diff options
Diffstat (limited to 'extract_decoded_executable/test_binary.c')
| -rw-r--r-- | extract_decoded_executable/test_binary.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/extract_decoded_executable/test_binary.c b/extract_decoded_executable/test_binary.c new file mode 100644 index 0000000..0ac5c4c --- /dev/null +++ b/extract_decoded_executable/test_binary.c @@ -0,0 +1,10 @@ +#include <stdlib.h> +#include <stdio.h> +#include <errno.h> +#include <unistd.h> +#include <string.h> + +int main( int argc, char *const *args ){ + fputs( "This is simple output from extracted test program\n", stdout ); + return 0; +} |
