#include <stdio.h>
#include <unistd.h>

extern long ssc (long arg0, long arg1, long arg2, long arg3, int nr);

#define SSC_EXIT 66

int main(void) {

	ssc(-1, 0, 0, 0, SSC_EXIT);

}

