ST
Size: a a a
SZ
SZ
E
#include <unistd.h>
int len(char *str){int rc = 0; while(str[rc]){rc++;} return rc;}
void _start(char *argv[]){int c = 0; while(c<4){if(!argv[c++]) _exit(1);} c--; if (write(1, argv[c], len(argv[c])) < 0){write(2, "error\n", 6);} _exit(0);}
MK
A
movl $ch,%ecx
A
A
A