summaryrefslogtreecommitdiff
path: root/extract_decoded_executable/test_binary.c
blob: 6e1b72fe4eba0d6faee313997a839e399b22eb6e (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <stdlib.h>
#include <stdio.h>
#include <stdint.h>
#include <stdbool.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;
}